Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xnee: ChangeLog xnee-3.08.ebuild xnee-3.06.ebuild
Date: Tue, 01 Feb 2011 19:24:07
Message-Id: 20110201192356.875F620054@flycatcher.gentoo.org
1 jer 11/02/01 19:23:56
2
3 Modified: ChangeLog
4 Added: xnee-3.08.ebuild
5 Removed: xnee-3.06.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha19/cvs/Linux i686)
10
11 Revision Changes Path
12 1.14 x11-misc/xnee/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.14&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.14&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.13&r2=1.14
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
21 retrieving revision 1.13
22 retrieving revision 1.14
23 diff -u -r1.13 -r1.14
24 --- ChangeLog 11 Jan 2011 20:23:17 -0000 1.13
25 +++ ChangeLog 1 Feb 2011 19:23:56 -0000 1.14
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/xnee
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.13 2011/01/11 20:23:17 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.14 2011/02/01 19:23:56 jer Exp $
31 +
32 +*xnee-3.08 (01 Feb 2011)
33 +
34 + 01 Feb 2011; Jeroen Roovers <jer@g.o> -xnee-3.06.ebuild,
35 + +xnee-3.08.ebuild:
36 + Version bump.
37
38 11 Jan 2011; Pacho Ramos <pacho@g.o> xnee-3.06.ebuild,
39 xnee-3.07.ebuild:
40
41
42
43 1.1 x11-misc/xnee/xnee-3.08.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.08.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.08.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xnee-3.08.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.08.ebuild,v 1.1 2011/02/01 19:23:56 jer Exp $
53
54 EAPI=2
55 inherit autotools eutils
56 # virtualx
57
58 DESCRIPTION="Program suite to record, replay and distribute user actions."
59 HOMEPAGE="http://www.sandklef.com/xnee/"
60 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="gnome xosd"
66
67 RDEPEND="x11-libs/libX11
68 x11-libs/libXtst
69 gnome? ( x11-libs/gtk+:2
70 >=gnome-base/libgnomeui-2
71 >=gnome-base/gconf-2
72 || ( gnome-base/gnome-panel[bonobo] <gnome-base/gnome-panel-2.32 ) )"
73 DEPEND="${RDEPEND}
74 x11-proto/inputproto
75 dev-util/pkgconfig
76 sys-devel/gettext
77 gnome? ( || ( media-gfx/imagemagick[jpeg,png]
78 media-gfx/graphicsmagick[imagemagick,jpeg,png] ) )"
79
80 # This needs RECORD extension from X.org server which isn't necessarily
81 # enabled. Xlib: extension "RECORD" missing on display ":0.0".
82 RESTRICT="test"
83
84 src_prepare() {
85 sed -i -e '/dnl/d' libxnee/src/Makefile.am || die #333983
86 epatch "${FILESDIR}"/${PN}-3.05-asneeded.patch
87 eautoreconf
88 }
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 --disable-dependency-tracking \
101 $(use_enable gnome gui) \
102 $(use_enable gnome gnome-applet) \
103 --enable-cli \
104 --enable-lib \
105 --disable-static-programs \
106 ${myconf}
107 }
108
109 src_test() {
110 Xemake check || die
111 }
112
113 src_install() {
114 emake DESTDIR="${D}" install || die
115 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
116 use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
117 }