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/wmpiki: ChangeLog wmpiki-0.2.1.ebuild
Date: Tue, 28 Apr 2009 14:50:28
Message-Id: E1LyodY-000174-Gd@stork.gentoo.org
1 s4t4n 09/04/28 14:50:20
2
3 Modified: ChangeLog wmpiki-0.2.1.ebuild
4 Log:
5 Added some magic sed so that CC is no longer hardcoded, bug #215651.
6 (Portage version: 2.1.6.7/cvs/Linux i686)
7
8 Revision Changes Path
9 1.10 x11-plugins/wmpiki/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmpiki/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmpiki/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmpiki/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 28 Nov 2008 19:00:02 -0000 1.9
22 +++ ChangeLog 28 Apr 2009 14:50:20 -0000 1.10
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-plugins/wmpiki
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/ChangeLog,v 1.9 2008/11/28 19:00:02 tcunha Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/ChangeLog,v 1.10 2009/04/28 14:50:20 s4t4n Exp $
28 +
29 + 28 Apr 2009; Michele Noberasco <s4t4n@g.o> wmpiki-0.2.1.ebuild:
30 + Added some magic sed so that CC is no longer hardcoded, bug #215651.
31
32 28 Nov 2008; Tiago Cunha <tcunha@g.o> wmpiki-0.2.1.ebuild:
33 stable sparc, bug 215651
34
35
36
37 1.9 x11-plugins/wmpiki/wmpiki-0.2.1.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild?rev=1.9&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild?rev=1.9&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild?r1=1.8&r2=1.9
42
43 Index: wmpiki-0.2.1.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild,v
46 retrieving revision 1.8
47 retrieving revision 1.9
48 diff -u -r1.8 -r1.9
49 --- wmpiki-0.2.1.ebuild 28 Nov 2008 19:00:02 -0000 1.8
50 +++ wmpiki-0.2.1.ebuild 28 Apr 2009 14:50:20 -0000 1.9
51 @@ -1,6 +1,6 @@
52 -# Copyright 1999-2008 Gentoo Foundation
53 +# Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild,v 1.8 2008/11/28 19:00:02 tcunha Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmpiki/wmpiki-0.2.1.ebuild,v 1.9 2009/04/28 14:50:20 s4t4n Exp $
57
58 inherit eutils
59
60 @@ -18,7 +18,15 @@
61 x11-libs/libXext
62 x11-libs/libXpm"
63 DEPEND="${RDEPEND}
64 - x11-proto/xextproto"
65 + x11-proto/xextproto
66 + >=sys-apps/sed-4.1.4-r1"
67 +
68 +src_unpack()
69 +{
70 + unpack ${A}
71 +
72 + sed -i 's/gcc/${CC}/' "${S}/Makefile"
73 +}
74
75 src_compile()
76 {