Jean-Marc Zucconi's zoo port.

Submitted by:	jmz
This commit is contained in:
Jordan K. Hubbard 1994-10-18 01:04:46 +00:00
parent b16aec7081
commit 9e3dd664b9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243
5 changed files with 41 additions and 0 deletions

6
archivers/zoo/Makefile Normal file
View File

@ -0,0 +1,6 @@
DISTFILES= zoo210.tar.Z
DISTNAME= zoo
MASTER_SITES= ftp://garbo.uwasa.fi/unix/arcers/
NO_WRKSUBDIR= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,19 @@
*** bsd.c~ Wed Aug 7 23:34:07 1991
--- bsd.c Mon Oct 17 16:41:17 1994
***************
*** 98,104 ****
/* Truncate a file. */
int zootrunc(f) FILE *f;
{
! extern long lseek();
long seekpos;
int fd = fileno(f);
seekpos = lseek(fd, 0L, SEEK_CUR);
--- 98,104 ----
/* Truncate a file. */
int zootrunc(f) FILE *f;
{
! extern off_t lseek();
long seekpos;
int fd = fileno(f);
seekpos = lseek(fd, 0L, SEEK_CUR);

View File

@ -0,0 +1 @@
zoo - manipulate archives of files in compressed form. Version 2.10

7
archivers/zoo/pkg-descr Normal file
View File

@ -0,0 +1,7 @@
Zoo is used to create and maintain collections of files in compressed
form. It uses a Lempel-Ziv compression algorithm that gives space
savings in the range of 20% to 80% depending on the type of file
data. Zoo can store and selectively extract multiple generations of
the same file. Data can be recovered from damaged archives by
skipping the damaged portion and locating undamaged data with the help
of fiz(1).

8
archivers/zoo/pkg-plist Normal file
View File

@ -0,0 +1,8 @@
@cd /usr/local
@owner bin
@mode 755
bin/fiz
bin/zoo
@mode 644
man/man1/fiz.1
man/man1/zoo.1