diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-07-13 14:23:15 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-07-13 14:23:15 +0000 |
commit | 6132db1f55af72435337e89a802e64e45e9f52a6 (patch) | |
tree | bf8d93ccb1d2d5be7919dd76da9c6ffc6ac1df95 /app-misc/rox | |
parent | Bumped to new version; repoman QA issues. (diff) | |
download | historical-6132db1f55af72435337e89a802e64e45e9f52a6.tar.gz historical-6132db1f55af72435337e89a802e64e45e9f52a6.tar.bz2 historical-6132db1f55af72435337e89a802e64e45e9f52a6.zip |
New version.
Diffstat (limited to 'app-misc/rox')
-rw-r--r-- | app-misc/rox/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/rox/files/digest-rox-1.3.2 | 1 | ||||
-rw-r--r-- | app-misc/rox/rox-1.3.2.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/app-misc/rox/ChangeLog b/app-misc/rox/ChangeLog index fc161ee2705d..06c4e982076d 100644 --- a/app-misc/rox/ChangeLog +++ b/app-misc/rox/ChangeLog @@ -1,6 +1,13 @@ # 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.5 2002/07/11 03:10:27 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/ChangeLog,v 1.6 2002/07/13 14:23:14 stroke Exp $ + +*rox-1.3.2 (13 Jul 2002) + + 13 Jul 2002; Gabriele Giorgetti <stroke@gentoo.org> rox-1.3.2.ebuild : + + New version, ebuild submitted by Riccardo Persichetti <ricpersi@libero.it> + Closes bug #4944 *rox-1.2.1 (10 Jul 2002) diff --git a/app-misc/rox/files/digest-rox-1.3.2 b/app-misc/rox/files/digest-rox-1.3.2 new file mode 100644 index 000000000000..18c89bac32cd --- /dev/null +++ b/app-misc/rox/files/digest-rox-1.3.2 @@ -0,0 +1 @@ +MD5 b28bb4bb25f6dc4a0da0cc462c8ee04c rox-1.3.2.tgz 1134544 diff --git a/app-misc/rox/rox-1.3.2.ebuild b/app-misc/rox/rox-1.3.2.ebuild new file mode 100644 index 000000000000..e8e1b0638be3 --- /dev/null +++ b/app-misc/rox/rox-1.3.2.ebuild @@ -0,0 +1,46 @@ +# 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.2.ebuild,v 1.1 2002/07/13 14:23:15 stroke Exp $ + +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="0" +KEYWORDS="x86" + +DEPEND=">=x11-base/xfree-4.0.3 + >=dev-libs/glib-2.0.4 + >=x11-libs/gtk+-2.0.5 + >=dev-libs/libxml2-2.4.23 + >=x11-misc/shared-mime-info-0.7" + +RDEPEND="${DEPEND}" + + +S=${WORKDIR}/${P} + +src_install() { + + # libxml2 header fix + CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml -I/usr/include/libxml2" + + cd ${WORKDIR}/${P}/Choices + mkdir -p ${D}/usr/share/Choices + cp -rf MIME-icons/ ${D}/usr/share/Choices/ + cp -rf MIME-types/ ${D}/usr/share/Choices/ + + cd ${WORKDIR}/${P} + doman rox.1 + + mkdir -p ${D}/usr/share/mime/mime-info + cp rox.mimeinfo ${D}/usr/share/mime/mime-info + + mkdir -p ${D}/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 +} |