diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-10-29 04:15:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-10-29 04:15:52 +0000 |
commit | a4112e095b640c48feaa9ea352eb240b512ae8a0 (patch) | |
tree | 35afd28fefb53466f69680a0dcec48afe9286c8f /app-arch/unace | |
parent | bah (diff) | |
download | gentoo-2-a4112e095b640c48feaa9ea352eb240b512ae8a0.tar.gz gentoo-2-a4112e095b640c48feaa9ea352eb240b512ae8a0.tar.bz2 gentoo-2-a4112e095b640c48feaa9ea352eb240b512ae8a0.zip |
Added per #9818
Diffstat (limited to 'app-arch/unace')
-rw-r--r-- | app-arch/unace/ChangeLog | 12 | ||||
-rw-r--r-- | app-arch/unace/files/digest-unace-1.2b | 1 | ||||
-rw-r--r-- | app-arch/unace/unace-1.2b.ebuild | 31 |
3 files changed, 39 insertions, 5 deletions
diff --git a/app-arch/unace/ChangeLog b/app-arch/unace/ChangeLog index 360406d19dc4..5adba4aa42ed 100644 --- a/app-arch/unace/ChangeLog +++ b/app-arch/unace/ChangeLog @@ -1,19 +1,21 @@ # ChangeLog for app-arch/unace # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-arch/unace/ChangeLog,v 1.3 2002/09/02 01:49:58 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unace/ChangeLog,v 1.4 2002/10/29 04:15:52 vapier Exp $ -*unace-2.0.4 (4 June 2002) +*unace-1.2b (28 Oct 2002) - 1 Aug 2002; Ryan Phillips <rphillips@gentoo.org> : + 28 Oct 2002; Mike Frysinger <vapier@gentoo.org> : + Added per #9818 + +*unace-2.0.4 (04 Jun 2002) + 1 Aug 2002; Ryan Phillips <rphillips@gentoo.org> : Executable install into /opt/bin 14 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> : - Added ppc keyword 4 June 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/unace/files/digest-unace-1.2b b/app-arch/unace/files/digest-unace-1.2b new file mode 100644 index 000000000000..a42e0a0aeb58 --- /dev/null +++ b/app-arch/unace/files/digest-unace-1.2b @@ -0,0 +1 @@ +MD5 84cb27bc330ee17410c7ab6e669b6f72 unace-1.2b.tar.gz 20784 diff --git a/app-arch/unace/unace-1.2b.ebuild b/app-arch/unace/unace-1.2b.ebuild new file mode 100644 index 000000000000..873946f04977 --- /dev/null +++ b/app-arch/unace/unace-1.2b.ebuild @@ -0,0 +1,31 @@ +S="${WORKDIR}/${PN}" +DESCRIPTION="ACE unarchiver" +SRC_URI="http://wilma.vub.ac.be/~pdewacht/${P}.tar.gz" +HOMEPAGE="http://www.winace.com/" + +SLOT="1" +KEYWORDS="x86" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S} + cp unix/makefile . + cp unix/gccmaked . +} + +src_compile() { + sed -e "s/^CFLAGS = -O.*/CFLAGS = -Wall ${CFLAGS}/g" \ + -e "s/-DCASEINSENSE//g" \ + < makefile > makefile.new + mv -f makefile.new makefile + + emake dep + emake +} + +src_install() { + dobin unace + dodoc readme.txt changes.log +} |