Gentoo Archives: gentoo-commits

From: "Michele Noberasco (s4t4n)" <s4t4n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmail: wmail-2.0-r3.ebuild ChangeLog
Date: Mon, 24 Nov 2008 16:06:21
Message-Id: E1L4dx4-0001Vc-TM@stork.gentoo.org
1 s4t4n 08/11/24 16:06:18
2
3 Modified: wmail-2.0-r3.ebuild ChangeLog
4 Log:
5 Fixed LDFLAGS ordering, see bug #248620.
6 (Portage version: 2.1.4.5)
7
8 Revision Changes Path
9 1.6 x11-plugins/wmail/wmail-2.0-r3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild?r1=1.5&r2=1.6
14
15 Index: wmail-2.0-r3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- wmail-2.0-r3.ebuild 1 Dec 2007 12:50:13 -0000 1.5
22 +++ wmail-2.0-r3.ebuild 24 Nov 2008 16:06:18 -0000 1.6
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild,v 1.5 2007/12/01 12:50:13 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild,v 1.6 2008/11/24 16:06:18 s4t4n Exp $
29
30 inherit eutils
31
32 @@ -13,7 +13,10 @@
33 KEYWORDS="amd64 ppc sparc x86"
34 IUSE=""
35
36 -DEPEND="x11-libs/libdockapp"
37 +RDEPEND="x11-libs/libdockapp"
38 +
39 +DEPEND="${RDEPEND}
40 + >=sys-apps/sed-4.1.4-r1"
41
42 src_unpack() {
43 unpack ${A}
44 @@ -23,6 +26,9 @@
45 # make from parsing in maildir format faster, thanks
46 # to Stanislav Kuchar
47 epatch "${FILESDIR}"/${P}.maildir-parse-from.patch
48 +
49 + # fix LDFLAGS ordering, see bug #248620
50 + sed -i 's/$(LIBS) -o $@ $^/-o $@ $^ $(LIBS)/' "${S}/src/Makefile.in"
51 }
52
53 src_compile() {
54
55
56
57 1.20 x11-plugins/wmail/ChangeLog
58
59 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmail/ChangeLog?rev=1.20&view=markup
60 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmail/ChangeLog?rev=1.20&content-type=text/plain
61 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmail/ChangeLog?r1=1.19&r2=1.20
62
63 Index: ChangeLog
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmail/ChangeLog,v
66 retrieving revision 1.19
67 retrieving revision 1.20
68 diff -u -r1.19 -r1.20
69 --- ChangeLog 1 Dec 2007 12:50:13 -0000 1.19
70 +++ ChangeLog 24 Nov 2008 16:06:18 -0000 1.20
71 @@ -1,6 +1,9 @@
72 # ChangeLog for x11-plugins/wmail
73 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
74 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/ChangeLog,v 1.19 2007/12/01 12:50:13 nixnut Exp $
75 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
76 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/ChangeLog,v 1.20 2008/11/24 16:06:18 s4t4n Exp $
77 +
78 + 24 Nov 2008; Michele NOberasco <s4t4n@g.o> wmail-2.0-r3.ebuild:
79 + Fixed LDFLAGS ordering, see bug #248620.
80
81 01 Dec 2007; nixnut <nixnut@g.o> wmail-2.0-r3.ebuild:
82 Stable on ppc wrt bug 200650