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/wmsystray: ChangeLog wmsystray-0.1.1.ebuild
Date: Thu, 09 Sep 2010 13:43:18
Message-Id: 20100909134312.A6B1620051@flycatcher.gentoo.org
1 s4t4n 10/09/09 13:43:12
2
3 Modified: ChangeLog wmsystray-0.1.1.ebuild
4 Log:
5 Honour Gentoo LDFLAGS, see bug #336296.
6 Some QA on package build.
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.12 x11-plugins/wmsystray/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmsystray/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmsystray/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmsystray/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmsystray/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 30 Jun 2007 14:20:37 -0000 1.11
23 +++ ChangeLog 9 Sep 2010 13:43:12 -0000 1.12
24 @@ -1,6 +1,10 @@
25 # ChangeLog for x11-plugins/wmsystray
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsystray/ChangeLog,v 1.11 2007/06/30 14:20:37 coldwind Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsystray/ChangeLog,v 1.12 2010/09/09 13:43:12 s4t4n Exp $
30 +
31 + 09 Sep 2010; Michele Noberasco <s4t4n@g.o> wmsystray-0.1.1.ebuild:
32 + Honour Gentoo LDFLAGS, see bug #336296.
33 + Some QA on package build.
34
35 30 Jun 2007; Santiago M. Mola <coldwind@g.o>
36 +files/wmsystray-0.1.1-Makefile.patch,
37
38
39
40 1.11 x11-plugins/wmsystray/wmsystray-0.1.1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild?rev=1.11&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild?rev=1.11&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild?r1=1.10&r2=1.11
45
46 Index: wmsystray-0.1.1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild,v
49 retrieving revision 1.10
50 retrieving revision 1.11
51 diff -u -r1.10 -r1.11
52 --- wmsystray-0.1.1.ebuild 30 Jun 2007 14:20:37 -0000 1.10
53 +++ wmsystray-0.1.1.ebuild 9 Sep 2010 13:43:12 -0000 1.11
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2007 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild,v 1.10 2007/06/30 14:20:37 coldwind Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild,v 1.11 2010/09/09 13:43:12 s4t4n Exp $
60
61 inherit eutils
62
63 @@ -27,6 +27,12 @@
64 # Fix for #61704, cannot compile with gcc 3.4.1:
65 # it's a trivial change and does not affect other compilers...
66 epatch "${FILESDIR}/${P}-gcc-3.4.patch"
67 +
68 + # Fix parallel compilation
69 + sed -ie "s/make EXTRACFLAGS/make \${MAKEOPTS} EXTRACFLAGS/" Makefile
70 +
71 + # Honour Gentoo LDFLAGS, see bug #336296
72 + sed -ie "s/-o wmsystray/${LDFLAGS} -o wmsystray/" wmsystray/Makefile
73 }
74
75 src_compile() {