diff options
author | wiz <wiz@pkgsrc.org> | 2005-08-03 18:54:31 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-08-03 18:54:31 +0000 |
commit | a6b7dfd2bbff6a5bd7fef9d4dcaf2371f69c2e12 (patch) | |
tree | b07d4fe57c2feac7fda8de81a07183a7b7fe8ff3 /archivers/zip/Makefile | |
parent | 2b5fc58b72d6f5b68e80a2c01f0696a64b07d395 (diff) | |
download | pkgsrc-a6b7dfd2bbff6a5bd7fef9d4dcaf2371f69c2e12.tar.gz |
Update to 2.31:
New things in Zip 2.31
- Crypt now part of source distribution (see Readme.cr)
- Bug fixes:
- Debian patch 001 - Converted quoted strings
- Debian patch 002 - Makefile changes
- Debian patch 003 - Build changes
- Debian patch 004 - Changes to unix/configure
- Debian patch 005 - Fix for FNMAX path bug
- Split VMS -V into -V and -VV (see Manual)
- New VC6 project files thanks to Cosmin
- AtheOS port (thanks to Ruslan Nickolaev)
- Add api.c kluge for zip32.dll to support Visual Basic
- Binary detection changed from 20% binary to new algorithm
that should better detect word processing files as binary
and should accept UTF-8 files as text. This flags the file
in the archive as TEXT or BINARY for use by UnZip for line
end conversion (see proginfo/txtvsbin.txt)
- License update
- DJGPP fixes
- Many Makefile updates
- Fixes to ZipSplit, ZipNotes, and ZipCloak
Diffstat (limited to 'archivers/zip/Makefile')
-rw-r--r-- | archivers/zip/Makefile | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/archivers/zip/Makefile b/archivers/zip/Makefile index 68670511ffc..e107fedaede 100644 --- a/archivers/zip/Makefile +++ b/archivers/zip/Makefile @@ -1,22 +1,23 @@ -# $NetBSD: Makefile,v 1.44 2005/05/24 13:25:22 rillig Exp $ +# $NetBSD: Makefile,v 1.45 2005/08/03 18:54:31 wiz Exp $ -DISTNAME= zip-2.3 -PKGREVISION= 3 +DISTNAME= zip231 +PKGNAME= zip-2.31 CATEGORIES= archivers -MASTER_SITES= ftp://ftp.info-zip.org/pub/infozip/src/ -DISTFILES= zip23.tar.gz zcrypt29.zip +MASTER_SITES= ftp://ftp.info-zip.org/pub/infozip/src/ \ + http://ftp.info-zip.org/pub/infozip/src/ \ + http://sunsite.cnlab-switch.ch/ftp/mirror/infozip/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/infozip/src/ \ + http://www.mirrorservice.org/sites/ftp.info-zip.org/pub/infozip/src/ MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.info-zip.org/pub/infozip/Zip.html COMMENT= Create/update ZIP files compatible with pkzip -BUILD_DEPENDS= unzip-[0-9]*:../../archivers/unzip - PKG_INSTALLATION_TYPES= overwrite pkgviews -EXTRACT_ONLY= zip23.tar.gz MAKEFILE= unix/Makefile MAKE_FLAGS= LOCAL_ZIP="${CFLAGS}" LFLAGS1="${_STRIPFLAG_CC}" +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} .include "../../mk/bsd.prefs.mk" @@ -39,9 +40,6 @@ CFLAGS+= -DHAVE_DIRENT_H INSTALLATION_DIRS= bin man/man1 -post-extract: - @cd ${WRKSRC} && ${LOCALBASE}/bin/unzip -qo ${DISTDIR}/zcrypt29.zip - do-install: cd ${WRKSRC} && \ ${INSTALL_PROGRAM} zip zipnote zipsplit zipcloak ${PREFIX}/bin |