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.37.ebuild xfe-1.35.ebuild
Date: Wed, 26 Feb 2014 14:37:46
Message-Id: 20140226143740.A5DAB2004C@flycatcher.gentoo.org
1 jer 14/02/26 14:37:40
2
3 Modified: ChangeLog
4 Added: xfe-1.37.ebuild
5 Removed: xfe-1.35.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.96 x11-misc/xfe/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.96&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.96&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/ChangeLog?r1=1.95&r2=1.96
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v
21 retrieving revision 1.95
22 retrieving revision 1.96
23 diff -u -r1.95 -r1.96
24 --- ChangeLog 27 Aug 2013 14:08:53 -0000 1.95
25 +++ ChangeLog 26 Feb 2014 14:37:40 -0000 1.96
26 @@ -1,6 +1,12 @@
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.95 2013/08/27 14:08:53 jer Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.96 2014/02/26 14:37:40 jer Exp $
32 +
33 +*xfe-1.37 (26 Feb 2014)
34 +
35 + 26 Feb 2014; Jeroen Roovers <jer@g.o> -xfe-1.35.ebuild,
36 + +xfe-1.37.ebuild, files/xfe-1.32.2-missing_Xlib_h.patch:
37 + Version bump.
38
39 *xfe-1.35 (27 Aug 2013)
40
41
42
43
44 1.1 x11-misc/xfe/xfe-1.37.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.37.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfe/xfe-1.37.ebuild?rev=1.1&content-type=text/plain
48
49 Index: xfe-1.37.ebuild
50 ===================================================================
51 # Copyright 1999-2014 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.37.ebuild,v 1.1 2014/02/26 14:37:40 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 }