summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce A. Locke <blocke@gentoo.org>2002-02-28 07:32:39 +0000
committerBruce A. Locke <blocke@gentoo.org>2002-02-28 07:32:39 +0000
commit22ac31ad2f8c02f3c46737d7737611a7699a475b (patch)
treee8320506e38b4d76a26aaa682472772b68888cc1 /app-misc/rox
parentadded xmms-1.2.6-r2 (contributed by spider) and removed older ebuilds (diff)
downloadgentoo-2-22ac31ad2f8c02f3c46737d7737611a7699a475b.tar.gz
gentoo-2-22ac31ad2f8c02f3c46737d7737611a7699a475b.tar.bz2
gentoo-2-22ac31ad2f8c02f3c46737d7737611a7699a475b.zip
added dev-libs/libxml2 as a dependency, closing #871
Diffstat (limited to 'app-misc/rox')
-rw-r--r--app-misc/rox/ChangeLog15
-rw-r--r--app-misc/rox/files/digest-rox-1.1.8-r22
-rw-r--r--app-misc/rox/rox-1.1.8-r2.ebuild39
3 files changed, 47 insertions, 9 deletions
diff --git a/app-misc/rox/ChangeLog b/app-misc/rox/ChangeLog
index 0d73d62d2167..bc1261702eca 100644
--- a/app-misc/rox/ChangeLog
+++ b/app-misc/rox/ChangeLog
@@ -1,13 +1,10 @@
# 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.1 2002/02/01 21:53:08 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/rox/ChangeLog,v 1.2 2002/02/28 07:32:39 blocke Exp $
-*rox-1.1.8 (1 Feb 2002)
+*rox-1.1.8-r1 (28 Feb 2002)
+
+ 28 Feb 2002; Bruce A. Locke <blocke@gentoo.org> ChangeLog :
+
+ Added libxml2 as a dependency
- 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
-
- Added initial ChangeLog which should be updated whenever the package is
- updated in any way. This changelog is targetted to users. This means that the
- comments should well explained and written in clean English. The details about
- writing correct changelogs are explained in the skel.ChangeLog file which you
- can find in the root directory of the portage repository.
diff --git a/app-misc/rox/files/digest-rox-1.1.8-r2 b/app-misc/rox/files/digest-rox-1.1.8-r2
new file mode 100644
index 000000000000..b50dcfe410e7
--- /dev/null
+++ b/app-misc/rox/files/digest-rox-1.1.8-r2
@@ -0,0 +1,2 @@
+MD5 7308e0f7b5b0a04c5ad9cb0f11504c3a rox-1.1.8.tgz 773558
+MD5 3147cfa3ebf18dbe84e8dce4f8d89951 rox-base-1.0.1.tgz 151699
diff --git a/app-misc/rox/rox-1.1.8-r2.ebuild b/app-misc/rox/rox-1.1.8-r2.ebuild
new file mode 100644
index 000000000000..83b86e1e3a6b
--- /dev/null
+++ b/app-misc/rox/rox-1.1.8-r2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2001 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Bart Verwilst <verwilst@gentoo.org>
+# /home/cvsroot/gentoo-x86/app-misc/rox/rox-1.1.8.ebuild $
+
+HOMEPAGE="http://rox.sourceforge.net"
+DESCRIPTION="ROX-Filer is a fast and powerful graphical file manager"
+
+S=${WORKDIR}/${P}
+SRC_URI="http://prdownloads.sourceforge.net/rox/rox-base-1.0.1.tgz
+ http://prdownloads.sourceforge.net/rox/${P}.tgz"
+
+DEPEND="virtual/glibc
+ >=x11-base/xfree-4.0.3
+ >=x11-libs/gtk+-1.2.10
+ >=media-libs/gdk-pixbuf-0.13
+ dev-libs/libxml2"
+
+RDEPEND="${DEPEND}"
+
+src_install() {
+
+ cd ${WORKDIR}/rox-base-1.0.1/Choices
+ mkdir -p ${D}/usr/share/Choices
+ cp -rf MIME-icons/ ${D}/usr/share/Choices/
+ cp -rf MIME-info/ ${D}/usr/share/Choices/
+ cp -rf MIME-types/ ${D}/usr/share/Choices/
+
+ cd ${WORKDIR}/${P}
+ doman rox.1
+ mkdir -p ${D}/usr/share/rox
+ mkdir -p ${D}/usr/bin
+ cp -rf ROX-Filer/ ${D}/usr/share/
+ ${D}/usr/share/ROX-Filer/AppRun --compile
+ 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
+
+}