# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/app-arch/zip/zip-2.3-r2.ebuild,v 1.17 2002/12/15 10:44:09 bjb Exp $ DESCRIPTION="Info ZIP (encryption support)" SRC_URI="http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/${PN}23.tar.gz ftp://ftp.icce.rug.nl/infozip/src/zcrypt29.zip" HOMEPAGE="ftp://ftp.freesoftware.com/pub/infozip/Zip.html" SLOT="0" KEYWORDS="x86 ppc sparc alpha" LICENSE="Info-ZIP" src_unpack() { unpack ${A} # enable crypt support by overwriting crypt.* mv -f crypt.h ${S} mv -f crypt.c ${S} cd ${S}/unix cp Makefile Makefile.orig sed -e "s:-O2:${CFLAGS}:" Makefile.orig > Makefile } src_compile() { make -f unix/Makefile generic_gcc || die } src_install() { dobin zip zipcloak zipnote zipsplit doman man/zip.1 dodoc BUGS CHANGES LICENSE MANUAL README TODO WHATSNEW WHERE }