Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xfe: ChangeLog xfe-1.33-r1.ebuild
Date: Tue, 25 Dec 2012 22:29:06
Message-Id: 20121225222856.137AA2171E@flycatcher.gentoo.org
1 hasufell 12/12/25 22:28:56
2
3 Modified: ChangeLog
4 Added: xfe-1.33-r1.ebuild
5 Log:
6 bump to EAPI=5, use l10n.eclass for LINGUAS handling, respect flags in debug mode, add missing dependencies, fix desktop file
7
8 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.82 x11-misc/xfe/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.82&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.82&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?r1=1.81&r2=1.82
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v
20 retrieving revision 1.81
21 retrieving revision 1.82
22 diff -u -r1.81 -r1.82
23 --- ChangeLog 25 Dec 2012 19:21:31 -0000 1.81
24 +++ ChangeLog 25 Dec 2012 22:28:55 -0000 1.82
25 @@ -1,6 +1,13 @@
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.81 2012/12/25 19:21:31 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.82 2012/12/25 22:28:55 hasufell Exp $
30 +
31 +*xfe-1.33-r1 (25 Dec 2012)
32 +
33 + 25 Dec 2012; Julian Ospald <hasufell@g.o> +xfe-1.33-r1.ebuild,
34 + +files/xfe-1.33-desktopfile.patch, +files/xfe-1.33-flags.patch:
35 + bump to EAPI=5, use l10n.eclass for LINGUAS handling, respect flags in debug
36 + mode, add missing dependencies, fix desktop file
37
38 25 Dec 2012; Anthony G. Basile <blueness@g.o> xfe-1.33.ebuild:
39 stable ppc, bug #448544, thanks peratu
40
41
42
43 1.1 x11-misc/xfe/xfe-1.33-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.33-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.33-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xfe-1.33-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.33-r1.ebuild,v 1.1 2012/12/25 22:28:55 hasufell Exp $
53
54 EAPI=5
55
56 PLOCALES="
57 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
58 zh_TW
59 "
60 inherit autotools base l10n
61
62 DESCRIPTION="MS-Explorer-like minimalist file manager for X"
63 HOMEPAGE="http://roland65.free.fr/xfe"
64 SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
69 IUSE="debug nls startup-notification"
70
71 RDEPEND="
72 media-libs/libpng:0
73 x11-libs/fox:1.6[truetype,png]
74 x11-libs/libX11
75 x11-libs/libXft
76 startup-notification? ( x11-libs/startup-notification )
77 "
78 DEPEND="
79 ${RDEPEND}
80 virtual/pkgconfig
81 nls? (
82 dev-util/intltool
83 sys-devel/gettext
84 )
85 "
86
87 DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO )
88 PATCHES=(
89 "${FILESDIR}"/${PN}-1.32.2-missing_Xlib_h.patch
90 "${FILESDIR}"/${P}-flags.patch
91 "${FILESDIR}"/${P}-desktopfile.patch
92 )
93
94 src_prepare() {
95 base_src_prepare
96 cat >po/POTFILES.skip <<-EOF
97 src/icons.cpp
98 xfe.desktop.in.in
99 xfi.desktop.in.in
100 xfp.desktop.in.in
101 xfv.desktop.in.in
102 xfw.desktop.in.in
103 EOF
104
105 # malformed LINGUAS file
106 # recent intltool expects newline for every linguas
107 sed -i \
108 -e '/^#/!s/\s\s*/\n/g' \
109 po/LINGUAS || die
110
111 # remove not selected locales
112 rm_locale() { sed -i -e "/${1}/d" po/LINGUAS || die ;}
113 l10n_for_each_disabled_locale_do rm_locale
114
115 eautoreconf
116 }
117
118 src_configure() {
119 econf \
120 --enable-minimalflags \
121 $(use_enable nls) \
122 $(use_enable startup-notification sn) \
123 $(use_enable debug)
124 }