aboutsummaryrefslogtreecommitdiffstats
path: root/archivers
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2010-06-02 23:33:46 +0800
committermiwi <miwi@FreeBSD.org>2010-06-02 23:33:46 +0800
commit90463864d4baa7cd8d5afd61fd833776b13db994 (patch)
tree7a9ebdea10bd852d574435d6563b08e3808da936 /archivers
parentbc4d91110470f9bce9597593d71e3949a2f58dfd (diff)
downloadfreebsd-ports-gnome-90463864d4baa7cd8d5afd61fd833776b13db994.tar.gz
freebsd-ports-gnome-90463864d4baa7cd8d5afd61fd833776b13db994.tar.zst
freebsd-ports-gnome-90463864d4baa7cd8d5afd61fd833776b13db994.zip
Plzip is a massively parallel (multi-threaded), lossless data
compressor based on the LZMA algorithm, with very safe integrity checking and a user interface similar to the one of gzip or bzip2. Plzip uses the lzip file format; the files produced by plzip are fully compatible with lzip-1.4 or newer. WWW: http://www.nongnu.org/lzip/plzip.html Albert Vernon <f3cun3c02@sneakemail.com> PR: ports/146884 Submitted by: Albert Vernon <f3cun3c02 at sneakemail.com>
Diffstat (limited to 'archivers')
-rw-r--r--archivers/Makefile1
-rw-r--r--archivers/plzip/Makefile25
-rw-r--r--archivers/plzip/distinfo3
-rw-r--r--archivers/plzip/pkg-descr9
4 files changed, 38 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile
index f84e577ffc9c..85bcea6e9276 100644
--- a/archivers/Makefile
+++ b/archivers/Makefile
@@ -137,6 +137,7 @@
SUBDIR += php52-zip
SUBDIR += php52-zlib
SUBDIR += pigz
+ SUBDIR += plzip
SUBDIR += ppmd
SUBDIR += ppmd-7z
SUBDIR += ppunpack
diff --git a/archivers/plzip/Makefile b/archivers/plzip/Makefile
new file mode 100644
index 000000000000..10e2c52f3c19
--- /dev/null
+++ b/archivers/plzip/Makefile
@@ -0,0 +1,25 @@
+# New ports collection makefile for: plzip
+# Date created: 2010-05-22
+# Whom: Albert Vernon <f3cun3c02@sneakemail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= plzip
+PORTVERSION= 0.6
+CATEGORIES= archivers
+MASTER_SITES= SAVANNAH/lzip
+
+MAINTAINER= f3cun3c02@sneakemail.com
+COMMENT= Is a parallel, lossless data compressor based on the LZMA algorithm
+
+BUILD_DEPENDS= lzlib>=1.0:${PORTSDIR}/archivers/lzlib
+
+PLIST_FILES= bin/plzip
+
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= CXXFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+MAN1= plzip.1
+INFO= plzip
+.include <bsd.port.mk>
diff --git a/archivers/plzip/distinfo b/archivers/plzip/distinfo
new file mode 100644
index 000000000000..b63a30a6fd5d
--- /dev/null
+++ b/archivers/plzip/distinfo
@@ -0,0 +1,3 @@
+MD5 (plzip-0.6.tar.gz) = f452029b1e8232cbe837f4437613e1ed
+SHA256 (plzip-0.6.tar.gz) = 6ce0e98027399694d93dc46816d7ddd7593ab7c96b5ecf23b497fb46a7ef5aeb
+SIZE (plzip-0.6.tar.gz) = 64535
diff --git a/archivers/plzip/pkg-descr b/archivers/plzip/pkg-descr
new file mode 100644
index 000000000000..4b6566ff2df5
--- /dev/null
+++ b/archivers/plzip/pkg-descr
@@ -0,0 +1,9 @@
+Plzip is a massively parallel (multi-threaded), lossless data
+compressor based on the LZMA algorithm, with very safe integrity
+checking and a user interface similar to the one of gzip or bzip2.
+Plzip uses the lzip file format; the files produced by plzip are
+fully compatible with lzip-1.4 or newer.
+
+WWW: http://www.nongnu.org/lzip/plzip.html
+
+Albert Vernon <f3cun3c02@sneakemail.com>