summaryrefslogtreecommitdiff
path: root/archivers/zip/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2021-09-30zip: Support MKPIE on i386. Move compiler bug hacks to hacks.mk.nia1-4/+6
2015-08-28patch to let SunOS, other than sunpro compilers, use assembler.richard1-3/+3
The problem is more the ilk of the cpp installed.. bump PKGREVISION
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2012-09-11"user-destdir" is default these daysasau1-2/+1
2012-09-07Fix compiler option and disable optimizations from configureadam1-3/+3
2012-03-09Assembler code results in undefined symbols on SunOS in general, too.fhajny1-2/+2
2011-11-22Fix 404 homepage url with reachable one. Reported by noztos on twitter.enami1-2/+2
2010-01-21Added LICENSE information for zip/unzip. The license is not approved byheinz1-1/+2
OSI but it is derived from BSD so I added it to the acceptable set of licenses.
2009-11-01Enable unicode support. Bump PKGREVISION.wiz1-2/+3
2009-09-18Allow assembler to be disabled completely and do so with sunpro.sketch1-1/+5
2009-08-30Patch zip's Makefile to pass LDFLAGS at link time to include Pkgsrc's run timedsainty1-1/+2
link path. Required for finding non-builtin bzip2 library. Bump PKGREVISION, since the problem only comes to light at run time.
2009-08-26Update to 3.0, add dependency on bzip2. New features in 3.0:wiz1-4/+4
- Large files. Support for files and archives greater than 2 GB using large file I/O and the Zip64 extensions. Also can now have more than 64K entries in an archive. - Split archives. Zip now supports split archives, zip archives split into a set of files that can then be stored on removable media for instance. - Unicode. If Unicode support is enabled and supported on the system Zip is run on, Zip now can read paths not in the current character set and store those paths in portable UTF-8 format. These Unicode paths can then be used to partially or fully recreate the paths on other systems depending on the character set support provided by the unzip on the receiving system. In particular, this allows portability of paths between Windows and Unix. Unicode comments are also supported on systems where UTF-8 is the current character set. Unicode comment support for other systems is expected in Zip 3.1. - New command line parser. This new parser allows for command line permuting, where options can appear almost anywhere on the command line. This allows adding options to the end of the command line, for instance. It also supports long options, allowing for more readable command lines, and also allows lists for the -x exclude and -i include options to appear not just at the end of the command line. And some bugs in command line processing in Zip 2.32 have been fixed. - Unix 32-bit UIDs/GIDs. Now UIDs/GIDs larger than 16 bits are supported, but UnZip 6.0 is needed to restore these larger UIDs/GIDs. If Zip detects that the current system does not use 16-bit UIDs/GIDs, the old 16-bit UID/GID storage is not used as putting 32-bit UIDs/GIDs into 16-bit fields can cause problems. - New modes. Additional archive modes have been added, including a difference mode for supporting incremental backups, a file sync mode for synchronizing an existing archive with the current file system (which can be much faster than creating a new archive), and a copy mode that allows copying entries from one archive to another. - Compression using bzip2. Now can add bzip2 compression as a compression option in Zip. bzip2 compression can result in much more compact entries in some cases, but the user should verify that bzip2 is supported on the target unzip before using this new compression choice. - New Windows dll. The Windows dll has been updated to support the new Zip64 large file and larger number of entries limits. This new dll is not backward compatible with the Zip 2.32 dll, as the arguments to the dll have been updated to support the added capabilities, but modifying existing programs to use the new dll should be simple. See the included Visual Basic example project for details. - Better streaming and piping. Zip now has better support of streaming and piping and handles Unix FIFOs (named pipes) better. - Gobs of new progress information. Zip can now output progress information, such as how many entries processed and to go, how many bytes processed and to go, and adjustable size progress dots. If the initial file scan takes longer than about 5 seconds, Zip now outputs dots during the scan to avoid a long period of quiet. Zip can also now generate log files. - Updated archive fixing. The archive fixing capability is slightly improved, and now can fix split archives. - Windows Archive bit support. The Windows archive bit is now supported, though the new difference mode is probably more reliable than relying on the Windows archive bit for creating incremental backups. - File lists. Zip can list the files that would be added to an archive as well as the files in an existing archive. - Extended help. A new extended help option lists a very terse summary of the major features of Zip and how to use them. - Many bug fixes.
2007-06-05Update MASTER_SITES. Extension of distfile changed from .tar.gz to .tgz,wiz1-6/+3
adapt distinfo. Checksum stayed the same. Noted by Zafer Aydogan.
2006-10-09Flag a number of packages I use as supporting (user-)destdir.joerg1-6/+7
apg is a bit special as it has some hardcoded ownership, so mark that as "destdir".
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2006-07-17Update to 2.32:wiz1-3/+3
New things in Zip 2.32 - Fixed -R operation to match the supplied file patterns in all recursed subdirectories, like PKZIP 2.04 "-p -r" (or PKZIPC 4+ "-recurse") - Handle cases where -x, -R, and -i patterns are mixed - Fixes to ZipSplit, ZipNotes, and ZipCloak - Example C-Sharp code added for using zip32.dll (thanks to Adrian Maull) - Implemented some directory search speedups - Windows NTFS time fix - Fix VMS logical name parse problem - Handle VMS [...] - Add VMS DEBUG option - Fixed bug when encrypting large uncompressable files - Updated VMS help - Fixed selecting files to delete by date bug - Add new option, -MM, that will force Zip to exit with an OPEN error (usually error code 18) as soon as it finds an input pattern that is not matched during the directory scan or an input file that is unreadable or locked when Zip tries to open it, and without creating an archive (Note that, without -MM, Zip will do the usual thing of warning when a pattern is not matched and skipping files it can't read, creating the archive with what it can read, then exiting with an OPEN error if files were skipped) - Add check for when zip tries to exceed the limit for seeking in the output file and exit with error, instead of creating a possibly bad archive - Can now handle Unix FIFO (named pipes) - Minor changes to allow Zip to compile with Visual C++ 2005
2005-12-27Install man pages to PKGMANDIR instead of "man".reed1-6/+6
2005-12-01Fixed some pkglint warnings of the form:rillig1-2/+2
- WARN: archivers/bzip2/Makefile:15: Please use ${CC:Q} instead of "${CC}".
2005-10-23Use "+=" for MAKE_FLAGS instead of "=". Properly quote LOCAL_ZIP andrillig1-2/+3
LFLAGS1.
2005-10-23Append to CFLAGS instead of overwriting them. Fixes pkglint warnings.rillig1-3/+3
2005-08-03Update to 2.31:wiz1-11/+9
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
2005-05-24Removed an empty line.rillig1-2/+1
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-24Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to bewiz1-3/+1
useful.
2004-12-17Update to 2.3nb3: Add patch from Mandrake against CAN-2004-1010.wiz1-2/+2
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-3/+3
Suggested by Roland Illig, ok'd by various.
2004-11-22Remove dead MASTER_SITE.wiz1-3/+2
2004-05-31Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+5
tech-pkg@.
2004-04-17only make the gcc target if we're using gcc.grant1-2/+5
2004-03-23USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined.jlam1-2/+2
2004-03-11bl3ifyxtraeme1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-01turn off optimization to avoid an internal compiler error on powerpc.grant1-1/+5
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-2/+2
2002-12-22Allow this to be built on Linux. From Jeremy Reed, PR 19481agc1-1/+5
2002-11-10Use ${LOCALBASE}/bin/unzip rather than a bare unzip.cjep1-2/+2
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam1-2/+2
have been converted to USE_BUILDLINK2.
2002-07-31Use gcc on Solaris. Patch from Julien Letessier at sun dot com.wiz1-1/+8
2002-04-18Fix build on Darwin. All changes are taken from the latest betas of zip.yyamano1-3/+3
- Add MacOS X to version_local() - unix/configure: Init LFLAGS1 to "", MacOS X doesn't like -s - rename errors array to ziperrors to avoid MacOS X library clash
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+2
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-09-27Mechanical changes to 375 files to change dependency patterns of the formjlam1-2/+2
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
2001-07-16Mark as USE_BUILDLINK_ONLY.jlam1-1/+3
2001-03-27Change BUILD_DEPENDS semantics:hubertf1-2/+2
first component is now a package name+version/pattern, no more executable/patchname/whatnot. While there, introduce BUILD_USES_MSGFMT as shorthand to pull in devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current). Patch by Alistair Crooks <agc@netbsd.org>
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz1-1/+2
2000-10-21reorder line for pkglintwiz1-2/+2
2000-10-21Build with encryption support by default (since crypto code is freelywiz1-17/+10
exportable now), using latest crypto add-on sources. Update main distribution site and homepage. Remove CRYPTO line (not strong cryptography). Bump to 2.3nb1.
2000-09-09Reorganize crypto handling, as discussed on tech-pkg. Remove allfredb1-4/+2
RESTRICTED= variables that were predicated on former U.S. export regulations. Add CRYPTO=, as necessary, so it's still possible to exclude all crypto packages from a build by setting MKCRYPTO=no (but "lintpkgsrc -R" will no longer catch them). Specifically, - - All packages which set USE_SSL just lose their RESTRICTED variable, since MKCRYPTO responds to USE_SSL directly. - - realplayer7 and ns-flash keep their RESTRICTED, which is based on license terms, but also gain the CRYPTO variable. - - srp-client is now marked broken, since the distfile is evidently no longer available. On this, we're no worse off than before. [We haven't been mirroring the distfile, or testing the build!] - - isakmpd gets CRYPTO for RESTRICTED, but remains broken. - - crack loses all restrictions, as it does not evidently empower a user to utilize strong encryption (working definition: ability to encode a message that requires a secret key plus big number arithmetic to decode).
2000-08-18Replace MIRROR_DISTFILES and NO_CDROM with the more descriptive andhubertf1-2/+3
more fine-grained NO_{BIN,SRC}_ON_{FTP,CDROM} definitions. MIRROR_DISTFILES and NO_CDROM are now dead.
1999-12-28replaced some commands by their ${COMMAND} counterpartswiz1-4/+4
1999-12-13Update zip to 2.3 using the package sent to me in private mail by Thomasrh1-7/+7
Klausner <wiz@danbala.ifoer.tuwien.ac.at> -- thanks!