./archivers/zziplib, Library for ZIP archive handling

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.13.59, Package name: zziplib-0.13.59, Maintainer: pkgsrc-users

The zziplib library is intentionally lightweight, it offers the
ability to easily extract data from files archived in a single zip
file. Applications can bundle files into a single zip archive and
access them. The implementation is based only on the (free) subset
of compression with the zlib algorithm which is actually used by
the zip/unzip tools.


Required to build:
[devel/libtool-base]

Master sites:

SHA1: ddbce25cb36c3b4c2b892e2c8a88fa4a0be29a71
RMD160: b96f547039ac005f6e9ca2cf92c388a077b9b21e
Filesize: 674.805 KB

Version history: (Expand)


CVS history: (Expand)


   2010-05-15 08:37:03 by Adam Ciarcinski | Files touched by this commit (6)
Log message:
Changes 0.13.59:
* Bug-fix release.
   2009-11-29 21:40:08 by Jens Rehsack | Files touched by this commit (6)
Log message:
Reworking patches to avoid gnu-ld's --export-dynamic flag for environments
without gnu-ld
   2009-11-22 21:35:25 by Jens Rehsack | Files touched by this commit (6)
Log message:
Apply patches to compile on AIX
   2009-07-26 23:13:35 by Min Sik Kim | Files touched by this commit (1)
Log message:
Set BUILDLINK_ABI_DEPENDS.zziplib because of major number change.
   2009-07-26 21:31:02 by Matthias Drochner | Files touched by this commit (2)
Log message:
disable a makefile rule which creates nonsense symlinks,
as /usr/pkg/lib/libzzip*.so.10 -> libzzip*.so.13
   2009-07-26 12:29:08 by Min Sik Kim | Files touched by this commit (6) | Package updated
Log message:
Update zziplib to 0.13.56.

Major change since 0.10.x:

There were some problematic zip files out there that can trigger
segfaults in 0.10.x.  Later zzip file decoders have extra checks and
helper routines for that.
   2009-06-14 19:28:19 by Joerg Sonnenberger | Files touched by this commit (29)
Log message:
Remove @dirrm entries from PLISTs
   2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252)
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.