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/wmget: wmget-0.6.0.ebuild ChangeLog
Date: Tue, 02 Dec 2008 10:42:39
Message-Id: E1L7SiB-0003pr-6H@stork.gentoo.org
1 s4t4n 08/12/02 10:42:35
2
3 Modified: wmget-0.6.0.ebuild ChangeLog
4 Log:
5 Fix LDFLAGS ordering. Fixes bug #248641.
6 (Portage version: 2.1.4.5)
7
8 Revision Changes Path
9 1.9 x11-plugins/wmget/wmget-0.6.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild?r1=1.8&r2=1.9
14
15 Index: wmget-0.6.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- wmget-0.6.0.ebuild 16 Jan 2008 01:17:43 -0000 1.8
22 +++ wmget-0.6.0.ebuild 2 Dec 2008 10:42:35 -0000 1.9
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild,v 1.8 2008/01/16 01:17:43 drac Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild,v 1.9 2008/12/02 10:42:35 s4t4n Exp $
28
29 inherit toolchain-funcs
30
31 @@ -26,6 +26,9 @@
32 src_unpack() {
33 unpack ${A}
34 sed -i -e "s:ar rc:$(tc-getAR) rc:" "${S}"/dockapp/Makefile
35 +
36 + #Fix LDFLAGS ordering for bug #248641
37 + sed -i 's/$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(DALIB) -o $@/$(CC) $(CFLAGS) $(OBJS) $(DALIB) -o $@ $(LDFLAGS)/' "${S}"/Makefile
38 }
39
40 src_compile() {
41
42
43
44 1.16 x11-plugins/wmget/ChangeLog
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmget/ChangeLog?rev=1.16&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmget/ChangeLog?rev=1.16&content-type=text/plain
48 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmget/ChangeLog?r1=1.15&r2=1.16
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmget/ChangeLog,v
53 retrieving revision 1.15
54 retrieving revision 1.16
55 diff -u -r1.15 -r1.16
56 --- ChangeLog 16 Jan 2008 01:17:43 -0000 1.15
57 +++ ChangeLog 2 Dec 2008 10:42:35 -0000 1.16
58 @@ -1,6 +1,9 @@
59 # ChangeLog for x11-plugins/wmget
60 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
61 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/ChangeLog,v 1.15 2008/01/16 01:17:43 drac Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/ChangeLog,v 1.16 2008/12/02 10:42:35 s4t4n Exp $
63 +
64 + 02 Dec 2008; Michele Noberasco <s4t4n@g.o> wmget-0.6.0.ebuild:
65 + Fix LDFLAGS ordering. Fixes bug #248641.
66
67 16 Jan 2008; Samuli Suominen <drac@g.o> wmget-0.6.0.ebuild:
68 Use correct AR and CC targets and remove X11R6 references from ebuild.