diff options
author | Sam James <sam@gentoo.org> | 2021-02-10 22:02:42 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-10 22:03:56 +0000 |
commit | acb0f1db4d4232478b98825c44cf81134d0603c8 (patch) | |
tree | 57af03e49e04c0664c817b7d9f3fb8241396f974 /app-benchmarks | |
parent | dev-libs/libevocosm: port to EAPI 7 (diff) | |
download | gentoo-acb0f1db4d4232478b98825c44cf81134d0603c8.tar.gz gentoo-acb0f1db4d4232478b98825c44cf81134d0603c8.tar.bz2 gentoo-acb0f1db4d4232478b98825c44cf81134d0603c8.zip |
app-benchmarks/acovea: port to EAPI 7
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/acovea/acovea-5.1.1-r2.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild b/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild index 6d3ae2f60f1c..d00773301c07 100644 --- a/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild +++ b/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild @@ -1,18 +1,18 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm" HOMEPAGE="http://www.coyotegulch.com/products/acovea/" SRC_URI="http://www.coyotegulch.com/distfiles/lib${P}.tar.gz" +S="${WORKDIR}/lib${P}" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="static-libs" RDEPEND=" >=dev-libs/libcoyotl-3.1.0:= @@ -20,8 +20,6 @@ RDEPEND=" dev-libs/expat:=" DEPEND="${RDEPEND}" -S=${WORKDIR}/lib${P} - PATCHES=( "${FILESDIR}"/${P}-asneeded.patch "${FILESDIR}"/${P}-free-fix.patch @@ -37,11 +35,11 @@ src_prepare() { } src_configure() { - econf $(use_enable static-libs static) + econf --disable-static } src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die } |