diff options
author | 2003-05-05 05:16:37 +0000 | |
---|---|---|
committer | 2003-05-05 05:16:37 +0000 | |
commit | 46fd2a97e5516edf4e3dfcb5f7e07b98134947c2 (patch) | |
tree | 54298810be3ca60a3da0b5bca1944bd9e86dfceb /app-misc | |
parent | version bump (diff) | |
download | historical-46fd2a97e5516edf4e3dfcb5f7e07b98134947c2.tar.gz historical-46fd2a97e5516edf4e3dfcb5f7e07b98134947c2.tar.bz2 historical-46fd2a97e5516edf4e3dfcb5f7e07b98134947c2.zip |
version bump
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/rox/ChangeLog | 11 | ||||
-rw-r--r-- | app-misc/rox/files/digest-rox-1.3.8 | 1 | ||||
-rw-r--r-- | app-misc/rox/rox-1.3.8.ebuild | 44 |
3 files changed, 51 insertions, 5 deletions
diff --git a/app-misc/rox/ChangeLog b/app-misc/rox/ChangeLog index 9564ec7af264..e5887770333b 100644 --- a/app-misc/rox/ChangeLog +++ b/app-misc/rox/ChangeLog @@ -1,12 +1,13 @@ # ChangeLog for app-misc/rox # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/ChangeLog,v 1.14 2003/04/12 00:18:41 vladimir Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/ChangeLog,v 1.15 2003/05/05 05:16:37 bcowan Exp $ -*rox-1.3.7 (24 Mar 2003) - - 11 Apr 2003; Graham Forest <vladimir@gentoo.org> rox-1.3.7.ebuild: - set ~ppc in keywords +*rox-1.3.8 (5 May 2003) + 5 May 2003; Brad Cowan <bcowan@gentoo.org> rox-1.3.8.ebuild, + files/digest-rox-1.3.8: + Version bump. +*rox-1.3.7 (24 Mar 2003) 24 Mar 2003; Brad Cowan <bcowan@gentoo.org> rox-1.3.7.ebuild, files/digest-rox-1.3.7: Version bump. diff --git a/app-misc/rox/files/digest-rox-1.3.8 b/app-misc/rox/files/digest-rox-1.3.8 new file mode 100644 index 000000000000..806226e7c3be --- /dev/null +++ b/app-misc/rox/files/digest-rox-1.3.8 @@ -0,0 +1 @@ +MD5 34bacf583ed0beed87391f27987ac88e rox-1.3.8.tgz 1466605 diff --git a/app-misc/rox/rox-1.3.8.ebuild b/app-misc/rox/rox-1.3.8.ebuild new file mode 100644 index 000000000000..c59b43200499 --- /dev/null +++ b/app-misc/rox/rox-1.3.8.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/rox-1.3.8.ebuild,v 1.1 2003/05/05 05:16:37 bcowan Exp $ + +inherit eutils +EPATCH_SOURCE="${FILESDIR}" + +DESCRIPTION="fast and powerful graphical file manager" +HOMEPAGE="http://rox.sourceforge.net/" +SRC_URI="mirror://sourceforge/rox/${P}.tgz" + +LICENSE="GPL-2" +SLOT="1.3" +KEYWORDS="~x86" + +DEPEND=">=x11-libs/gtk+-2.0.5 + >=dev-libs/glib-2.0.4 + >=dev-libs/libxml2-2.4.23 + >=x11-misc/shared-mime-info-0.9" + +src_unpack() { + unpack ${A} + cd ${S} + epatch +} + +src_install() { + cd ${S}/Choices + + dodir /usr/share/Choices + cp -rf MIME-icons/ ${D}/usr/share/Choices/ + cp -rf MIME-types/ ${D}/usr/share/Choices/ + + cd ${S} + doman rox.1 + + dodir /usr/bin + cp -rf ROX-Filer/ ${D}/usr/share/ + ${D}/usr/share/ROX-Filer/AppRun --compile + (cd ${D}/usr/share/ROX-Filer/src; make clean) > /dev/null + echo "#!/bin/sh" > "${D}/usr/bin/rox" + echo "exec /usr/share/ROX-Filer/AppRun \"\$@\"" >> "${D}/usr/bin/rox" + chmod a+x ${D}/usr/bin/rox +} |