Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xnee: ChangeLog xnee-3.10.ebuild
Date: Fri, 02 Dec 2011 22:20:19
Message-Id: 20111202222009.A50DA2004B@flycatcher.gentoo.org
1 ssuominen 11/12/02 22:20:09
2
3 Modified: ChangeLog xnee-3.10.ebuild
4 Log:
5 Remove support for building applet for gnome-panel-2.x (because it doesn't build with gnome-panel-3.x)
6
7 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.21 x11-misc/xnee/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 2 Dec 2011 22:15:57 -0000 1.20
23 +++ ChangeLog 2 Dec 2011 22:20:09 -0000 1.21
24 @@ -1,6 +1,10 @@
25 # ChangeLog for x11-misc/xnee
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.20 2011/12/02 22:15:57 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.21 2011/12/02 22:20:09 ssuominen Exp $
29 +
30 + 02 Dec 2011; Samuli Suominen <ssuominen@g.o> xnee-3.10.ebuild:
31 + Remove support for building applet for gnome-panel-2.x (because it doesn't
32 + build with gnome-panel-3.x)
33
34 02 Dec 2011; Samuli Suominen <ssuominen@g.o>
35 -files/xnee-3.05-asneeded.patch, -xnee-3.07.ebuild, -xnee-3.08.ebuild,
36
37
38
39 1.5 x11-misc/xnee/xnee-3.10.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild?r1=1.4&r2=1.5
44
45 Index: xnee-3.10.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- xnee-3.10.ebuild 28 Nov 2011 06:58:03 -0000 1.4
52 +++ xnee-3.10.ebuild 2 Dec 2011 22:20:09 -0000 1.5
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild,v 1.4 2011/11/28 06:58:03 radhermit Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild,v 1.5 2011/12/02 22:20:09 ssuominen Exp $
58
59 EAPI=4
60
61 @@ -27,7 +27,6 @@
62 x11-libs/gtk+:2
63 >=gnome-base/libgnomeui-2
64 >=gnome-base/gconf-2
65 - gnome-base/gnome-panel[bonobo]
66 )
67 "
68 DEPEND="${RDEPEND}
69 @@ -42,7 +41,7 @@
70 RESTRICT="test"
71
72 src_configure() {
73 - local myconf=""
74 + local myconf
75
76 if use xosd; then
77 myconf="--enable-xosd --enable-verbose --enable-buffer_verbose"
78 @@ -52,7 +51,7 @@
79
80 econf \
81 $(use_enable gnome gui) \
82 - $(use_enable gnome gnome-applet) \
83 + --disable-gnome-applet \
84 $(use_enable static-libs static) \
85 --enable-cli \
86 --enable-lib \
87 @@ -61,14 +60,12 @@
88 }
89
90 src_test() {
91 - Xemake check || die
92 + Xemake check
93 }
94
95 src_install() {
96 default
97 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
98 use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
99 - if ! use static-libs; then
100 - rm -f "${D}"/usr/lib*/lib*.la
101 - fi
102 + use static-libs || rm -f "${ED}"usr/lib*/lib*.la
103 }