Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnustep-apps/simpleagenda: ChangeLog simpleagenda-0.41.ebuild simpleagenda-0.38.ebuild simpleagenda-0.40.ebuild simpleagenda-0.39.ebuild
Date: Thu, 06 May 2010 08:43:11
Message-Id: 20100506084307.E19A72950A@corvid.gentoo.org
1 voyageur 10/05/06 08:43:07
2
3 Modified: ChangeLog simpleagenda-0.41.ebuild
4 Removed: simpleagenda-0.38.ebuild simpleagenda-0.40.ebuild
5 simpleagenda-0.39.ebuild
6 Log:
7 Fix compilation with --as-needed, bug #318657
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.15 gnustep-apps/simpleagenda/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/simpleagenda/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/simpleagenda/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/simpleagenda/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/simpleagenda/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 15 Mar 2010 16:59:46 -0000 1.14
24 +++ ChangeLog 6 May 2010 08:43:07 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnustep-apps/simpleagenda
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/simpleagenda/ChangeLog,v 1.14 2010/03/15 16:59:46 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/simpleagenda/ChangeLog,v 1.15 2010/05/06 08:43:07 voyageur Exp $
30 +
31 + 06 May 2010; Bernard Cafarelli <voyageur@g.o>
32 + -simpleagenda-0.38.ebuild, -simpleagenda-0.39.ebuild,
33 + -simpleagenda-0.40.ebuild, simpleagenda-0.41.ebuild:
34 + Fix compilation with --as-needed, bug #318657
35
36 *simpleagenda-0.41 (15 Mar 2010)
37
38
39
40
41 1.2 gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild?rev=1.2&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild?rev=1.2&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild?r1=1.1&r2=1.2
46
47 Index: simpleagenda-0.41.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild,v
50 retrieving revision 1.1
51 retrieving revision 1.2
52 diff -u -r1.1 -r1.2
53 --- simpleagenda-0.41.ebuild 15 Mar 2010 16:59:46 -0000 1.1
54 +++ simpleagenda-0.41.ebuild 6 May 2010 08:43:07 -0000 1.2
55 @@ -1,6 +1,6 @@
56 # Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild,v 1.1 2010/03/15 16:59:46 voyageur Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/simpleagenda/simpleagenda-0.41.ebuild,v 1.2 2010/05/06 08:43:07 voyageur Exp $
60
61 EAPI=2
62 inherit gnustep-2
63 @@ -20,3 +20,8 @@
64 RDEPEND="${DEPEND}"
65
66 S=${WORKDIR}/${MY_PN}-${PV}
67 +
68 +src_prepare() {
69 + # Correct link command for --as-needed
70 + sed -i -e "s/ADDITIONAL_LDFLAGS/ADDITIONAL_TOOL_LIBS/" GNUmakefile.preamble || die "sed failed"
71 +}