summaryrefslogtreecommitdiff
path: root/archivers/zutils
diff options
context:
space:
mode:
authorMax Brazhnikov <makc@FreeBSD.org>2011-04-24 20:54:44 +0000
committerMax Brazhnikov <makc@FreeBSD.org>2011-04-24 20:54:44 +0000
commitae99f14e9a7c65ce12ef6db4fcd685f50d80fca4 (patch)
treed89477e92c88e512caeab152f6705f4f86931516 /archivers/zutils
parent- Mark BROKEN: does not build (diff)
Add new port archivers/zutils:
Zutils is a collection of utilities able to deal with any combination of compressed and non-compressed files transparently. If any given file, including standard input, is compressed, its decompressed content is used. Compressed files are decompressed on the fly; no temporary files are created. The provided utilities are: Zcat - Decompresses and copies files to standard output. Zcmp - Decompresses and compares two files byte by byte. Zdiff - Decompresses and compares two files line by line. Zgrep - Decompresses and searches files for a regular expression. Ztest - Tests integrity of compressed files. The supported compressors are bzip2, gzip, lzip, and xz. WWW: http://www.nongnu.org/zutils/zutils.html PR: ports/156359 Submitted by: Albert Vernon <f3cun3c02 at sneakemail.com>
Notes
Notes: svn path=/head/; revision=273147
Diffstat (limited to 'archivers/zutils')
-rw-r--r--archivers/zutils/Makefile36
-rw-r--r--archivers/zutils/distinfo2
-rw-r--r--archivers/zutils/pkg-descr16
3 files changed, 54 insertions, 0 deletions
diff --git a/archivers/zutils/Makefile b/archivers/zutils/Makefile
new file mode 100644
index 000000000000..278536d2efdb
--- /dev/null
+++ b/archivers/zutils/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: zutils
+# Date created: 2011-04-12
+# Whom: Albert Vernon <f3cun3c02@sneakemail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= zutils
+PORTVERSION= 0.9
+CATEGORIES= archivers
+MASTER_SITES= SAVANNAH/zutils
+
+MAINTAINER= f3cun3c02@sneakemail.com
+COMMENT= Utilities for searching in bzip2, gzip, lzip, and xz archives
+
+GNU_CONFIGURE= yes
+
+PLIST_FILES= bin/zcat \
+ bin/zcmp \
+ bin/zdiff \
+ bin/zegrep \
+ bin/zfgrep \
+ bin/zgrep \
+ bin/ztest \
+ bin/zutils
+
+MAN1= zcat.1 \
+ zcmp.1 \
+ zdiff.1 \
+ zgrep.1 \
+ ztest.1
+INFO= zutils
+
+LICENSE= GPLv3
+
+.include <bsd.port.mk>
diff --git a/archivers/zutils/distinfo b/archivers/zutils/distinfo
new file mode 100644
index 000000000000..e29ce43cd0d5
--- /dev/null
+++ b/archivers/zutils/distinfo
@@ -0,0 +1,2 @@
+SHA256 (zutils-0.9.tar.gz) = f1fa775f9d42ccc6716083102bcaa7dd05391db97b4298b368b21f04b920e83b
+SIZE (zutils-0.9.tar.gz) = 66382
diff --git a/archivers/zutils/pkg-descr b/archivers/zutils/pkg-descr
new file mode 100644
index 000000000000..f17d3f9e6f2c
--- /dev/null
+++ b/archivers/zutils/pkg-descr
@@ -0,0 +1,16 @@
+Zutils is a collection of utilities able to deal with any combination
+of compressed and non-compressed files transparently. If any given
+file, including standard input, is compressed, its decompressed
+content is used. Compressed files are decompressed on the fly; no
+temporary files are created.
+
+The provided utilities are:
+Zcat - Decompresses and copies files to standard output.
+Zcmp - Decompresses and compares two files byte by byte.
+Zdiff - Decompresses and compares two files line by line.
+Zgrep - Decompresses and searches files for a regular expression.
+Ztest - Tests integrity of compressed files.
+
+The supported compressors are bzip2, gzip, lzip, and xz.
+
+WWW: http://www.nongnu.org/zutils/zutils.html