1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Add gzrecover.

Gzrecover attempts to skip over bad data in a gzip archive. It will try to to
skip over bad data and extract whatever files might be there.

WWW: http://www.urbanophile.com/arenn/hacking/gzrt/

PR:		ports/81840
Submitted by:	Emanuel Haupt <ehaupt@critical.ch>
This commit is contained in:
Jean-Yves Lefort 2005-06-08 12:08:09 +00:00
parent 40c925016b
commit 4fa7e5a3a0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=137046
4 changed files with 44 additions and 0 deletions

View File

@ -23,6 +23,7 @@
SUBDIR += freeze
SUBDIR += gtar
SUBDIR += gzip
SUBDIR += gzrecover
SUBDIR += ha
SUBDIR += hffzip
SUBDIR += hpack.non-usa.only

View File

@ -0,0 +1,34 @@
# New ports collection makefile for: gzrecover
# Date created: 3 June 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= gzrecover
PORTVERSION= 0.3
CATEGORIES= archivers
MASTER_SITES= http://www.urbanophile.com/arenn/hacking/gzrt/
DISTNAME= gzrt-${PORTVERSION}
MAINTAINER= ehaupt@critical.ch
COMMENT= A gzip recovery toolkit
CFLAGS+= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PLIST_FILES= bin/${PORTNAME}
.if !defined(NOPORTDOCS)
PORTDOCS= README
.endif
do-build:
${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c -lz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
MD5 (gzrt-0.3.tar.gz) = b54888d4b7a0f130dec89e477b091159
SIZE (gzrt-0.3.tar.gz) = 7818

View File

@ -0,0 +1,7 @@
Gzrecover attempts to skip over bad data in a gzip archive. It will try to to
skip over bad data and extract whatever files might be there.
WWW: http://www.urbanophile.com/arenn/hacking/gzrt/
- ehaupt
ehaupt@critical.ch