summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2019-08-17 15:35:33 -0400
committerAaron Bauman <bman@gentoo.org>2019-08-17 15:35:33 -0400
commit8fc0a9587f30dcabc50b8115eefdfcbfaca9f013 (patch)
tree698a8775bae8a52434091d8a94023ff1b6ce24c1 /app-benchmarks
parentRevert "profiles/package.mask: mask dev-python/restkit" (diff)
downloadgentoo-8fc0a9587f30dcabc50b8115eefdfcbfaca9f013.tar.gz
gentoo-8fc0a9587f30dcabc50b8115eefdfcbfaca9f013.tar.bz2
gentoo-8fc0a9587f30dcabc50b8115eefdfcbfaca9f013.zip
app-benchmarks/acovea: drop old relying on vulnerable automake
* EAPI=5 * Relies on vulnerable sys-devel/automake:1.9 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/acovea/acovea-5.1.1.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/app-benchmarks/acovea/acovea-5.1.1.ebuild b/app-benchmarks/acovea/acovea-5.1.1.ebuild
deleted file mode 100644
index 63623ba07e28..000000000000
--- a/app-benchmarks/acovea/acovea-5.1.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-WANT_AUTOMAKE=1.9
-inherit autotools eutils
-
-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"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="static-libs"
-
-RDEPEND=">=dev-libs/libcoyotl-3.1.0
- >=dev-libs/libevocosm-3.1.0
- dev-libs/expat"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/lib${P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-asneeded.patch \
- "${FILESDIR}"/${P}-free-fix.patch \
- "${FILESDIR}"/${P}-gcc44.patch \
- "${FILESDIR}"/${P}-glibc-212.patch
-
- if has_version ">=dev-libs/libevocosm-3.3.0"; then
- epatch "${FILESDIR}"/${P}-libevocosm.patch
- fi
-
- eautomake
-}
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ChangeLog NEWS README
- find "${D}" -name '*.la' -exec rm -f '{}' +
-}