mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 15:50:33 -04:00
It is practically impossible to use any of the unzip slave ports. This is because archivers/unzip is used by the ports infrastruction (via USES=zip, USES=zip:infozip) and each slave port conflicts with it. If you install the slave port first, then the port infrastructure can't install archivers/unzip (although if attempted, the extracts dependency might be satisfied by the slave port so it might actually work). In any case, this change: * Adds "iconv" support as an non-default option * Add a localization group that can have zero or one selection * That group contains Chinese, Korean, or Russian support * WITH_UNZIP_UNREDUCE support was removed (I'm not sure it even worked) * Makefile was simplified (several loops removed) * Removes unzip-iconv, Chinese, Korean, Russian slave ports PR: 190349 Reported by: Mikhail Rokhin Unzip overhaul: marino Approved by: maintainer (ehaupt@)
14 lines
644 B
C
14 lines
644 B
C
--- consts.h.orig 2002-03-23 15:52:48 UTC
|
|
+++ consts.h
|
|
@@ -34,9 +34,9 @@ ZCONST char Far CentSigMsg[] =
|
|
"error: expected central file header signature not found (file #%lu).\n";
|
|
ZCONST char Far SeekMsg[] =
|
|
"error [%s]: attempt to seek before beginning of zipfile\n%s";
|
|
-ZCONST char Far FilenameNotMatched[] = "caution: filename not matched: %s\n";
|
|
+ZCONST char Far FilenameNotMatched[] = "caution: filename not matched: %.512s\n";
|
|
ZCONST char Far ExclFilenameNotMatched[] =
|
|
- "caution: excluded filename not matched: %s\n";
|
|
+ "caution: excluded filename not matched: %.512s\n";
|
|
|
|
#ifdef VMS
|
|
ZCONST char Far ReportMsg[] = "\
|