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.05.ebuild xnee-3.02.ebuild
Date: Tue, 09 Feb 2010 18:16:44
Message-Id: E1Neudc-00088U-PC@stork.gentoo.org
1 ssuominen 10/02/09 18:16:40
2
3 Modified: ChangeLog
4 Added: xnee-3.05.ebuild
5 Removed: xnee-3.02.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 x11-misc/xnee/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 2 May 2009 09:42:00 -0000 1.5
24 +++ ChangeLog 9 Feb 2010 18:16:40 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/xnee
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.5 2009/05/02 09:42:00 ssuominen Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.6 2010/02/09 18:16:40 ssuominen Exp $
31 +
32 +*xnee-3.05 (09 Feb 2010)
33 +
34 + 09 Feb 2010; Samuli Suominen <ssuominen@g.o> +xnee-3.05.ebuild:
35 + Version bump wrt #300539, thanks to Jeroen Roovers for reporting.
36
37 02 May 2009; Samuli Suominen <ssuominen@g.o> -xnee-3.01.ebuild,
38 -files/xnee-3.01-destdir.patch, xnee-3.02.ebuild:
39
40
41
42 1.1 x11-misc/xnee/xnee-3.05.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/xnee-3.05.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/xnee-3.05.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xnee-3.05.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.05.ebuild,v 1.1 2010/02/09 18:16:40 ssuominen Exp $
52
53 EAPI=2
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 xosd"
64
65 RDEPEND="x11-libs/libX11
66 x11-libs/libXtst
67 gnome? ( x11-libs/gtk+:2
68 >=gnome-base/libgnomeui-2
69 >=gnome-base/gconf-2
70 >=gnome-base/gnome-panel-2 )"
71 DEPEND="${RDEPEND}
72 x11-proto/inputproto
73 dev-util/pkgconfig
74 gnome? ( sys-devel/gettext
75 media-gfx/imagemagick )"
76
77 src_configure() {
78 local myconf=""
79
80 if use xosd; then
81 myconf="--enable-xosd --enable-verbose --enable-buffer_verbose"
82 else
83 myconf="--disable-xosd --disable-verbose --disable-buffer_verbose"
84 fi
85
86 econf \
87 --disable-dependency-tracking \
88 $(use_enable gnome gui) \
89 $(use_enable gnome gnome-applet) \
90 --enable-cli \
91 --enable-lib \
92 --disable-static-programs \
93 ${myconf}
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die
98 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
99 use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
100 }