svn commit: r504098 - in head/archivers: . lziprecover
Alexey Dokuchaev
danfe at FreeBSD.org
Thu Jun 13 15:15:48 UTC 2019
Author: danfe
Date: Thu Jun 13 15:15:46 2019
New Revision: 504098
URL: https://svnweb.freebsd.org/changeset/ports/504098
Log:
Lziprecover is a data recovery tool and decompressor for files in the
Lzip compressed data format (.lz). Lziprecover is able to repair slightly
damaged files, produce a correct file by merging the good parts of two or
more damaged copies, extract data from damaged files, test file integrity,
remove the damaged members from multimember files, and more.
WWW: http://www.nongnu.org/lzip/lziprecover.html
Added:
head/archivers/lziprecover/
head/archivers/lziprecover/Makefile (contents, props changed)
head/archivers/lziprecover/distinfo (contents, props changed)
head/archivers/lziprecover/pkg-descr (contents, props changed)
Modified:
head/archivers/Makefile
Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile Thu Jun 13 15:13:29 2019 (r504097)
+++ head/archivers/Makefile Thu Jun 13 15:15:46 2019 (r504098)
@@ -76,6 +76,7 @@
SUBDIR += lua51-zlib
SUBDIR += lzfse
SUBDIR += lzip
+ SUBDIR += lziprecover
SUBDIR += lzlib
SUBDIR += lzma
SUBDIR += lzmalib
Added: head/archivers/lziprecover/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/archivers/lziprecover/Makefile Thu Jun 13 15:15:46 2019 (r504098)
@@ -0,0 +1,29 @@
+# Created by: Alexey Dokuchaev <danfe at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= lziprecover
+PORTVERSION= 1.21
+CATEGORIES= archivers
+MASTER_SITES= SAVANNAH/lzip/${PORTNAME}
+
+MAINTAINER= danfe at FreeBSD.org
+COMMENT= Recovery tool for Lzip compressed data files
+
+LICENSE= GPLv2+
+
+USES= tar:lz
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS= --prefix=${PREFIX} --infodir=${PREFIX}/${INFO_PATH} \
+ --mandir=${MANPREFIX}/man CXXFLAGS="${CXXFLAGS}"
+
+INFO= ${PORTNAME}
+PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
+PORTDOCS= AUTHORS ChangeLog NEWS README
+
+OPTIONS_DEFINE= DOCS
+
+post-install-DOCS-on:
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
Added: head/archivers/lziprecover/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/archivers/lziprecover/distinfo Thu Jun 13 15:15:46 2019 (r504098)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1546615331
+SHA256 (lziprecover-1.21.tar.lz) = 1622440336614bee73542de0461d99141ea1b1bf012fc07bd50d94e434aa34df
+SIZE (lziprecover-1.21.tar.lz) = 78509
Added: head/archivers/lziprecover/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/archivers/lziprecover/pkg-descr Thu Jun 13 15:15:46 2019 (r504098)
@@ -0,0 +1,13 @@
+Lziprecover is a data recovery tool and decompressor for files in the
+Lzip compressed data format (.lz). Lziprecover is able to repair slightly
+damaged files, produce a correct file by merging the good parts of two or
+more damaged copies, extract data from damaged files, and test integrity
+of files.
+
+Lziprecover can remove the damaged members from multimember files, for
+example multimember .tar.lz archives.
+
+Lziprecover provides random access to the data in multimember files; it
+only decompresses the members containing the desired data.
+
+WWW: http://www.nongnu.org/lzip/lziprecover.html
More information about the svn-ports-head
mailing list