diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-11-04 21:37:40 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-11-04 21:37:40 +0000 |
commit | ef9c6e214f0900155f2a016705e97c14c9a47fdc (patch) | |
tree | 511412125dcab464eb9319d208929153fb8e78aa /app-arch/unarj | |
parent | Removed moved files (diff) | |
download | historical-ef9c6e214f0900155f2a016705e97c14c9a47fdc.tar.gz historical-ef9c6e214f0900155f2a016705e97c14c9a47fdc.tar.bz2 historical-ef9c6e214f0900155f2a016705e97c14c9a47fdc.zip |
Updated ebuild to install unarj in /usr/bin instead of a non-executable
file in /opt/bin. Also added IUSE=""
Diffstat (limited to 'app-arch/unarj')
-rw-r--r-- | app-arch/unarj/ChangeLog | 10 | ||||
-rw-r--r-- | app-arch/unarj/files/digest-unarj-2.63a-r1 | 1 | ||||
-rw-r--r-- | app-arch/unarj/unarj-2.63a-r1.ebuild | 24 |
3 files changed, 32 insertions, 3 deletions
diff --git a/app-arch/unarj/ChangeLog b/app-arch/unarj/ChangeLog index c2fb6e0ce335..6fd3ef81ed34 100644 --- a/app-arch/unarj/ChangeLog +++ b/app-arch/unarj/ChangeLog @@ -1,15 +1,19 @@ # ChangeLog for app-arch/unarj # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-arch/unarj/ChangeLog,v 1.2 2002/08/14 08:25:52 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unarj/ChangeLog,v 1.3 2002/11/04 21:37:40 raker Exp $ + +*unarj-2.63a (04 Nov 2002) + + 04 Nov 2002; Nick Hadaway <raker@gentoo.org> unarj-2.63a-r1.ebuild, + files/digest-unarj-2.63a-r1 : + Added IUSE="" and changed ebuild so unarj is installed in /usr/bin. *unarj-2.63a (19 Jul 2002) 14 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> : - Added ppc keyword 19 Jul 2002; Ryan Phillips <rphillips@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 diff --git a/app-arch/unarj/files/digest-unarj-2.63a-r1 b/app-arch/unarj/files/digest-unarj-2.63a-r1 new file mode 100644 index 000000000000..ea9a48b49669 --- /dev/null +++ b/app-arch/unarj/files/digest-unarj-2.63a-r1 @@ -0,0 +1 @@ +MD5 a83d139c245f911f22cb1b611ec9768f unarj-2.63a.tar.gz 24979 diff --git a/app-arch/unarj/unarj-2.63a-r1.ebuild b/app-arch/unarj/unarj-2.63a-r1.ebuild new file mode 100644 index 000000000000..aa908730ee0d --- /dev/null +++ b/app-arch/unarj/unarj-2.63a-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/unarj/unarj-2.63a-r1.ebuild,v 1.1 2002/11/04 21:37:40 raker Exp $ + +IUSE="" + +DESCRIPTION="Utility for opening arj archives." +HOMEPAGE="http://ibiblio.org/pub/Linux/utils/compress/" +SRC_URI="http://ibiblio.org/pub/Linux/utils/compress/${P}.tar.gz" + +SLOT="0" +LICENSE="arj" +KEYWORDS="x86 ppc sparc sparc64" + +DEPEND=">=sys-apps/baselayout-1.8.0" + +src_compile () { + emake || die +} + +src_install () { + dobin unarj + dodoc unarj.txt technote.txt readme.txt +} |