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: ChangeLog wmfire-1.2.4-r2.ebuild wmfire-1.2.4.ebuild
Date: Mon, 27 Feb 2012 14:58:44
Message-Id: 20120227145833.751B92004B@flycatcher.gentoo.org
1 voyageur 12/02/27 14:58:33
2
3 Modified: ChangeLog
4 Added: wmfire-1.2.4-r2.ebuild
5 Removed: wmfire-1.2.4.ebuild
6 Log:
7 Fix display for SMP systems, report and patch by wbk in bug #404323
8
9 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.20 x11-plugins/wmfire/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/ChangeLog?rev=1.20&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/ChangeLog?rev=1.20&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/ChangeLog?r1=1.19&r2=1.20
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v
21 retrieving revision 1.19
22 retrieving revision 1.20
23 diff -u -r1.19 -r1.20
24 --- ChangeLog 26 Dec 2011 12:34:27 -0000 1.19
25 +++ ChangeLog 27 Feb 2012 14:58:33 -0000 1.20
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-plugins/wmfire
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v 1.19 2011/12/26 12:34:27 maekke Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/ChangeLog,v 1.20 2012/02/27 14:58:33 voyageur Exp $
32 +
33 +*wmfire-1.2.4-r2 (27 Feb 2012)
34 +
35 + 27 Feb 2012; Bernard Cafarelli <voyageur@g.o> -wmfire-1.2.4.ebuild,
36 + +wmfire-1.2.4-r2.ebuild, +files/wmfire-1.2.4-lastprocessor_SMP.patch:
37 + Fix display for SMP systems, report and patch by wbk in bug #404323
38
39 26 Dec 2011; Markus Meier <maekke@g.o> wmfire-1.2.4-r1.ebuild:
40 x86 stable, bug #394081
41
42
43
44 1.1 x11-plugins/wmfire/wmfire-1.2.4-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.4-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.4-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: wmfire-1.2.4-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.4-r2.ebuild,v 1.1 2012/02/27 14:58:33 voyageur Exp $
54
55 EAPI=4
56 inherit autotools eutils
57
58 DESCRIPTION="Load monitoring dockapp displaying dancing flame."
59 HOMEPAGE="http://www.swanson.ukfsn.org/#wmfire"
60 SRC_URI="http://www.swanson.ukfsn.org/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
65 IUSE="session"
66
67 RDEPEND="x11-libs/gtk+:2
68 gnome-base/libgtop:2
69 x11-libs/libX11
70 x11-libs/libXext
71 session? ( x11-libs/libSM
72 x11-libs/libICE )"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${PN}-1.2.3-stringh.patch
78 epatch "${FILESDIR}"/${P}-no_display.patch
79 epatch "${FILESDIR}"/${P}-lastprocessor_SMP.patch
80 eautoreconf
81 }
82
83 src_configure() {
84 econf \
85 --disable-dependency-tracking \
86 $(use_enable session)
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install
91 dodoc ALL_I_GET_IS_A_GREY_BOX AUTHORS ChangeLog NEWS README
92 }