diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-10-21 17:33:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-10-21 17:33:10 +0000 |
commit | a33e2d94004243be128e9f11349fe7ea7d92a12b (patch) | |
tree | 8d820eec882f3a40eb716ce09d5a958a4a155249 /app-arch/unzip | |
parent | New flash version per #9435 (diff) | |
download | gentoo-2-a33e2d94004243be128e9f11349fe7ea7d92a12b.tar.gz gentoo-2-a33e2d94004243be128e9f11349fe7ea7d92a12b.tar.bz2 gentoo-2-a33e2d94004243be128e9f11349fe7ea7d92a12b.zip |
added symlink for zipinfo per #9425
Diffstat (limited to 'app-arch/unzip')
-rw-r--r-- | app-arch/unzip/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/unzip/files/digest-unzip-5.50-r1 | 1 | ||||
-rw-r--r-- | app-arch/unzip/unzip-5.50-r1.ebuild | 32 |
3 files changed, 39 insertions, 1 deletions
diff --git a/app-arch/unzip/ChangeLog b/app-arch/unzip/ChangeLog index a87da88c8287..97b8c8255338 100644 --- a/app-arch/unzip/ChangeLog +++ b/app-arch/unzip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/unzip # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.6 2002/10/01 10:20:12 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.7 2002/10/21 17:33:10 vapier Exp $ + +*unzip-5.50-r1 (21 Oct 2002) + + 21 Oct 2002; Mike Frysinger <vapier@gentoo.org> : + Added a symlink for zipinfo per #9425 *unzip-5.50 (01 Oct 2002) diff --git a/app-arch/unzip/files/digest-unzip-5.50-r1 b/app-arch/unzip/files/digest-unzip-5.50-r1 new file mode 100644 index 000000000000..4bb9fb3d4363 --- /dev/null +++ b/app-arch/unzip/files/digest-unzip-5.50-r1 @@ -0,0 +1 @@ +MD5 798592d62e37f92571184236947122ed unzip550.tar.gz 1068662 diff --git a/app-arch/unzip/unzip-5.50-r1.ebuild b/app-arch/unzip/unzip-5.50-r1.ebuild new file mode 100644 index 000000000000..6edc048f5aaa --- /dev/null +++ b/app-arch/unzip/unzip-5.50-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-5.50-r1.ebuild,v 1.1 2002/10/21 17:33:10 vapier Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Unzipper for pkzip-compressed files" +SRC_URI="ftp://ftp.info-zip.org/pub/infozip/src/${PN}${PV/.}.tar.gz" +HOMEPAGE="ftp://ftp.info-zip.org/pub/infozip/UnZip.html" + +SLOT="0" +LICENSE="Info-ZIP" +KEYWORDS="x86 alpha" + +DEPEND="virtual/glibc" + +src_compile() { + cp unix/Makefile unix/Makefile.orig + sed -e "s:-O3:${CFLAGS}:" unix/Makefile.orig > unix/Makefile + + use x86 \ + && TARGET=linux \ + || TARGET=linux_noasm + + make -f unix/Makefile $TARGET || die +} + +src_install() { + dobin unzip funzip unzipsfx unix/zipgrep + dosym /usr/bin/unzip /usr/bin/zipinfo + doman man/*.1 + dodoc BUGS COPYING.old History* LICENSE README ToDo WHERE +} |