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: ChangeLog wmget-0.6.0.ebuild
Date: Tue, 31 Aug 2010 10:20:33
Message-Id: 20100831102023.CE2A720051@flycatcher.gentoo.org
1 s4t4n 10/08/31 10:20:23
2
3 Modified: ChangeLog wmget-0.6.0.ebuild
4 Log:
5 Honour LDFLAGS. Fixes bug #334741.
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.17 x11-plugins/wmget/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmget/ChangeLog?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmget/ChangeLog?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmget/ChangeLog?r1=1.16&r2=1.17
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmget/ChangeLog,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- ChangeLog 2 Dec 2008 10:42:35 -0000 1.16
22 +++ ChangeLog 31 Aug 2010 10:20:23 -0000 1.17
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-plugins/wmget
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/ChangeLog,v 1.16 2008/12/02 10:42:35 s4t4n Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/ChangeLog,v 1.17 2010/08/31 10:20:23 s4t4n Exp $
29 +
30 + 31 Aug 2010; Michele Noberasco <s4t4n@g.o> wmget-0.6.0.ebuild:
31 + Honour LDFLAGS. Fixes bug #334741.
32
33 02 Dec 2008; Michele Noberasco <s4t4n@g.o> wmget-0.6.0.ebuild:
34 Fix LDFLAGS ordering. Fixes bug #248641.
35
36
37
38 1.10 x11-plugins/wmget/wmget-0.6.0.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild?rev=1.10&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild?rev=1.10&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild?r1=1.9&r2=1.10
43
44 Index: wmget-0.6.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild,v
47 retrieving revision 1.9
48 retrieving revision 1.10
49 diff -u -r1.9 -r1.10
50 --- wmget-0.6.0.ebuild 2 Dec 2008 10:42:35 -0000 1.9
51 +++ wmget-0.6.0.ebuild 31 Aug 2010 10:20:23 -0000 1.10
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild,v 1.9 2008/12/02 10:42:35 s4t4n Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmget/wmget-0.6.0.ebuild,v 1.10 2010/08/31 10:20:23 s4t4n Exp $
58
59 inherit toolchain-funcs
60
61 @@ -25,14 +25,14 @@
62
63 src_unpack() {
64 unpack ${A}
65 - sed -i -e "s:ar rc:$(tc-getAR) rc:" "${S}"/dockapp/Makefile
66
67 - #Fix LDFLAGS ordering for bug #248641
68 - sed -i 's/$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(DALIB) -o $@/$(CC) $(CFLAGS) $(OBJS) $(DALIB) -o $@ $(LDFLAGS)/' "${S}"/Makefile
69 + sed -i -e "s:ar rc:$(tc-getAR) rc:" "${S}"/dockapp/Makefile
70 + sed -i 's/$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(DALIB) -o $@/$(CC) $(CFLAGS) $(OBJS) $(DALIB) $(LDFLAGS) -o $@ $(LIBS)/' "${S}"/Makefile
71 + sed -i 's/LDFLAGS=/LIBS=/' "${S}"/Makefile
72 }
73
74 src_compile() {
75 - emake -j1 CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed."
76 + emake -j1 CFLAGS="${CFLAGS}" CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" || die "emake failed."
77 }
78
79 src_install() {