Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xfe: ChangeLog xfe-1.32.2.ebuild
Date: Sun, 31 Oct 2010 23:33:06
Message-Id: 20101031233250.6C80320051@flycatcher.gentoo.org
1 hwoarang 10/10/31 23:32:50
2
3 Modified: ChangeLog
4 Added: xfe-1.32.2.ebuild
5 Log:
6 Version bump. Bug #338577
7
8 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.63 x11-misc/xfe/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.63&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.63&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?r1=1.62&r2=1.63
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v
20 retrieving revision 1.62
21 retrieving revision 1.63
22 diff -u -r1.62 -r1.63
23 --- ChangeLog 6 Jun 2010 12:43:35 -0000 1.62
24 +++ ChangeLog 31 Oct 2010 23:32:50 -0000 1.63
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/xfe
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.62 2010/06/06 12:43:35 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.63 2010/10/31 23:32:50 hwoarang Exp $
30 +
31 +*xfe-1.32.2 (31 Oct 2010)
32 +
33 + 31 Oct 2010; Markos Chandras <hwoarang@g.o> +xfe-1.32.2.ebuild:
34 + Version bump. Bug #338577
35
36 06 Jun 2010; Samuli Suominen <ssuominen@g.o> xfe-1.32.1.ebuild:
37 Fix testsuite wrt #320791 by Diego E. Pettenò.
38
39
40
41 1.1 x11-misc/xfe/xfe-1.32.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.32.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.32.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xfe-1.32.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.32.2.ebuild,v 1.1 2010/10/31 23:32:50 hwoarang Exp $
51
52 EAPI=2
53 inherit eutils
54
55 DESCRIPTION="MS-Explorer-like minimalist file manager for X"
56 HOMEPAGE="http://roland65.free.fr/xfe"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="debug nls startup-notification"
63
64 RDEPEND="x11-libs/libX11
65 media-libs/libpng
66 =x11-libs/fox-1.6*[truetype,png]
67 startup-notification? ( x11-libs/startup-notification )"
68 DEPEND="${RDEPEND}
69 nls? ( sys-devel/gettext )"
70
71 src_prepare() {
72 cat >po/POTFILES.skip <<-EOF
73 src/icons.cpp
74 xfe.desktop.in.in
75 xfi.desktop.in.in
76 xfp.desktop.in.in
77 xfv.desktop.in.in
78 xfw.desktop.in.in
79 EOF
80 }
81
82 src_configure() {
83 econf \
84 --disable-dependency-tracking \
85 $(use_enable nls) \
86 $(use_enable startup-notification sn) \
87 $(use_enable debug)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die
92 dodoc AUTHORS BUGS ChangeLog NEWS README TODO
93 }