diff options
author | David Seifert <soap@gentoo.org> | 2019-06-16 18:10:02 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-06-16 18:10:02 +0200 |
commit | 8ca1cd97478c4ccb39974e5f6dd16afa4d95bde4 (patch) | |
tree | eda9f8928cb91eaa55e5080b41a3dc6b88c84f6b /sys-devel/ucpp | |
parent | sys-devel/ucpp: Remove live ebuild (diff) | |
download | gentoo-8ca1cd97478c4ccb39974e5f6dd16afa4d95bde4.tar.gz gentoo-8ca1cd97478c4ccb39974e5f6dd16afa4d95bde4.tar.bz2 gentoo-8ca1cd97478c4ccb39974e5f6dd16afa4d95bde4.zip |
sys-devel/ucpp: Port to EAPI 7
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-devel/ucpp')
-rw-r--r-- | sys-devel/ucpp/ucpp-1.3.4.ebuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys-devel/ucpp/ucpp-1.3.4.ebuild b/sys-devel/ucpp/ucpp-1.3.4.ebuild index a665fce81592..54bf56e743f2 100644 --- a/sys-devel/ucpp/ucpp-1.3.4.ebuild +++ b/sys-devel/ucpp/ucpp-1.3.4.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit eutils +EAPI=7 DESCRIPTION="A quick and light preprocessor, but anyway fully compliant to C99" HOMEPAGE="https://code.google.com/p/ucpp/" @@ -23,5 +21,6 @@ src_configure() { src_install() { default - prune_libtool_files --all + # package provides .pc files + find "${D}" -name '*.la' -delete || die } |