diff options
author | Ben Lutgens <blutgens@gentoo.org> | 2001-08-27 03:02:16 +0000 |
---|---|---|
committer | Ben Lutgens <blutgens@gentoo.org> | 2001-08-27 03:02:16 +0000 |
commit | db5f42e0934a80beb9e49617936cd499c4fe057d (patch) | |
tree | f68e4f2c007018d3b19b3efdf775b84c7c684573 /app-misc | |
parent | try -> die (diff) | |
download | historical-db5f42e0934a80beb9e49617936cd499c4fe057d.tar.gz historical-db5f42e0934a80beb9e49617936cd499c4fe057d.tar.bz2 historical-db5f42e0934a80beb9e49617936cd499c4fe057d.zip |
motif based filemanager for X.
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/xplore/files/digest-xplore-1.1 | 1 | ||||
-rw-r--r-- | app-misc/xplore/xplore-1.1.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/app-misc/xplore/files/digest-xplore-1.1 b/app-misc/xplore/files/digest-xplore-1.1 new file mode 100644 index 000000000000..e47ad0be3315 --- /dev/null +++ b/app-misc/xplore/files/digest-xplore-1.1 @@ -0,0 +1 @@ +MD5 b3219824ad93279302ce890ac5038389 xplore-1.1.tar.bz2 diff --git a/app-misc/xplore/xplore-1.1.ebuild b/app-misc/xplore/xplore-1.1.ebuild new file mode 100644 index 000000000000..9e780ca0a790 --- /dev/null +++ b/app-misc/xplore/xplore-1.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <lamer@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-misc/xplore/xplore-1.1.ebuild,v 1.1 2001/08/27 03:02:16 lamer Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="motif file manager for X." +SRC_URI="http://www.musikwissenschaft.uni-mainz.de/~ag/xplore/${P}.tar.bz2" +HOMEPAGE="http://www.musikwissenschaft.uni-mainz.de/~ag/xplore/" +DEPEND="virtual/x11" + +#RDEPEND="" + +src_compile() { + + xmkmf -a || die + make || die + +} + +src_install () { + + # try make prefix=${D}/usr install + + try make DESTDIR=${D} install + dodoc README INSTALL ChangeLog +} + |