diff options
author | clsung <clsung@FreeBSD.org> | 2006-09-26 18:51:21 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-09-26 18:51:21 +0800 |
commit | 1f8c8684aa26f65c97898e0fafb4691129802372 (patch) | |
tree | 06117799ab02ca4ddff0b2e7f7c77efa2631c611 /archivers | |
parent | fbee28f23ede240b0e2816a74e0bcc332a64d795 (diff) | |
download | freebsd-ports-gnome-1f8c8684aa26f65c97898e0fafb4691129802372.tar.gz freebsd-ports-gnome-1f8c8684aa26f65c97898e0fafb4691129802372.tar.zst freebsd-ports-gnome-1f8c8684aa26f65c97898e0fafb4691129802372.zip |
Add p5-Compress-LZF 1.65, extremely light-weight Lempel-Ziv-Free
compression.
PR: ports/103095
Submitted by: Gea-Suan Lin <gslin at gslin.org>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/p5-Compress-LZF/Makefile | 22 | ||||
-rw-r--r-- | archivers/p5-Compress-LZF/distinfo | 3 | ||||
-rw-r--r-- | archivers/p5-Compress-LZF/pkg-descr | 8 | ||||
-rw-r--r-- | archivers/p5-Compress-LZF/pkg-plist | 8 |
5 files changed, 42 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 32901e68be69..cc529bdfecd5 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -65,6 +65,7 @@ SUBDIR += p5-Archive-Tar SUBDIR += p5-Archive-Zip SUBDIR += p5-Compress-Bzip2 + SUBDIR += p5-Compress-LZF SUBDIR += p5-Compress-LZW SUBDIR += p5-Compress-Zlib SUBDIR += p5-IO-Zlib diff --git a/archivers/p5-Compress-LZF/Makefile b/archivers/p5-Compress-LZF/Makefile new file mode 100644 index 000000000000..d82bdeb49681 --- /dev/null +++ b/archivers/p5-Compress-LZF/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: p5-Compress-LZF +# Date created: 2006-09-10 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= Compress-LZF +PORTVERSION= 1.65 +CATEGORIES= archivers perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Compress +PKGNAMEPREFIX= p5- + +MAINTAINER= clsung@FreeBSD.org +COMMENT= Extremely light-weight Lempel-Ziv-Free compression + +PERL_CONFIGURE= yes + +MAN3= Compress::LZF.3 + +.include <bsd.port.mk> diff --git a/archivers/p5-Compress-LZF/distinfo b/archivers/p5-Compress-LZF/distinfo new file mode 100644 index 000000000000..755bf17e401f --- /dev/null +++ b/archivers/p5-Compress-LZF/distinfo @@ -0,0 +1,3 @@ +MD5 (Compress-LZF-1.65.tar.gz) = db140ad46b5e525e78473932f1618f99 +SHA256 (Compress-LZF-1.65.tar.gz) = e8ecea893fc75628152960f0069cb41092a0a4f3e0b487f0456a9f880b516d5d +SIZE (Compress-LZF-1.65.tar.gz) = 22444 diff --git a/archivers/p5-Compress-LZF/pkg-descr b/archivers/p5-Compress-LZF/pkg-descr new file mode 100644 index 000000000000..46a767386b01 --- /dev/null +++ b/archivers/p5-Compress-LZF/pkg-descr @@ -0,0 +1,8 @@ +LZF is an extremely fast (not that much slower than a pure memcpy) +compression algorithm. It is ideal for applications where you want to +save some space but not at the cost of speed. It is ideal for +repetitive data as well. The module is self-contained and very small +(no large library to be pulled in). It is also free, so there should +be no problems incoporating this module into commercial programs. + +WWW: http://search.cpan.org/dist/Compress-LZF/ diff --git a/archivers/p5-Compress-LZF/pkg-plist b/archivers/p5-Compress-LZF/pkg-plist new file mode 100644 index 000000000000..2405c04f3439 --- /dev/null +++ b/archivers/p5-Compress-LZF/pkg-plist @@ -0,0 +1,8 @@ +@comment $FreeBSD$ +%%SITE_PERL%%/%%PERL_ARCH%%/Compress/LZF.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZF/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZF/LZF.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZF/LZF.so +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZF +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Compress |