diff options
-rw-r--r-- | app-arch/unzip/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/unzip/files/digest-unzip-5.52 | 1 | ||||
-rw-r--r-- | app-arch/unzip/unzip-5.52.ebuild | 42 |
3 files changed, 49 insertions, 1 deletions
diff --git a/app-arch/unzip/ChangeLog b/app-arch/unzip/ChangeLog index 5ffa82306425..dc224ab06cb0 100644 --- a/app-arch/unzip/ChangeLog +++ b/app-arch/unzip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/unzip # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.26 2005/01/01 12:01:18 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.27 2005/03/13 08:11:00 vapier Exp $ + +*unzip-5.52 (13 Mar 2005) + + 13 Mar 2005; Mike Frysinger <vapier@gentoo.org> +unzip-5.52.ebuild: + Version bump #84914 by Kenyon Ralph. 26 Jun 2004; Seemant Kulleen <seemant@gentoo.org> unzip-5.50-r2.ebuild: my mistake diff --git a/app-arch/unzip/files/digest-unzip-5.52 b/app-arch/unzip/files/digest-unzip-5.52 new file mode 100644 index 000000000000..1115e1acf992 --- /dev/null +++ b/app-arch/unzip/files/digest-unzip-5.52 @@ -0,0 +1 @@ +MD5 9d23919999d6eac9217d1f41472034a9 unzip552.tar.gz 1140291 diff --git a/app-arch/unzip/unzip-5.52.ebuild b/app-arch/unzip/unzip-5.52.ebuild new file mode 100644 index 000000000000..27983c7ec996 --- /dev/null +++ b/app-arch/unzip/unzip-5.52.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-5.52.ebuild,v 1.1 2005/03/13 08:11:00 vapier Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="Unzipper for pkzip-compressed files" +HOMEPAGE="ftp://ftp.info-zip.org/pub/infozip/UnZip.html" +SRC_URI="ftp://ftp.info-zip.org/pub/infozip/src/${PN}${PV/.}.tar.gz" + +LICENSE="Info-ZIP" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e "s:-O3:${CFLAGS}:" \ + -e "s:CC=gcc :CC=$(tc-getCC) :" \ + -e "s:LD=gcc :LD=$(tc-getCC) :" \ + -e "s:-O :${CFLAGS} :" \ + unix/Makefile \ + || die "sed unix/Makefile failed" +} + +src_compile() { + use x86 \ + && TARGET=linux \ + || TARGET=linux_noasm + emake -f unix/Makefile ${TARGET} || die "emake failed" +} + +src_install() { + dobin unzip funzip unzipsfx unix/zipgrep || die "dobin failed" + dosym unzip /usr/bin/zipinfo + doman man/*.1 + dodoc BUGS History* README ToDo WHERE +} |