diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1997-05-03 10:16:32 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1997-05-03 10:16:32 +0000 |
commit | 840cb1373f7dc156668d0b70087b67dde7f0ad5c (patch) | |
tree | e2da931d6e45b5b37a72013d15a57f1c5954bc95 /archivers/star/Makefile | |
parent | 86b5c8de37aa504562c072789e290550f033319b (diff) |
New port "star"
Main advantages over other tar implementations:
fifo - keeps the tape streaming.
pattern matcher - for a convenient user interface
sophisticated diff - user tailorable interface for comparing tar
archives against file trees
no namelen limitation - Pathnames up to 1024 Bytes may be archived.
deals with all 3 times - stores/restores all 3 times of a file
does not clobber files - more recent copies on disk will not be
clobbered from tape
automatic byte swap - star automatically detects swapped archives
automatic format detect - automatically detects archive formats:
Old tar, gnu tar, ansi tar, star.
fully ansi compatible - Star is fully ANSI/Posix 1003.1 compatible.
Notes
Notes:
svn path=/head/; revision=6387
Diffstat (limited to 'archivers/star/Makefile')
-rw-r--r-- | archivers/star/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/archivers/star/Makefile b/archivers/star/Makefile new file mode 100644 index 000000000000..c694b5414780 --- /dev/null +++ b/archivers/star/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: star +# Version required: 1,0 +# Date created: Thu May 1 20:28:44 CEST 1997 +# Whom: Andreas Klemm <andreas@klemm.gtn.com> +# +# $Id$ +# + +DISTNAME= star-1.0 +CATEGORIES= sysutils +MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/unix/star/ + +MAINTAINER= andreas@FreeBSD.org + +USE_GMAKE= yes +MAKE_ENV+= MAKEPROG=gmake + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/star/OBJ/i386-freebsd-cc/star ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/star/star.1 ${PREFIX}/man/man1 +.if !defined(NOMANCOMPRESS) + @${ECHO_MSG} "===> Compressing manual pages for ${PKGNAME}" + @${GZIP_CMD} ${PREFIX}/man/man1/star.1 +.endif + +.include <bsd.port.mk> |