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: ChangeLog acovea-5.1.1.ebuild
Date: Mon, 06 Sep 2010 23:22:07
Message-Id: 20100906232202.EC95220051@flycatcher.gentoo.org
1 ssuominen 10/09/06 23:22:02
2
3 Modified: ChangeLog acovea-5.1.1.ebuild
4 Log:
5 Fix building with recent glibc wrt #336260 by Diego E. Pettenò.
6
7 (Portage version: 2.2_rc75/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 app-benchmarks/acovea/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 28 Jun 2009 22:52:34 -0000 1.18
23 +++ ChangeLog 6 Sep 2010 23:22:02 -0000 1.19
24 @@ -1,6 +1,10 @@
25 # ChangeLog for app-benchmarks/acovea
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/ChangeLog,v 1.18 2009/06/28 22:52:34 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/ChangeLog,v 1.19 2010/09/06 23:22:02 ssuominen Exp $
30 +
31 + 06 Sep 2010; Samuli Suominen <ssuominen@g.o> acovea-5.1.1.ebuild,
32 + +files/acovea-5.1.1-glibc-212.patch:
33 + Fix building with recent glibc wrt #336260 by Diego E. Pettenò.
34
35 28 Jun 2009; Patrick Lauer <patrick@g.o> acovea-5.1.1.ebuild,
36 +files/acovea-5.1.1-gcc44.patch:
37
38
39
40 1.9 app-benchmarks/acovea/acovea-5.1.1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild?rev=1.9&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild?rev=1.9&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild?r1=1.8&r2=1.9
45
46 Index: acovea-5.1.1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild,v
49 retrieving revision 1.8
50 retrieving revision 1.9
51 diff -u -r1.8 -r1.9
52 --- acovea-5.1.1.ebuild 28 Jun 2009 22:52:34 -0000 1.8
53 +++ acovea-5.1.1.ebuild 6 Sep 2010 23:22:02 -0000 1.9
54 @@ -1,12 +1,12 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild,v 1.8 2009/06/28 22:52:34 patrick Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/acovea/acovea-5.1.1.ebuild,v 1.9 2010/09/06 23:22:02 ssuominen Exp $
60
61 -EAPI="2"
62 +EAPI=2
63
64 WANT_AUTOMAKE=1.9
65
66 -inherit autotools
67 +inherit autotools eutils
68
69 DESCRIPTION="Analysis of Compiler Options via Evolutionary Algorithm"
70 HOMEPAGE="http://www.coyotegulch.com/products/acovea/"
71 @@ -25,16 +25,17 @@
72 S=${WORKDIR}/lib${P}
73
74 src_prepare() {
75 - epatch "${FILESDIR}"/${P}-asneeded.patch
76 - epatch "${FILESDIR}"/${P}-free-fix.patch
77 - epatch "${FILESDIR}"/${P}-gcc44.patch
78 - if has_version ">=dev-libs/libevocosm-3.3.0" ; then
79 + epatch "${FILESDIR}"/${P}-asneeded.patch \
80 + "${FILESDIR}"/${P}-free-fix.patch \
81 + "${FILESDIR}"/${P}-gcc44.patch \
82 + "${FILESDIR}"/${P}-glibc-212.patch
83 + if has_version ">=dev-libs/libevocosm-3.3.0"; then
84 epatch ${FILESDIR}"/${P}-libevocosm.patch"
85 fi
86 eautomake
87 }
88
89 src_install() {
90 - make DESTDIR="${D}" install
91 + emake DESTDIR="${D}" install || die
92 dodoc ChangeLog NEWS README
93 }