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