summaryrefslogtreecommitdiff
path: root/archivers/unzip/Makefile
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>1998-12-30 04:06:35 +0000
committertv <tv@pkgsrc.org>1998-12-30 04:06:35 +0000
commit4b21cf58fc31d4d62537338e3d0aa6a2cadc02fd (patch)
treec4360cc0f64c6eaad6c8238d63af8fc7ec4be89c /archivers/unzip/Makefile
parent664c3f2678c5b22950c3fe5ab15fdf4a97eacc12 (diff)
downloadpkgsrc-4b21cf58fc31d4d62537338e3d0aa6a2cadc02fd.tar.gz
OK, bring it back to 5.40, but this time don't use libz -- use the
compression routines shipped with unzip.
Diffstat (limited to 'archivers/unzip/Makefile')
-rw-r--r--archivers/unzip/Makefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/archivers/unzip/Makefile b/archivers/unzip/Makefile
index 209952fff61..4deab844a42 100644
--- a/archivers/unzip/Makefile
+++ b/archivers/unzip/Makefile
@@ -1,26 +1,25 @@
-# $NetBSD: Makefile,v 1.15 1998/12/30 03:20:50 tv Exp $
+# $NetBSD: Makefile,v 1.16 1998/12/30 04:06:35 tv Exp $
# FreeBSD Id: Makefile,v 1.14 1997/06/19 05:30:04 ache Exp
#
-DISTNAME= unzip-5.32
+DISTNAME= unzip-5.40
CATEGORIES= archivers
MASTER_SITES= ftp://ftp.cdrom.com/pub/infozip/src/ \
ftp://ftp.icce.rug.nl/infozip/src/
-DISTFILES= unzip532.tar.gz
+DISTFILES= unzip540.tar.gz
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.cdrom.com/pub/infozip/
MAKEFILE= unix/Makefile
ALL_TARGET= unzips
-MAKE_FLAGS= CF="${CFLAGS} -I. -DBSD -Dunix -DUSE_UNSHRINK -DUSE_ZLIB" \
- LF2=-lz
+MAKE_FLAGS= CF="${CFLAGS} -I. -DBSD -DUNIX -Dunix -DUSE_UNSHRINK"
.include "../../mk/bsd.prefs.mk"
.if defined(ZIP_ENCRYPTION)
-DISTFILES+= zcrypt27.zip
-EXTRACT_ONLY= unzip532.tar.gz
+DISTFILES+= zcrypt28.zip
+EXTRACT_ONLY= unzip540.tar.gz
RESTRICTED= crypto
MIRROR_DISTFILE=no
@@ -29,7 +28,7 @@ pre-build:
@cd ${WRKSRC}; test -f README.CR || ( \
${ECHO} '*** Building stage 1 of 2--unzip without encryption.' && \
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} unzip && \
- ./unzip -qo ${DISTDIR}/zcrypt27.zip && \
+ ./unzip -qo ${DISTDIR}/zcrypt28.zip && \
${RM} -f *.o unzip )
@${ECHO} '*** Building stage 2 of 2--unzip with encryption.'
.endif