Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xnee: ChangeLog xnee-3.11.ebuild
Date: Fri, 23 Dec 2011 02:46:35
Message-Id: 20111223024626.371BD2004C@flycatcher.gentoo.org
1 radhermit 11/12/23 02:46:26
2
3 Modified: ChangeLog
4 Added: xnee-3.11.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.22 x11-misc/xnee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 2 Dec 2011 22:20:09 -0000 1.21
24 +++ ChangeLog 23 Dec 2011 02:46:25 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/xnee
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.21 2011/12/02 22:20:09 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.22 2011/12/23 02:46:25 radhermit Exp $
30 +
31 +*xnee-3.11 (23 Dec 2011)
32 +
33 + 23 Dec 2011; Tim Harder <radhermit@g.o> +xnee-3.11.ebuild:
34 + Version bump.
35
36 02 Dec 2011; Samuli Suominen <ssuominen@g.o> xnee-3.10.ebuild:
37 Remove support for building applet for gnome-panel-2.x (because it doesn't
38
39
40
41 1.1 x11-misc/xnee/xnee-3.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xnee-3.11.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.11.ebuild,v 1.1 2011/12/23 02:46:25 radhermit Exp $
51
52 EAPI=4
53
54 inherit eutils
55
56 DESCRIPTION="Program suite to record, replay and distribute user actions."
57 HOMEPAGE="http://www.sandklef.com/xnee/"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="gnome static-libs xosd"
64
65 RDEPEND="
66 x11-libs/libX11
67 x11-libs/libXau
68 x11-libs/libXdmcp
69 x11-libs/libXext
70 x11-libs/libXi
71 x11-libs/libXtst
72 x11-libs/libxcb
73 gnome? (
74 x11-libs/gtk+:2
75 >=gnome-base/libgnomeui-2
76 >=gnome-base/gconf-2
77 )
78 "
79 DEPEND="${RDEPEND}
80 x11-proto/inputproto
81 dev-util/pkgconfig
82 sys-devel/gettext
83 gnome? ( || ( media-gfx/imagemagick[jpeg,png]
84 media-gfx/graphicsmagick[imagemagick,jpeg,png] ) )"
85
86 # This needs RECORD extension from X.org server which isn't necessarily
87 # enabled. Xlib: extension "RECORD" missing on display ":0.0".
88 RESTRICT="test"
89
90 src_configure() {
91 local myconf
92
93 if use xosd; then
94 myconf="--enable-xosd --enable-verbose --enable-buffer_verbose"
95 else
96 myconf="--disable-xosd --disable-verbose --disable-buffer_verbose"
97 fi
98
99 econf \
100 $(use_enable gnome gui) \
101 --disable-gnome-applet \
102 $(use_enable static-libs static) \
103 --enable-cli \
104 --enable-lib \
105 --disable-static-programs \
106 ${myconf}
107 }
108
109 src_test() {
110 Xemake check
111 }
112
113 src_install() {
114 default
115 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
116 use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
117 use static-libs || rm -f "${ED}"usr/lib*/lib*.la
118 }