| Port details |
- minizip-ng Fork of the popular minizip found in the zlib distribution
- 4.2.1 archivers
=0 4.1.0Version of this port present on the latest quarterly branch. - Maintainer: vvd@FreeBSD.org
 - Port Added: 2022-01-25 07:39:07
- Last Update: 2026-04-27 21:11:26
- Commit Hash: 9647d78b
- License: ZLIB
- WWW:
- https://github.com/zlib-ng/minizip-ng
- Description:
- Minizip was originally developed in 1998. It was first included in the zlib
distribution as an additional code contribution starting in zlib 1.1.2. Since
that time, it has been continually improved upon and contributed to by many
people.
Features:
+ Creating and extracting zip archives.
+ Adding and removing entries from zip archives.
+ Read and write raw zip entry data.
+ Reading and writing zip archives from memory.
+ Support for large files with ZIP64 extension.
+ Zlib, BZIP2, LZMA, PPMD, XZ and ZSTD compression methods.
+ Password protection through Traditional PKWARE and WinZIP AES encryption.
+ Buffered streaming for improved I/O performance.
+ NTFS timestamp support for UTC last modified, last accessed, and creation
dates.
+ Disk split support for splitting zip archives into multiple files.
+ Preservation of file attributes across file systems.
+ Follow and store symbolic links.
+ Unicode filename support through UTF-8 encoding.
+ Legacy character encoding support CP437, CP932, CP936, CP950.
+ Turn off compilation of compression, decompression, or encryption.
+ Windows (Win32 & WinRT), macOS and Linux platform support.
+ Streaming interface for easy implementation of additional platforms.
+ Support for Apple's compression library ZLIB and XZ implementations.
+ Zero out local file header information.
+ Zip/unzip of central directory to reduce size.
+ Recover the central directory if it is corrupt or missing.
+ Example minizip and minigzip command line tools.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - USE_RC_SUBR (Service Scripts)
- no SUBR information found for this port
- Dependency lines:
-
- minizip-ng>0:archivers/minizip-ng
- To install the port:
- cd /usr/ports/archivers/minizip-ng/ && make install clean
- To add the package, run one of these commands:
- pkg install archivers/minizip-ng
- pkg install minizip-ng
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: minizip-ng
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1777317777
SHA256 (zlib-ng-minizip-ng-4.2.1_GH0.tar.gz) = 3cc35c2cb925dbe67cc801e3234b31b0f30197812a99377352fa1b551ab3d011
SIZE (zlib-ng-minizip-ng-4.2.1_GH0.tar.gz) = 610659
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cmake : devel/cmake-core
- ninja : devel/ninja
- pkgconf>=1.3.0_1 : devel/pkgconf
- Library dependencies:
-
- libz-ng.so : archivers/zlib-ng
- libzstd.so : archivers/zstd
- This port is required by:
- for Libraries
-
- devel/axmldec
- emulators/dolphin-emu
- emulators/qmc2
- graphics/opencolorio
- graphics/opencolorio-tools
- graphics/py-opencolorio
Configuration Options:
- No options to configure
- Options name:
- archivers_minizip-ng
- USES:
- cmake:testing iconv pkgconfig ssl
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
| Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
| Commit | Credits | Log message |
4.2.1 27 Apr 2026 21:11:26
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: Update 4.1.2 => 4.2.1
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.2.0
https://github.com/zlib-ng/minizip-ng/releases/tag/4.2.1
Sponsored by: UNIS Labs |
4.1.2 25 Apr 2026 22:48:48
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: Update 4.1.1 => 4.1.2
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.1.2
Sponsored by: UNIS Labs |
4.1.1 25 Apr 2026 00:16:00
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: Fix build of consumers
/usr/local/include/minizip-ng/mz.h:164:10: fatal error: 'mz_config.h' file not
found
164 | #include "mz_config.h"
| ^~~~~~~~~~~~~
1 error generated.
/usr/local/include/minizip-ng/mz_os.h:48:10: fatal error: 'mz_config.h' file not
found
48 | #include "mz_config.h"
| ^~~~~~~~~~~~~
1 error generated.
Upstream issue:
https://github.com/zlib-ng/minizip-ng/issues/980
Sponsored by: UNIS Labs |
4.1.1 24 Apr 2026 23:50:25
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: Update 4.1.0 => 4.1.1
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.1.1
Sponsored by: UNIS Labs |
4.1.0 24 Jan 2026 17:23:00
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: Update 4.0.10 => 4.1.0
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.1.0
Add patch to fix build:
FAILED: [code=1] CMakeFiles/minizip-ng.dir/mz_strm_os_posix.c.o
mz_strm_os_posix.c:93:32: error: use of undeclared identifier 'S_IRUSR'
93 | fd = open(path, mode_open, S_IRUSR | S_IWUSR | S_IRGRP);
| ^
mz_strm_os_posix.c:93:42: error: use of undeclared identifier 'S_IWUSR'
93 | fd = open(path, mode_open, S_IRUSR | S_IWUSR | S_IRGRP);
| ^
mz_strm_os_posix.c:93:52: error: use of undeclared identifier 'S_IRGRP'
93 | fd = open(path, mode_open, S_IRUSR | S_IWUSR | S_IRGRP);
| ^
3 errors generated.
Upstream issue: https://github.com/zlib-ng/minizip-ng/issues/941 |
4.0.10 23 Jul 2025 09:10:28
    |
