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.10.ebuild
Date: Sat, 19 Nov 2011 05:03:23
Message-Id: 20111119050312.B6E832004B@flycatcher.gentoo.org
1 radhermit 11/11/19 05:03:12
2
3 Modified: ChangeLog
4 Added: xnee-3.10.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.16 x11-misc/xnee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 9 Aug 2011 18:48:13 -0000 1.15
24 +++ ChangeLog 19 Nov 2011 05:03:12 -0000 1.16
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.15 2011/08/09 18:48:13 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.16 2011/11/19 05:03:12 radhermit Exp $
30 +
31 +*xnee-3.10 (19 Nov 2011)
32 +
33 + 19 Nov 2011; Tim Harder <radhermit@g.o> +xnee-3.10.ebuild:
34 + Version bump.
35
36 *xnee-3.09 (09 Aug 2011)
37
38
39
40
41 1.1 x11-misc/xnee/xnee-3.10.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xnee-3.10.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.10.ebuild,v 1.1 2011/11/19 05:03:12 radhermit Exp $
51
52 EAPI=4
53
54 inherit autotools-utils 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 gnome-base/gnome-panel[bonobo]
78 )
79 "
80 DEPEND="${RDEPEND}
81 x11-proto/inputproto
82 dev-util/pkgconfig
83 sys-devel/gettext
84 gnome? ( || ( media-gfx/imagemagick[jpeg,png]
85 media-gfx/graphicsmagick[imagemagick,jpeg,png] ) )"
86
87 # This needs RECORD extension from X.org server which isn't necessarily
88 # enabled. Xlib: extension "RECORD" missing on display ":0.0".
89 RESTRICT="test"
90
91 src_configure() {
92 local myconf=""
93
94 if use xosd; then
95 myconf="--enable-xosd --enable-verbose --enable-buffer_verbose"
96 else
97 myconf="--disable-xosd --disable-verbose --disable-buffer_verbose"
98 fi
99
100 econf \
101 $(use_enable gnome gui) \
102 $(use_enable gnome gnome-applet) \
103 $(use_enable static-libs static) \
104 --enable-cli \
105 --enable-lib \
106 --disable-static-programs \
107 ${myconf}
108 }
109
110 src_test() {
111 Xemake check || die
112 }
113
114 src_install() {
115 default
116 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
117 use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
118 use static-libs || remove_libtool_files
119 }