Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/acovea/
Date: Wed, 10 Feb 2021 22:04:01
Message-Id: 1612994636.acb0f1db4d4232478b98825c44cf81134d0603c8.sam@gentoo
1 commit: acb0f1db4d4232478b98825c44cf81134d0603c8
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 10 22:02:42 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 10 22:03:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb0f1db
7
8 app-benchmarks/acovea: port to EAPI 7
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-benchmarks/acovea/acovea-5.1.1-r2.ebuild | 12 +++++-------
14 1 file changed, 5 insertions(+), 7 deletions(-)
15
16 diff --git a/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild b/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild
17 index 6d3ae2f60f1..d00773301c0 100644
18 --- a/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild
19 +++ b/app-benchmarks/acovea/acovea-5.1.1-r2.ebuild
20 @@ -1,18 +1,18 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 inherit autotools
29
30 DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm"
31 HOMEPAGE="http://www.coyotegulch.com/products/acovea/"
32 SRC_URI="http://www.coyotegulch.com/distfiles/lib${P}.tar.gz"
33 +S="${WORKDIR}/lib${P}"
34
35 LICENSE="GPL-2"
36 SLOT="0"
37 KEYWORDS="amd64 ppc x86"
38 -IUSE="static-libs"
39
40 RDEPEND="
41 >=dev-libs/libcoyotl-3.1.0:=
42 @@ -20,8 +20,6 @@ RDEPEND="
43 dev-libs/expat:="
44 DEPEND="${RDEPEND}"
45
46 -S=${WORKDIR}/lib${P}
47 -
48 PATCHES=(
49 "${FILESDIR}"/${P}-asneeded.patch
50 "${FILESDIR}"/${P}-free-fix.patch
51 @@ -37,11 +35,11 @@ src_prepare() {
52 }
53
54 src_configure() {
55 - econf $(use_enable static-libs static)
56 + econf --disable-static
57 }
58
59 src_install() {
60 default
61
62 - find "${D}" -name '*.la' -delete || die
63 + find "${ED}" -name '*.la' -delete || die
64 }