diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-10-14 11:15:26 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-10-14 11:15:26 +0000 |
commit | a8a94bc6bb726587d6c157f44512798a254068b3 (patch) | |
tree | 448d6f799d81869e61f6ddee512e35537eca8cb2 /app-arch | |
parent | major portage update (diff) | |
download | historical-a8a94bc6bb726587d6c157f44512798a254068b3.tar.gz historical-a8a94bc6bb726587d6c157f44512798a254068b3.tar.bz2 historical-a8a94bc6bb726587d6c157f44512798a254068b3.zip |
*** empty log message ***
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/zip/files/digest-zip-2.3 | 1 | ||||
-rw-r--r-- | app-arch/zip/zip-2.3.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-arch/zip/files/digest-zip-2.3 b/app-arch/zip/files/digest-zip-2.3 new file mode 100644 index 000000000000..40d88da84e67 --- /dev/null +++ b/app-arch/zip/files/digest-zip-2.3 @@ -0,0 +1 @@ +MD5 5206a99541f3b0ab90f1baa167392c4f zip23.tar.gz diff --git a/app-arch/zip/zip-2.3.ebuild b/app-arch/zip/zip-2.3.ebuild new file mode 100644 index 000000000000..be5ff486d65e --- /dev/null +++ b/app-arch/zip/zip-2.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-arch/zip/zip-2.3.ebuild,v 1.1 2000/10/14 11:15:26 achim Exp $ + +A=zip23.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Info ZIP" +SRC_URI="ftp://ftp.info-zip.org/pub/infozip/src/${A}" +HOMEPAGE="ftp://ftp.freesoftware.com/pub/infozip/Zip.html" + + +src_unpack() { + unpack ${A} + cd ${S}/unix + cp Makefile Makefile.orig + sed -e "s:-O2:${CFLAGS}:" Makefile.orig > Makefile +} +src_compile() { + + cd ${S} + try make -f unix/Makefile generic_gcc + +} + +src_install () { + + cd ${S} + into /usr + dobin zip zipcloak zipnote zipsplit + doman man/zip.1 + + dodoc BUGS CHANGES LICENSE MANUAL README TODO WHATSNEW WHERE + +} + |