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/wmdrawer: wmdrawer-0.10.5-r2.ebuild ChangeLog
Date: Tue, 31 Aug 2010 13:31:37
Message-Id: 20100831133132.E2E4B20051@flycatcher.gentoo.org
1 s4t4n 10/08/31 13:31:32
2
3 Modified: wmdrawer-0.10.5-r2.ebuild ChangeLog
4 Log:
5 Honour Gentoo LDFLAGS. Closes bug #334005.
6 Fixed man page installation.
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.8 x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild?r1=1.7&r2=1.8
15
16 Index: wmdrawer-0.10.5-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- wmdrawer-0.10.5-r2.ebuild 2 Dec 2008 10:51:54 -0000 1.7
23 +++ wmdrawer-0.10.5-r2.ebuild 31 Aug 2010 13:31:32 -0000 1.8
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2008 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild,v 1.7 2008/12/02 10:51:54 s4t4n Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild,v 1.8 2010/08/31 13:31:32 s4t4n Exp $
30
31 inherit eutils
32
33 @@ -30,10 +30,17 @@
34
35 # Do not auto-strip binaries
36 sed -i 's/ strip $@//' Makefile || die
37 +
38 + # Honour Gentoo LDFLAGS
39 + sed -i 's/$(CC) -o/$(CC) $(REAL_LDFLAGS) -o/' Makefile || die
40 +}
41 +
42 +src_compile() {
43 + emake REAL_LDFLAGS="${LDFLAGS}" || die "make failed"
44 }
45
46 src_install() {
47 dobin wmdrawer
48 dodoc README TODO AUTHORS ChangeLog wmdrawerrc.example
49 - doman wmdrawer.1
50 + doman doc/wmdrawer.1x.gz
51 }
52
53
54
55 1.22 x11-plugins/wmdrawer/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmdrawer/ChangeLog?rev=1.22&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmdrawer/ChangeLog?rev=1.22&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmdrawer/ChangeLog?r1=1.21&r2=1.22
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/ChangeLog,v
64 retrieving revision 1.21
65 retrieving revision 1.22
66 diff -u -r1.21 -r1.22
67 --- ChangeLog 2 Dec 2008 10:51:54 -0000 1.21
68 +++ ChangeLog 31 Aug 2010 13:31:32 -0000 1.22
69 @@ -1,6 +1,10 @@
70 # ChangeLog for x11-plugins/wmdrawer
71 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/ChangeLog,v 1.21 2008/12/02 10:51:54 s4t4n Exp $
73 +# Copyright 2000-2010 Gentoo Foundation; Distributed under the GPL v2
74 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdrawer/ChangeLog,v 1.22 2010/08/31 13:31:32 s4t4n Exp $
75 +
76 + 31 Aug 2010; Michele Noberasco <s4t4n@g.o> wmdrawer-0.10.5-r2.ebuild:
77 + Honour Gentoo LDFLAGS. Closes bug #334005.
78 + Fixed man page installation.
79
80 02 Dec 2008; Michele Noberasco <s4t4n@g.o> wmdrawer-0.10.5-r2.ebuild:
81 Fix LDFLAGS ordering per bug #248640. Some generic QA fixes.