Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmfire: metadata.xml ChangeLog wmfire-1.2.4-r1.ebuild
Date: Mon, 28 Jun 2010 22:00:14
Message-Id: 20100628220004.28B102C621@corvid.gentoo.org
1 voyageur 10/06/28 22:00:04
2
3 Modified: metadata.xml ChangeLog
4 Added: wmfire-1.2.4-r1.ebuild
5 Log:
6 Fix support with gtk+ >= 2.18, bug #304087
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 x11-plugins/wmfire/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/metadata.xml?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/metadata.xml?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/metadata.xml?r1=1.2&r2=1.3
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/metadata.xml,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- metadata.xml 9 Dec 2003 18:49:47 -0000 1.2
23 +++ metadata.xml 28 Jun 2010 22:00:03 -0000 1.3
24 @@ -7,4 +7,7 @@
25 fire, possibly according to how much load the system is experiencing, or from a
26 number somewhere in a file. wmfire requires very little CPU.
27 </longdescription>
28 +<use>
29 + <flag name='session'>Enable session management</flag>
30 +</use>
31 </pkgmetadata>
32
33
34
35 1.16 x11-plugins/wmfire/ChangeLog
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/ChangeLog?rev=1.16&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/ChangeLog?rev=1.16&content-type=text/plain
39 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/ChangeLog?r1=1.15&r2=1.16
40
41 Index: ChangeLog
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v
44 retrieving revision 1.15
45 retrieving revision 1.16
46 diff -u -r1.15 -r1.16
47 --- ChangeLog 15 Mar 2010 22:03:02 -0000 1.15
48 +++ ChangeLog 28 Jun 2010 22:00:03 -0000 1.16
49 @@ -1,6 +1,13 @@
50 # ChangeLog for x11-plugins/wmfire
51 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
52 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v 1.15 2010/03/15 22:03:02 ssuominen Exp $
53 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v 1.16 2010/06/28 22:00:03 voyageur Exp $
54 +
55 +*wmfire-1.2.4-r1 (28 Jun 2010)
56 +
57 + 28 Jun 2010; Bernard Cafarelli <voyageur@g.o>
58 + +wmfire-1.2.4-r1.ebuild, +files/wmfire-1.2.4-no_display.patch,
59 + metadata.xml:
60 + Fix support with gtk+ >= 2.18, bug #304087
61
62 *wmfire-1.2.4 (15 Mar 2010)
63
64
65
66
67 1.1 x11-plugins/wmfire/wmfire-1.2.4-r1.ebuild
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.4-r1.ebuild?rev=1.1&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.4-r1.ebuild?rev=1.1&content-type=text/plain
71
72 Index: wmfire-1.2.4-r1.ebuild
73 ===================================================================
74 # Copyright 1999-2010 Gentoo Foundation
75 # Distributed under the terms of the GNU General Public License v2
76 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.4-r1.ebuild,v 1.1 2010/06/28 22:00:03 voyageur Exp $
77
78 EAPI=2
79 inherit autotools eutils
80
81 DESCRIPTION="Load monitoring dockapp displaying dancing flame."
82 HOMEPAGE="http://www.swanson.ukfsn.org/#wmfire"
83 SRC_URI="http://www.swanson.ukfsn.org/${PN}/${P}.tar.gz"
84
85 LICENSE="GPL-2"
86 SLOT="0"
87 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
88 IUSE="session"
89
90 RDEPEND="x11-libs/gtk+:2
91 >=gnome-base/libgtop-2
92 x11-libs/libX11
93 x11-libs/libXext
94 session? ( x11-libs/libSM
95 x11-libs/libICE )"
96 DEPEND="${RDEPEND}
97 dev-util/pkgconfig"
98
99 src_prepare() {
100 epatch "${FILESDIR}"/${PN}-1.2.3-stringh.patch
101 epatch "${FILESDIR}"/${P}-no_display.patch
102 eautoreconf
103 }
104
105 src_configure() {
106 econf \
107 --disable-dependency-tracking \
108 $(use_enable session)
109 }
110
111 src_install() {
112 emake DESTDIR="${D}" install || die
113 dodoc ALL_I_GET_IS_A_GREY_BOX AUTHORS ChangeLog NEWS README
114 }