Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xnee: ChangeLog xnee-3.02.ebuild
Date: Sun, 03 Feb 2008 18:06:59
Message-Id: E1JLjEk-0006xa-01@stork.gentoo.org
1 drac 08/02/03 18:06:37
2
3 Modified: ChangeLog
4 Added: xnee-3.02.ebuild
5 Log:
6 Version bump with keyword for ~amd64.
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.3 x11-misc/xnee/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 14 Aug 2007 15:44:42 -0000 1.2
23 +++ ChangeLog 3 Feb 2008 18:06:37 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/xnee
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.2 2007/08/14 15:44:42 drac Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/ChangeLog,v 1.3 2008/02/03 18:06:37 drac Exp $
30 +
31 +*xnee-3.02 (03 Feb 2008)
32 +
33 + 03 Feb 2008; Samuli Suominen <drac@g.o>
34 + +files/xnee-3.02-destdir.patch, +xnee-3.02.ebuild:
35 + Version bump with keyword for ~amd64.
36
37 14 Aug 2007; Samuli Suominen <drac@g.o> xnee-3.01.ebuild:
38 Add desktop entry with icon.
39
40
41
42 1.1 x11-misc/xnee/xnee-3.02.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/xnee-3.02.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnee/xnee-3.02.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xnee-3.02.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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.02.ebuild,v 1.1 2008/02/03 18:06:37 drac Exp $
52
53 inherit 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 gtk xosd"
63
64 RDEPEND="x11-libs/libX11
65 x11-libs/libXtst
66 gtk? ( >=x11-libs/gtk+-2 )
67 gnome? ( gnome-base/gconf
68 gnome-base/gnome-panel )"
69 DEPEND="sys-apps/sed
70 dev-util/pkgconfig
71 gtk? ( sys-devel/gettext media-gfx/imagemagick )"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/${P}-destdir.patch
77 }
78
79 src_compile() {
80 local myconf
81
82 if use xosd; then
83 myconf="--enable-xosd --enable-verbose --enable-buffer_verbose"
84 else
85 myconf="--disable-xosd --disable-verbose --disable-buffer_verbose"
86 fi
87
88 econf ${myconf} --enable-cli --enable-lib \
89 $(use_enable gnome gnome-applet) \
90 $(use_enable gtk gui)
91
92 emake || die "emake failed."
93 }
94
95 src_install() {
96 emake DESTDIR="${D}" install || die "emake install failed."
97 dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
98
99 if use gtk; then
100 doicon pixmap/${PN}.png
101 make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
102 fi
103 }
104
105
106
107 --
108 gentoo-commits@l.g.o mailing list