diff options
author | David Seifert <soap@gentoo.org> | 2022-07-29 10:24:20 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-29 10:24:20 +0200 |
commit | d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c (patch) | |
tree | 59c16c348abd586c64986a522aa7fae90c6803d2 /app-admin | |
parent | app-admin/chrpath: drop 0.13-r2 (diff) | |
download | gentoo-d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c.tar.gz gentoo-d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c.tar.bz2 gentoo-d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c.zip |
app-admin/chrpath: update EAPI 7 -> 8
* remove USE="static-libs" since there is no
rationale given for keeping it.
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/chrpath/chrpath-0.16-r1.ebuild (renamed from app-admin/chrpath/chrpath-0.16.ebuild) | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/app-admin/chrpath/chrpath-0.16.ebuild b/app-admin/chrpath/chrpath-0.16-r1.ebuild index 6913b7a27fb8..287cacc4a7d6 100644 --- a/app-admin/chrpath/chrpath-0.16.ebuild +++ b/app-admin/chrpath/chrpath-0.16-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -12,7 +12,6 @@ SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="static-libs" PATCHES=( "${FILESDIR}"/${P}-multilib.patch @@ -29,13 +28,7 @@ src_prepare() { eautoreconf } -src_configure() { - econf $(use_enable static-libs static) -} - src_install() { default - if ! use static-libs; then - find "${D}" -name "*.la" -delete || die - fi + find "${ED}" -name '*.la' -delete || die } |