diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-01-26 23:21:44 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-01-26 23:21:44 +0000 |
commit | 2c5889f538c9fdbffc03acaa1bf753387711f477 (patch) | |
tree | 515da91ef2f03b54ce31d6619367ed359fb76d4a /app-misc/rox | |
parent | changed ppc to stable (diff) | |
download | gentoo-2-2c5889f538c9fdbffc03acaa1bf753387711f477.tar.gz gentoo-2-2c5889f538c9fdbffc03acaa1bf753387711f477.tar.bz2 gentoo-2-2c5889f538c9fdbffc03acaa1bf753387711f477.zip |
version bump
Diffstat (limited to 'app-misc/rox')
-rw-r--r-- | app-misc/rox/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/rox/files/digest-rox-1.3.6 | 1 | ||||
-rw-r--r-- | app-misc/rox/rox-1.3.6.ebuild | 50 |
3 files changed, 57 insertions, 1 deletions
diff --git a/app-misc/rox/ChangeLog b/app-misc/rox/ChangeLog index 9c44a768224d..679d2f080aeb 100644 --- a/app-misc/rox/ChangeLog +++ b/app-misc/rox/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/rox # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/ChangeLog,v 1.9 2002/12/08 14:26:07 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/ChangeLog,v 1.10 2003/01/26 23:21:43 bcowan Exp $ + +*rox-1.3.6 (26 Jan 2003) + 26 Jan 2003; Brad Cowan <bcowan@gentoo.org> rox-1.3.6.ebuild, + files/digest-rox-1.3.6: + Version bump. *rox-1.3.5 (09 Dec 2002) 09 Dec 2002; Brad Cowan <bcowan@gentoo.org> rox-1.3.5.ebuild, diff --git a/app-misc/rox/files/digest-rox-1.3.6 b/app-misc/rox/files/digest-rox-1.3.6 new file mode 100644 index 000000000000..75056855edb4 --- /dev/null +++ b/app-misc/rox/files/digest-rox-1.3.6 @@ -0,0 +1 @@ +MD5 6dfaaf5699dee51319338543508e5d5a rox-1.3.6.tgz 1314201 diff --git a/app-misc/rox/rox-1.3.6.ebuild b/app-misc/rox/rox-1.3.6.ebuild new file mode 100644 index 000000000000..eaf5994750b3 --- /dev/null +++ b/app-misc/rox/rox-1.3.6.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2002 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.6.ebuild,v 1.1 2003/01/26 23:21:43 bcowan Exp $ + +IUSE="" + +S=${WORKDIR}/${P} + +inherit eutils +EPATCH_SOURCE="${FILESDIR}" + +DESCRIPTION="ROX-Filer is a 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" +#RDEPEND="" + +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 +} |