diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-17 22:57:30 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-17 22:57:30 +0000 |
commit | 0b636ecea986d3592f0c612aee8a557bffeb40af (patch) | |
tree | c76a022912dcc1e6e9e29e58ee6c5e5cb634d6fc /archivers | |
parent | 9928a849e05802400ccfaa29146559a51a209a7a (diff) | |
download | FreeBSD-ports-0b636ecea986d3592f0c612aee8a557bffeb40af.zip FreeBSD-ports-0b636ecea986d3592f0c612aee8a557bffeb40af.tar.gz |
Jean-Marc Zucconi's unzip port.
Submitted by: jmz
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/unzip/Makefile | 11 | ||||
-rw-r--r-- | archivers/unzip/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/unzip/pkg-descr | 23 | ||||
-rw-r--r-- | archivers/unzip/pkg-plist | 12 |
4 files changed, 47 insertions, 0 deletions
diff --git a/archivers/unzip/Makefile b/archivers/unzip/Makefile new file mode 100644 index 0000000..6a3a3ee --- /dev/null +++ b/archivers/unzip/Makefile @@ -0,0 +1,11 @@ +DISTFILES= unzip512.tar.Z +DISTNAME= unzip-5.12 +MASTER_SITES= ftp://garbo.uwasa.fi/unix/arcers/ + +MAKEFILE= Xmakefile + +pre-install: + @mkdir -p ${PREFIX}/bin + @mkdir -p ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/archivers/unzip/pkg-comment b/archivers/unzip/pkg-comment new file mode 100644 index 0000000..b369173 --- /dev/null +++ b/archivers/unzip/pkg-comment @@ -0,0 +1 @@ +unzip - list, test and extract compressed files in a ZIP archive. Version 5.12 diff --git a/archivers/unzip/pkg-descr b/archivers/unzip/pkg-descr new file mode 100644 index 0000000..5171951 --- /dev/null +++ b/archivers/unzip/pkg-descr @@ -0,0 +1,23 @@ +Unzip will list, test, or extract files from a ZIP archive, commonly +found on MS-DOS systems. The default behavior (with no options) is to +extract into the current directory (and subdirectories below it) all +files from the specified ZIP archive. Unzip is compatible with +archives created by PKWARE's PKZIP, but in many cases the program +options or default behaviors differ. + +Zipinfo lists technical information about files in a ZIP archive, most +commonly found on MS-DOS systems. Such information includes file access +permissions, encryption status, type of compression, version and operating +system or file system of compressing program, and the like. + +Funzip acts as a filter; that is, it assumes that a ZIP archive is +being piped into standard input, and it extracts the first member from +the archive to stdout. If there is an argument, then the input comes +from the specified file instead of from stdin. + +Unzipsfx is a modified version of unzip designed to be prepended to +existing ZIP archives in order to form self-extracting archives. +Instead of taking its first non-flag argument to be the zipfile(s) to +be extracted, unzipsfx seeks itself under the name by which it was +invoked and tests or extracts the contents of the appended archive. + diff --git a/archivers/unzip/pkg-plist b/archivers/unzip/pkg-plist new file mode 100644 index 0000000..493f99e --- /dev/null +++ b/archivers/unzip/pkg-plist @@ -0,0 +1,12 @@ +@cd /usr/local +@owner bin +@mode 755 +bin/funzip +bin/unzip +bin/unzipsfx +bin/zipinfo +@mode 644 +man/man1/funzip.1 +man/man1/unzip.1 +man/man1/unzipsfx.1 +man/man1/zipinfo.1 |