Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/acovea: acovea-5.1.1.ebuild
Date: Mon, 06 Sep 2010 23:28:26
Message-Id: 20100906232823.93C5D20054@flycatcher.gentoo.org
1 ssuominen 10/09/06 23:28:23
2
3 Modified: acovea-5.1.1.ebuild
4 Log:
5 clean cruft
6
7 (Portage version: 2.2_rc75/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 app-benchmarks/acovea/acovea-5.1.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild?r1=1.9&r2=1.10
15
16 Index: acovea-5.1.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- acovea-5.1.1.ebuild 6 Sep 2010 23:22:02 -0000 1.9
23 +++ acovea-5.1.1.ebuild 6 Sep 2010 23:28:23 -0000 1.10
24 @@ -1,11 +1,9 @@
25 # Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild,v 1.9 2010/09/06 23:22:02 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild,v 1.10 2010/09/06 23:28:23 ssuominen Exp $
29
30 EAPI=2
31 -
32 WANT_AUTOMAKE=1.9
33 -
34 inherit autotools eutils
35
36 DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm"
37 @@ -15,7 +13,7 @@
38 LICENSE="GPL-2"
39 SLOT="0"
40 KEYWORDS="amd64 ppc x86"
41 -IUSE=""
42 +IUSE="static-libs"
43
44 RDEPEND=">=dev-libs/libcoyotl-3.1.0
45 >=dev-libs/libevocosm-3.1.0
46 @@ -29,13 +27,22 @@
47 "${FILESDIR}"/${P}-free-fix.patch \
48 "${FILESDIR}"/${P}-gcc44.patch \
49 "${FILESDIR}"/${P}-glibc-212.patch
50 +
51 if has_version ">=dev-libs/libevocosm-3.3.0"; then
52 epatch ${FILESDIR}"/${P}-libevocosm.patch"
53 fi
54 +
55 eautomake
56 }
57
58 +src_configure() {
59 + econf \
60 + --disable-dependency-tracking \
61 + $(use_enable static-libs static)
62 +}
63 +
64 src_install() {
65 emake DESTDIR="${D}" install || die
66 dodoc ChangeLog NEWS README
67 + find "${D}" -name '*.la' -exec rm -f '{}' +
68 }