Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/balsa: ChangeLog balsa-2.4.7.ebuild
Date: Tue, 29 Jun 2010 16:05:10
Message-Id: 20100629160445.568262C5F4@corvid.gentoo.org
1 ssuominen 10/06/29 16:04:45
2
3 Modified: ChangeLog balsa-2.4.7.ebuild
4 Log:
5 Fix building with -Wl,--as-needed wrt #320349 by Kacper Kowalik.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.102 mail-client/balsa/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/balsa/ChangeLog?rev=1.102&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/balsa/ChangeLog?rev=1.102&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/balsa/ChangeLog?r1=1.101&r2=1.102
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v
18 retrieving revision 1.101
19 retrieving revision 1.102
20 diff -u -r1.101 -r1.102
21 --- ChangeLog 29 Jun 2010 02:02:33 -0000 1.101
22 +++ ChangeLog 29 Jun 2010 16:04:45 -0000 1.102
23 @@ -1,6 +1,10 @@
24 # ChangeLog for mail-client/balsa
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.101 2010/06/29 02:02:33 nirbheek Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.102 2010/06/29 16:04:45 ssuominen Exp $
28 +
29 + 29 Jun 2010; Samuli Suominen <ssuominen@g.o> balsa-2.4.7.ebuild,
30 + +files/balsa-2.4.7-asneeded.patch:
31 + Fix building with -Wl,--as-needed wrt #320349 by Kacper Kowalik.
32
33 29 Jun 2010; Nirbheek Chauhan <nirbheek@g.o> -balsa-2.4.2.ebuild:
34 Remove old version, also fails with --as-needed in LDFLAGS
35
36
37
38 1.7 mail-client/balsa/balsa-2.4.7.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/balsa/balsa-2.4.7.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/balsa/balsa-2.4.7.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/balsa/balsa-2.4.7.ebuild?r1=1.6&r2=1.7
43
44 Index: balsa-2.4.7.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.4.7.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- balsa-2.4.7.ebuild 26 Jun 2010 16:51:15 -0000 1.6
51 +++ balsa-2.4.7.ebuild 29 Jun 2010 16:04:45 -0000 1.7
52 @@ -1,11 +1,11 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.4.7.ebuild,v 1.6 2010/06/26 16:51:15 armin76 Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.4.7.ebuild,v 1.7 2010/06/29 16:04:45 ssuominen Exp $
57
58 EAPI="2"
59 GCONF_DEBUG="no"
60
61 -inherit eutils gnome2
62 +inherit autotools eutils gnome2
63
64 DESCRIPTION="Email client for GNOME"
65 HOMEPAGE="http://pawsa.fedorapeople.org/balsa/"
66 @@ -55,6 +55,7 @@
67 sys-devel/gettext
68 >=app-text/scrollkeeper-0.1.4
69 app-text/gnome-doc-utils
70 + dev-util/gtk-doc-am
71 doc? ( dev-util/gtk-doc )"
72
73 DOCS="AUTHORS ChangeLog HACKING NEWS README TODO docs/*"
74 @@ -104,4 +105,10 @@
75
76 # Fix build failure with USE="-libnotify", bug #314123
77 epatch "${FILESDIR}/${P}-build-failure-notify.patch"
78 +
79 + epatch "${FILESDIR}"/${P}-asneeded.patch
80 +
81 + mkdir m4
82 + intltoolize --force --copy --automake || die
83 + eautoreconf
84 }