diff options
author | David Seifert <soap@gentoo.org> | 2022-06-19 20:04:27 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-06-19 20:04:27 +0200 |
commit | b4cf3cc2a34d50ad16095b25b4e7de1749e169c6 (patch) | |
tree | 396e5abef1d207d007697bf1435d06b10abb9244 /sci-biology/libgtextutils | |
parent | app-containers/distrobuilder: drop 1.1, 1.2 (diff) | |
download | gentoo-b4cf3cc2a34d50ad16095b25b4e7de1749e169c6.tar.gz gentoo-b4cf3cc2a34d50ad16095b25b4e7de1749e169c6.tar.bz2 gentoo-b4cf3cc2a34d50ad16095b25b4e7de1749e169c6.zip |
sci-biology/libgtextutils: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/libgtextutils')
-rw-r--r-- | sci-biology/libgtextutils/libgtextutils-0.6.1-r1.ebuild (renamed from sci-biology/libgtextutils/libgtextutils-0.6.1.ebuild) | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/sci-biology/libgtextutils/libgtextutils-0.6.1.ebuild b/sci-biology/libgtextutils/libgtextutils-0.6.1-r1.ebuild index 8f0455e5322c..2ffb1c3338b8 100644 --- a/sci-biology/libgtextutils/libgtextutils-0.6.1.ebuild +++ b/sci-biology/libgtextutils/libgtextutils-0.6.1-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools @@ -12,7 +12,6 @@ SRC_URI="http://hannonlab.cshl.edu/fastx_toolkit/${P}.tar.bz2" LICENSE="AGPL-3" SLOT="0/0" KEYWORDS="~amd64 ~x86" -IUSE="" PATCHES=( "${FILESDIR}"/${P}-fix-build-system.patch @@ -24,13 +23,8 @@ src_prepare() { eautoreconf } -src_configure() { - econf --disable-static -} - src_install() { default - # package installs .pc files - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die } |