diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-03-13 20:22:26 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-03-13 20:22:26 +0000 |
commit | dd8fc62ce7f9c9bc8621ea31c1c53dc878bfbbcb (patch) | |
tree | 20717690569c8944f42039ca215bd4c76f549789 /x11-misc | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-dd8fc62ce7f9c9bc8621ea31c1c53dc878bfbbcb.tar.gz gentoo-2-dd8fc62ce7f9c9bc8621ea31c1c53dc878bfbbcb.tar.bz2 gentoo-2-dd8fc62ce7f9c9bc8621ea31c1c53dc878bfbbcb.zip |
Version bump for bug 169267, thanks to John <greydruid AT gmail.com> for reporting.
(Portage version: 2.1.2.2)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xfe/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xfe/files/digest-xfe-0.99 | 3 | ||||
-rw-r--r-- | x11-misc/xfe/xfe-0.99.ebuild | 25 |
3 files changed, 35 insertions, 1 deletions
diff --git a/x11-misc/xfe/ChangeLog b/x11-misc/xfe/ChangeLog index 053dbb054a9f..413da7bf71a1 100644 --- a/x11-misc/xfe/ChangeLog +++ b/x11-misc/xfe/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/xfe # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.35 2007/03/01 00:22:33 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.36 2007/03/13 20:22:26 drac Exp $ + +*xfe-0.99 (13 Mar 2007) + + 13 Mar 2007; Samuli Suominen <drac@gentoo.org> +xfe-0.99.ebuild: + Version bump for bug 169267, thanks to John <greydruid AT gmail.com> for + reporting. 01 Mar 2007; Jason Wever <weeve@gentoo.org> xfe-0.88.ebuild: Stable on SPARC wrt bug #168148. diff --git a/x11-misc/xfe/files/digest-xfe-0.99 b/x11-misc/xfe/files/digest-xfe-0.99 new file mode 100644 index 000000000000..4a244e2dad70 --- /dev/null +++ b/x11-misc/xfe/files/digest-xfe-0.99 @@ -0,0 +1,3 @@ +MD5 fb3513a328eec1b38e0d5b2208b42d78 xfe-0.99.tar.gz 2230460 +RMD160 6e187be524a12ecd07924453d099968391a7baae xfe-0.99.tar.gz 2230460 +SHA256 a019f044a7d9e3342f068608e14419c3b1b0ae7a0585d23ebee812525587a59c xfe-0.99.tar.gz 2230460 diff --git a/x11-misc/xfe/xfe-0.99.ebuild b/x11-misc/xfe/xfe-0.99.ebuild new file mode 100644 index 000000000000..dc9c97ff141b --- /dev/null +++ b/x11-misc/xfe/xfe-0.99.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-0.99.ebuild,v 1.1 2007/03/13 20:22:26 drac Exp $ + +DESCRIPTION="MS-Explorer-like minimalist file manager for X" +HOMEPAGE="http://roland65.free.fr/xfe" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="nls" + +DEPEND="=x11-libs/fox-1.6* + nls? ( sys-devel/gettext )" + +src_compile() { + econf $(use_enable nls) + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS BUGS ChangeLog README TODO NEWS +} |