You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-benchmarks/acovea/acovea-5.1.1-r1.ebuild

49 lines
1.1 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=2
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 \
"${FILESDIR}"/${P}-underlinking.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 '{}' +
}