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.18.ebuild
Date: Wed, 26 Feb 2014 12:28:38
Message-Id: 20140226122832.344B02004C@flycatcher.gentoo.org
1 jer 14/02/26 12:28:32
2
3 Modified: ChangeLog
4 Added: xnee-3.18.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.30 x11-misc/xnee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 30 Jan 2014 11:34:39 -0000 1.29
24 +++ ChangeLog 26 Feb 2014 12:28:32 -0000 1.30
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/xnee
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.29 2014/01/30 11:34:39 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.30 2014/02/26 12:28:32 jer Exp $
30 +
31 +*xnee-3.18 (26 Feb 2014)
32 +
33 + 26 Feb 2014; Jeroen Roovers <jer@g.o> +xnee-3.18.ebuild,
34 + +files/xnee-3.18-linker.patch:
35 + Version bump.
36
37 *xnee-3.17 (30 Jan 2014)
38
39
40
41
42 1.1 x11-misc/xnee/xnee-3.18.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.18.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.18.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xnee-3.18.ebuild
48 ===================================================================
49 # Copyright 1999-2014 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.18.ebuild,v 1.1 2014/02/26 12:28:32 jer Exp $
52
53 EAPI=5
54
55 inherit autotools eutils
56
57 DESCRIPTION="Program suite to record, replay and distribute user actions."
58 HOMEPAGE="http://www.sandklef.com/xnee/"
59 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="gnome static-libs xosd"
65
66 RDEPEND="
67 x11-libs/libX11
68 x11-libs/libXau
69 x11-libs/libXdmcp
70 x11-libs/libXext
71 x11-libs/libXi
72 x11-libs/libXtst
73 x11-libs/libxcb
74 gnome? (
75 x11-libs/gtk+:2
76 >=gnome-base/libgnomeui-2
77 >=gnome-base/gconf-2
78 )
79 "
80 DEPEND="${RDEPEND}
81 x11-proto/inputproto
82 virtual/pkgconfig
83 sys-devel/gettext
84 gnome? ( || (
85 media-gfx/imagemagick[jpeg,png]
86 media-gfx/graphicsmagick[imagemagick,jpeg,png]
87 ) )
88 "
89
90 # This needs RECORD extension from X.org server which isn't necessarily
91 # enabled. Xlib: extension "RECORD" missing on display ":0.0".
92 RESTRICT="test"
93
94 src_prepare() {
95 epatch "${FILESDIR}"/${P}-linker.patch
96 eautoreconf
97 }
98
99 src_configure() {
100 econf \
101 $(use_enable gnome gui) \
102 $(use_enable static-libs static) \
103 $(use_enable xosd buffer_verbose) \
104 $(use_enable xosd verbose) \
105 $(use_enable xosd) \
106 --disable-gnome-applet \
107 --disable-static-programs \
108 --enable-cli \
109 --enable-lib
110 }
111
112 src_test() {
113 Xemake check
114 }
115
116 src_install() {
117 default
118 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
119 use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
120 use static-libs || rm -f "${ED}"usr/lib*/lib*.la
121 }