diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-10-02 20:53:23 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-10-02 20:53:23 +0000 |
commit | db7ba6c7fcf0c5b58c10058fb8f7ff6cbef7e90f (patch) | |
tree | f23c5b44b43d28799c0be061a486ef8d55f1a6c5 /x11-misc/xfe | |
parent | Version bump, this includes my patch. (diff) | |
download | gentoo-2-db7ba6c7fcf0c5b58c10058fb8f7ff6cbef7e90f.tar.gz gentoo-2-db7ba6c7fcf0c5b58c10058fb8f7ff6cbef7e90f.tar.bz2 gentoo-2-db7ba6c7fcf0c5b58c10058fb8f7ff6cbef7e90f.zip |
Version bump. Add LINGUAS support.
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xfe')
-rw-r--r-- | x11-misc/xfe/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xfe/xfe-1.33.ebuild | 65 |
2 files changed, 71 insertions, 1 deletions
diff --git a/x11-misc/xfe/ChangeLog b/x11-misc/xfe/ChangeLog index ce6634356c3c..e32592fc2d67 100644 --- a/x11-misc/xfe/ChangeLog +++ b/x11-misc/xfe/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xfe # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.74 2012/05/12 23:38:17 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.75 2012/10/02 20:53:23 jer Exp $ + +*xfe-1.33 (02 Oct 2012) + + 02 Oct 2012; Jeroen Roovers <jer@gentoo.org> +xfe-1.33.ebuild: + Version bump. Add LINGUAS support. *xfe-1.32.5 (12 May 2012) diff --git a/x11-misc/xfe/xfe-1.33.ebuild b/x11-misc/xfe/xfe-1.33.ebuild new file mode 100644 index 000000000000..075bac169614 --- /dev/null +++ b/x11-misc/xfe/xfe-1.33.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.33.ebuild,v 1.1 2012/10/02 20:53:23 jer Exp $ + +EAPI=4 + +inherit base + +DESCRIPTION="MS-Explorer-like minimalist file manager for X" +HOMEPAGE="http://roland65.free.fr/xfe" +SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug nls startup-notification" + +XFELINGUAS=" + 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 + zh_TW +" +for lingua in ${XFELINGUAS}; do + IUSE+=" linguas_${lingua}" +done + +RDEPEND=" + media-libs/libpng:0 + startup-notification? ( x11-libs/startup-notification ) + x11-libs/fox:1.6[truetype,png] + x11-libs/libX11 + x11-libs/libXft +" +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext ) +" + +DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO ) +PATCHES=( "${FILESDIR}"/${PN}-1.32.2-missing_Xlib_h.patch ) + +src_prepare() { + base_src_prepare + cat >po/POTFILES.skip <<-EOF + src/icons.cpp + xfe.desktop.in.in + xfi.desktop.in.in + xfp.desktop.in.in + xfv.desktop.in.in + xfw.desktop.in.in + EOF + + local lingua + for lingua in ${XFELINGUAS}; do + if ! use linguas_${lingua}; then + sed -i po/LINGUAS -e "s|${lingua}||g" || die + fi + done +} + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_enable startup-notification sn) \ + $(use_enable debug) +} |