diff options
author | will <will@FreeBSD.org> | 2000-06-02 22:58:15 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-06-02 22:58:15 +0000 |
commit | 1ea8613276210065a35f60574c882a2eb975183e (patch) | |
tree | 42e05748cdb30f4586ecda847bdb39ead22adfd2 /archivers | |
parent | b09a970e08c65943e1cb972563b4a4c7e11780c2 (diff) | |
download | FreeBSD-ports-1ea8613276210065a35f60574c882a2eb975183e.zip FreeBSD-ports-1ea8613276210065a35f60574c882a2eb975183e.tar.gz |
Add lzop, a fast file compressor similar to gzip that uses the LZO lib.
Obtained from: NetBSD
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/lzop/Makefile | 22 | ||||
-rw-r--r-- | archivers/lzop/distinfo | 1 | ||||
-rw-r--r-- | archivers/lzop/files/patch-aa | 11 | ||||
-rw-r--r-- | archivers/lzop/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/lzop/pkg-descr | 7 | ||||
-rw-r--r-- | archivers/lzop/pkg-plist | 1 |
7 files changed, 44 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 1a19e8d..0ca5825 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -14,6 +14,7 @@ SUBDIR += liblzo SUBDIR += linux_rar SUBDIR += lzo + SUBDIR += lzop SUBDIR += makeself SUBDIR += mscompress SUBDIR += nulib diff --git a/archivers/lzop/Makefile b/archivers/lzop/Makefile new file mode 100644 index 0000000..d1ff085 --- /dev/null +++ b/archivers/lzop/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: lzop +# Date created: Fri 2 June 2000 +# Whom: will +# +# $FreeBSD$ +# + +PORTNAME= lzop +PORTVERSION= 1.00 +CATEGORIES= archivers +MASTER_SITES= http://wildsau.idv.uni-linz.ac.at/mfx/lzo-download/ + +MAINTAINER= will@FreeBSD.org + +LIB_DEPENDS= lzo.1:${PORTSDIR}/archivers/liblzo + +GNU_CONFIGURE= YES +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +MAN1= lzop.1 + +.include <bsd.port.mk> diff --git a/archivers/lzop/distinfo b/archivers/lzop/distinfo new file mode 100644 index 0000000..4c834e8 --- /dev/null +++ b/archivers/lzop/distinfo @@ -0,0 +1 @@ +MD5 (lzop-1.00.tar.gz) = ef267ac5ea24ccf4ae779f4afb0ab48e diff --git a/archivers/lzop/files/patch-aa b/archivers/lzop/files/patch-aa new file mode 100644 index 0000000..5cf664b --- /dev/null +++ b/archivers/lzop/files/patch-aa @@ -0,0 +1,11 @@ +--- configure Sat Apr 25 12:23:14 1998 ++++ configure.new Fri Jun 2 18:55:17 2000 +@@ -2265,7 +2265,7 @@ + fi + done + +-for ac_func in access atoi chmod chown fchmod fileno fstat getumask isatty setmode stat umask utime ++for ac_func in access atoi chmod chown fchmod fileno fstat getumask isatty stat umask utime + do + echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 + echo "configure:2272: checking for $ac_func" >&5 diff --git a/archivers/lzop/pkg-comment b/archivers/lzop/pkg-comment new file mode 100644 index 0000000..f8e83d3 --- /dev/null +++ b/archivers/lzop/pkg-comment @@ -0,0 +1 @@ +Fast file compressor similar to gzip, using the LZO library diff --git a/archivers/lzop/pkg-descr b/archivers/lzop/pkg-descr new file mode 100644 index 0000000..1af4058 --- /dev/null +++ b/archivers/lzop/pkg-descr @@ -0,0 +1,7 @@ + lzop is a file compressor which is very similar to gzip. It uses the LZO +library for compression services and its main advantages over gzip are much +higher compression and decompression speed (at the cost of some compression +ratio). + + lzop is distributed under the terms of the GNU General Public License +(GPL). diff --git a/archivers/lzop/pkg-plist b/archivers/lzop/pkg-plist new file mode 100644 index 0000000..3199c4e --- /dev/null +++ b/archivers/lzop/pkg-plist @@ -0,0 +1 @@ +bin/lzop |