diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-09-11 14:27:23 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-09-11 14:27:23 +0000 |
commit | 65567737b2a28cfb62d7eecdb8dd8a63de80df3b (patch) | |
tree | 6bb15d70fe1d24ef51542e656a82ea16973aec6c /archivers | |
parent | 8eb97b52e90b72b3c5d2517c1264032b13d4055a (diff) | |
download | FreeBSD-ports-65567737b2a28cfb62d7eecdb8dd8a63de80df3b.zip FreeBSD-ports-65567737b2a28cfb62d7eecdb8dd8a63de80df3b.tar.gz |
Gzip (GNU zip) is a compression utility designed to be a replacement
for compress. Its main advantages over compress are much better
compression and freedom from patented algorithms.
WWW: http://www.gzip.org/
Devel version imported, see discussion in ports/
PR: 41061
Submitted by: cyrille.lefevre@laposte.net
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/gzip/Makefile | 39 | ||||
-rw-r--r-- | archivers/gzip/distinfo | 1 | ||||
-rw-r--r-- | archivers/gzip/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/gzip/pkg-descr | 5 | ||||
-rw-r--r-- | archivers/gzip/pkg-plist | 17 |
6 files changed, 64 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 85aa174..f05b81c 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -14,6 +14,7 @@ SUBDIR += freeze SUBDIR += gshar+gunshar SUBDIR += gtar + SUBDIR += gzip SUBDIR += ha SUBDIR += hpack.non-usa.only SUBDIR += lbrate diff --git a/archivers/gzip/Makefile b/archivers/gzip/Makefile new file mode 100644 index 0000000..990818a --- /dev/null +++ b/archivers/gzip/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: gzip +# Date created: 27 July 2002 +# Whom: cyrille.lefevre@laposte.net +# +# $FreeBSD$ +# + +PORTNAME= gzip +PORTVERSION= 1.3.3 +CATEGORIES= archivers +MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} +MASTER_SITE_SUBDIR= ${PORTNAME} +# EXTRACT_SUFX= .tar + +MAINTAINER= cyrille.lefevre@laposte.net + +MASTER_SITES= ftp://ftp.digex.net/pub/linux/slackware/slackware-8.1/source/a/gzip/ \ + ftp://sunfreeware.risq.qc.ca/SOURCES/ \ + ftp://ftp.muug.mb.ca/mirror/slackware/slackware/slackware-8.1/source/a/gzip/ \ + ftp://ftp.xemacs.org/distributions/slackware/slackware-8.1/source/a/gzip/ \ + ftp://sunsite.cnlab-switch.ch/mirror/slackware/slackware-8.1/source/a/gzip/ \ + ftp://sunsite.cnlab-switch.ch/mirror/solaris-freeware/SOURCES/ \ + ftp://ftp.informatik.rwth-aachen.de/pub/comp/Linux/slackware/slackware-current/source/a/gzip/ \ + ftp://ftp.sunsite.auc.dk/disk2/slackware/slackware-8.1/source/a/gzip/ \ + ftp://ftp.ist.utl.pt/1/slackware/slackware-8.1/source/a/gzip/ \ + ftp://ftp.carrier.kiev.ua/.4/Linux/slackware/source/a/gzip/ \ + ftp://ftp.is.co.za/linux/distributions/slackware/slackware-8.1/source/a/gzip/ \ + ftp://ftp.monash.edu.au/pub/disk10/slackware/slackware-8.1/source/a/gzip/ + +USE_REINPLACE= yes +GNU_CONFIGURE= yes + +MAN1= gunzip.1 gzexe.1 gzip.1 zcat.1 zcmp.1 zdiff.1 zforce.1 \ + zgrep.1 zless.1 zmore.1 znew.1 + +post-configure: + @${REINPLACE_CMD} -e 's|^SHELL =.*|SHELL=/bin/sh|' ${WRKSRC}/Makefile + +.include <bsd.port.mk> diff --git a/archivers/gzip/distinfo b/archivers/gzip/distinfo new file mode 100644 index 0000000..6438d30 --- /dev/null +++ b/archivers/gzip/distinfo @@ -0,0 +1 @@ +MD5 (gzip-1.3.3.tar.gz) = 52eaf713673507d21f7abefee98ba662 diff --git a/archivers/gzip/pkg-comment b/archivers/gzip/pkg-comment new file mode 100644 index 0000000..a48b755 --- /dev/null +++ b/archivers/gzip/pkg-comment @@ -0,0 +1 @@ +A compression utility designed to be a replacement for compress diff --git a/archivers/gzip/pkg-descr b/archivers/gzip/pkg-descr new file mode 100644 index 0000000..5bf3eac --- /dev/null +++ b/archivers/gzip/pkg-descr @@ -0,0 +1,5 @@ +Gzip (GNU zip) is a compression utility designed to be a replacement +for compress. Its main advantages over compress are much better +compression and freedom from patented algorithms. + +WWW: http://www.gzip.org/ diff --git a/archivers/gzip/pkg-plist b/archivers/gzip/pkg-plist new file mode 100644 index 0000000..4d27eff --- /dev/null +++ b/archivers/gzip/pkg-plist @@ -0,0 +1,17 @@ +@comment $FreeBSD$ +bin/gunzip +bin/gzexe +bin/gzip +bin/zcat +bin/zcmp +bin/zdiff +bin/zegrep +bin/zfgrep +bin/zforce +bin/zgrep +bin/zless +bin/zmore +bin/znew +@unexec install-info --quiet --delete %D/info/gzip.info %D/info/dir +info/gzip.info +@exec install-info %D/info/gzip.info %D/info/dir |