Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/acovea/
Date: Sat, 17 Aug 2019 19:36:32
Message-Id: 1566070533.8fc0a9587f30dcabc50b8115eefdfcbfaca9f013.bman@gentoo
1 commit: 8fc0a9587f30dcabc50b8115eefdfcbfaca9f013
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 17 19:35:33 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 17 19:35:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fc0a958
7
8 app-benchmarks/acovea: drop old relying on vulnerable automake
9
10 * EAPI=5
11 * Relies on vulnerable sys-devel/automake:1.9
12
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 app-benchmarks/acovea/acovea-5.1.1.ebuild | 47 -------------------------------
16 1 file changed, 47 deletions(-)
17
18 diff --git a/app-benchmarks/acovea/acovea-5.1.1.ebuild b/app-benchmarks/acovea/acovea-5.1.1.ebuild
19 deleted file mode 100644
20 index 63623ba07e2..00000000000
21 --- a/app-benchmarks/acovea/acovea-5.1.1.ebuild
22 +++ /dev/null
23 @@ -1,47 +0,0 @@
24 -# Copyright 1999-2014 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=5
28 -WANT_AUTOMAKE=1.9
29 -inherit autotools eutils
30 -
31 -DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm"
32 -HOMEPAGE="http://www.coyotegulch.com/products/acovea/"
33 -SRC_URI="http://www.coyotegulch.com/distfiles/lib${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 ppc x86"
38 -IUSE="static-libs"
39 -
40 -RDEPEND=">=dev-libs/libcoyotl-3.1.0
41 - >=dev-libs/libevocosm-3.1.0
42 - dev-libs/expat"
43 -DEPEND="${RDEPEND}"
44 -
45 -S=${WORKDIR}/lib${P}
46 -
47 -src_prepare() {
48 - epatch "${FILESDIR}"/${P}-asneeded.patch \
49 - "${FILESDIR}"/${P}-free-fix.patch \
50 - "${FILESDIR}"/${P}-gcc44.patch \
51 - "${FILESDIR}"/${P}-glibc-212.patch
52 -
53 - if has_version ">=dev-libs/libevocosm-3.3.0"; then
54 - epatch "${FILESDIR}"/${P}-libevocosm.patch
55 - fi
56 -
57 - eautomake
58 -}
59 -
60 -src_configure() {
61 - econf \
62 - --disable-dependency-tracking \
63 - $(use_enable static-libs static)
64 -}
65 -
66 -src_install() {
67 - emake DESTDIR="${D}" install || die
68 - dodoc ChangeLog NEWS README
69 - find "${D}" -name '*.la' -exec rm -f '{}' +
70 -}