Baptiste Daroussin (bapt)  |
archivers/*: remove unneeded USES=pathfix
The framework deals with .pc files without the needs of patching the
source (since 2017) |
4.0.10 25 May 2025 01:56:13
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: 4.0.8 => 4.0.10
Changelogs:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.9
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.10
As a workaround, add back mz_compat.h (removed from 4.0.8) to unbreak
emulators/qmc2.
PR: 286673 284326
Exp-run by: antoine
MFH: 2025Q2 |
4.0.8 09 Jan 2025 12:33:02
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: Update 4.0.7 → 4.0.8
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.8
Reported by: portscout
MFH: 2025Q1 |
4.0.7 17 Jun 2024 01:10:33
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: update to 4.0.7
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.7 |
4.0.6 12 Jun 2024 00:49:01
    |
Vladimir Druzenko (vvd)  |
archivers/{minizip{,-ng},zlib-ng}: take maintainership
While here remove GNU_CONFIGURE_MANPREFIX and pet portclippy.
Approved by: lbartoletti (former maintainer, via IRC) |
4.0.6 10 Jun 2024 20:21:10
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: udpate to 4.0.6
Changelog:
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.6
Upstream prefer to use archivers/zlib-ng instead of old zlib - add it in
LIB_DEPENDS and prevent search old zlib.
While here pet portclippy.
PR: 279593
Approved by: lbartoletti (maintainer, via IRC) |
4.0.5 29 May 2024 20:26:11
    |
Vladimir Druzenko (vvd)  |
archivers/minizip-ng: update to 4.0.5
Changelogs:
https://github.com/zlib-ng/minizip-ng/releases/tag/3.0.9
https://github.com/zlib-ng/minizip-ng/releases/tag/3.0.10
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.0
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.1
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.2
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.3
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.4
https://github.com/zlib-ng/minizip-ng/releases/tag/4.0.5
PR: 275303
Tested by: Alastair Hogge <agh@riseup.net>, lbartoletti
Approved by: Shane <FreeBSD@ShaneWare.Biz> (maintaner) |
3.0.8 04 Jan 2023 07:21:55
    |
Loïc Bartoletti (lbartoletti)  |
archivers/minizip-ng: Update to 3.0.8
Release Notes:
- https://github.com/zlib-ng/minizip-ng/releases/tag/3.0.8 |
3.0.7 28 Oct 2022 07:58:52
    |
Loïc Bartoletti (lbartoletti)  |
archivers/minizip-ng: Update to 3.0.7 |
3.0.6 21 Sep 2022 11:46:58
    |
Loïc Bartoletti (lbartoletti)  |
archives/minizip-ng: Update to 3.0.6 |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
3.0.4 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
3.0.4 25 Jan 2022 06:35:22
    |
Loïc Bartoletti (lbartoletti)  |
archivers/minizip*: Add minizip-ng and zlib-ng and create USES=minizip
Import minizip-ng and zlib-ng
Minizip was originally developed in 1998. It was first included in the zlib
distribution as an additional code contribution starting in zlib 1.1.2. Since
that time, it has been continually improved upon and contributed to by many
people.
+ Creating and extracting zip archives.
+ Adding and removing entries from zip archives.
+ Read and write raw zip entry data.
+ Reading and writing zip archives from memory.
+ Zlib, BZIP2, LZMA, and ZSTD compression methods.
+ Password protection through Traditional PKWARE and WinZIP AES encryption. (Only the first 15 lines of the commit message are shown above ) |