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/xfe: ChangeLog xfe-1.33.ebuild
Date: Tue, 02 Oct 2012 20:53:34
Message-Id: 20121002205323.E42D121600@flycatcher.gentoo.org
1 jer 12/10/02 20:53:23
2
3 Modified: ChangeLog
4 Added: xfe-1.33.ebuild
5 Log:
6 Version bump. Add LINGUAS support.
7
8 (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.75 x11-misc/xfe/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 12 May 2012 23:38:17 -0000 1.74
24 +++ ChangeLog 2 Oct 2012 20:53:23 -0000 1.75
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/xfe
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.74 2012/05/12 23:38:17 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.75 2012/10/02 20:53:23 jer Exp $
30 +
31 +*xfe-1.33 (02 Oct 2012)
32 +
33 + 02 Oct 2012; Jeroen Roovers <jer@g.o> +xfe-1.33.ebuild:
34 + Version bump. Add LINGUAS support.
35
36 *xfe-1.32.5 (12 May 2012)
37
38
39
40
41 1.1 x11-misc/xfe/xfe-1.33.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.33.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.33.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xfe-1.33.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.33.ebuild,v 1.1 2012/10/02 20:53:23 jer Exp $
51
52 EAPI=4
53
54 inherit base
55
56 DESCRIPTION="MS-Explorer-like minimalist file manager for X"
57 HOMEPAGE="http://roland65.free.fr/xfe"
58 SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="debug nls startup-notification"
64
65 XFELINGUAS="
66 bs ca cs da de el es_AR es fr hu it ja nl no pl pt_BR pt_PT ru sv tr zh_CN
67 zh_TW
68 "
69 for lingua in ${XFELINGUAS}; do
70 IUSE+=" linguas_${lingua}"
71 done
72
73 RDEPEND="
74 media-libs/libpng:0
75 startup-notification? ( x11-libs/startup-notification )
76 x11-libs/fox:1.6[truetype,png]
77 x11-libs/libX11
78 x11-libs/libXft
79 "
80 DEPEND="
81 ${RDEPEND}
82 nls? ( sys-devel/gettext )
83 "
84
85 DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO )
86 PATCHES=( "${FILESDIR}"/${PN}-1.32.2-missing_Xlib_h.patch )
87
88 src_prepare() {
89 base_src_prepare
90 cat >po/POTFILES.skip <<-EOF
91 src/icons.cpp
92 xfe.desktop.in.in
93 xfi.desktop.in.in
94 xfp.desktop.in.in
95 xfv.desktop.in.in
96 xfw.desktop.in.in
97 EOF
98
99 local lingua
100 for lingua in ${XFELINGUAS}; do
101 if ! use linguas_${lingua}; then
102 sed -i po/LINGUAS -e "s|${lingua}||g" || die
103 fi
104 done
105 }
106
107 src_configure() {
108 econf \
109 $(use_enable nls) \
110 $(use_enable startup-notification sn) \
111 $(use_enable debug)
112 }