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.35.ebuild xfe-1.33-r1.ebuild
Date: Tue, 27 Aug 2013 14:09:02
Message-Id: 20130827140854.2FB182004C@flycatcher.gentoo.org
1 jer 13/08/27 14:08:54
2
3 Modified: ChangeLog
4 Added: xfe-1.35.ebuild
5 Removed: xfe-1.33-r1.ebuild
6 Log:
7 Version bump (bug #482610).
8
9 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.95 x11-misc/xfe/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.95&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.95&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?r1=1.94&r2=1.95
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v
21 retrieving revision 1.94
22 retrieving revision 1.95
23 diff -u -r1.94 -r1.95
24 --- ChangeLog 25 Jun 2013 10:38:26 -0000 1.94
25 +++ ChangeLog 27 Aug 2013 14:08:53 -0000 1.95
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-misc/xfe
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.94 2013/06/25 10:38:26 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.95 2013/08/27 14:08:53 jer Exp $
31 +
32 +*xfe-1.35 (27 Aug 2013)
33 +
34 + 27 Aug 2013; Jeroen Roovers <jer@g.o> -xfe-1.33-r1.ebuild,
35 + +xfe-1.35.ebuild, -files/xfe-1.33-desktopfile.patch,
36 + -files/xfe-1.33-flags.patch:
37 + Version bump (bug #482610).
38
39 25 Jun 2013; Agostino Sarubbo <ago@g.o> xfe-1.34.ebuild:
40 Stable for ppc64, wrt bug #471278
41
42
43
44 1.1 x11-misc/xfe/xfe-1.35.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.35.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.35.ebuild?rev=1.1&content-type=text/plain
48
49 Index: xfe-1.35.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.35.ebuild,v 1.1 2013/08/27 14:08:54 jer Exp $
54
55 EAPI=5
56
57 PLOCALES="
58 bs ca cs da de el es_AR es_CO es fr hu it ja nl no pl pt_BR pt_PT ru sv tr
59 zh_CN zh_TW
60 "
61 inherit autotools base l10n
62
63 DESCRIPTION="MS-Explorer-like minimalist file manager for X"
64 HOMEPAGE="http://roland65.free.fr/xfe"
65 SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
70 IUSE="debug nls startup-notification"
71
72 RDEPEND="
73 media-libs/libpng:0
74 x11-libs/fox:1.6[truetype,png]
75 x11-libs/libX11
76 x11-libs/libXft
77 startup-notification? ( x11-libs/startup-notification )
78 "
79 DEPEND="
80 ${RDEPEND}
81 virtual/pkgconfig
82 nls? (
83 dev-util/intltool
84 sys-devel/gettext
85 )
86 "
87
88 DOCS=( AUTHORS BUGS ChangeLog README TODO )
89
90 PATCHES=(
91 "${FILESDIR}"/${PN}-1.32.2-missing_Xlib_h.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 sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die
116 eautoreconf
117 }
118
119 src_configure() {
120 econf \
121 --enable-minimalflags \
122 $(use_enable nls) \
123 $(use_enable startup-notification sn) \
124 $(use_enable debug)
125 }