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.19.ebuild
Date: Tue, 06 May 2014 15:12:52
Message-Id: 20140506151246.BC6CC2004C@flycatcher.gentoo.org
1 jer 14/05/06 15:12:46
2
3 Modified: ChangeLog
4 Added: xnee-3.19.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.33 x11-misc/xnee/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 26 Feb 2014 22:26:36 -0000 1.32
24 +++ ChangeLog 6 May 2014 15:12:46 -0000 1.33
25 @@ -1,6 +1,11 @@
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.32 2014/02/26 22:26:36 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.33 2014/05/06 15:12:46 jer Exp $
30 +
31 +*xnee-3.19 (06 May 2014)
32 +
33 + 06 May 2014; Jeroen Roovers <jer@g.o> +xnee-3.19.ebuild:
34 + Version bump.
35
36 26 Feb 2014; Jeroen Roovers <jer@g.o> -xnee-3.16.ebuild:
37 Old.
38
39
40
41 1.1 x11-misc/xnee/xnee-3.19.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.19.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xnee/xnee-3.19.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xnee-3.19.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.19.ebuild,v 1.1 2014/05/06 15:12:46 jer Exp $
51
52 EAPI=5
53 inherit autotools eutils
54
55 DESCRIPTION="Program suite to record, replay and distribute user actions."
56 HOMEPAGE="http://www.sandklef.com/xnee/"
57 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="gnome static-libs xosd"
63
64 RDEPEND="
65 x11-libs/libX11
66 x11-libs/libXau
67 x11-libs/libXdmcp
68 x11-libs/libXext
69 x11-libs/libXi
70 x11-libs/libXtst
71 x11-libs/libxcb
72 gnome? (
73 x11-libs/gtk+:2
74 >=gnome-base/libgnomeui-2
75 >=gnome-base/gconf-2
76 )
77 "
78 DEPEND="${RDEPEND}
79 x11-proto/inputproto
80 virtual/pkgconfig
81 sys-devel/gettext
82 gnome? (
83 || (
84 media-gfx/imagemagick[jpeg,png]
85 media-gfx/graphicsmagick[imagemagick,jpeg,png]
86 )
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}"/${PN}-3.18-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 }