pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/zidrav Import zidrav from pkgsrc-wip. Packag...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6708eb82d5ea
branches:  trunk
changeset: 501365:6708eb82d5ea
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Fri Oct 21 04:00:56 2005 +0000

description:
Import zidrav from pkgsrc-wip.  Packaged by Tobias Nygren.

Zidrav is a file corruption detection and repair program.  It is
designed to provide a way to fix file damage without having to
redownload the entire (potentially large) file over a (potentially
slow) connection.  A checksum file is generated for the broken file.
The checksum file can then be used together with the correct file to
produce a binary patch file for repair.

diffstat:

 sysutils/zidrav/DESCR            |   6 ++++++
 sysutils/zidrav/Makefile         |  30 ++++++++++++++++++++++++++++++
 sysutils/zidrav/PLIST            |   3 +++
 sysutils/zidrav/distinfo         |   6 ++++++
 sysutils/zidrav/patches/patch-aa |  19 +++++++++++++++++++
 5 files changed, 64 insertions(+), 0 deletions(-)

diffs (84 lines):

diff -r f93cd9e02e3c -r 6708eb82d5ea sysutils/zidrav/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/zidrav/DESCR     Fri Oct 21 04:00:56 2005 +0000
@@ -0,0 +1,6 @@
+Zidrav is a file corruption detection and repair program.  It is
+designed to provide a way to fix file damage without having to
+redownload the entire (potentially large) file over a (potentially
+slow) connection.  A checksum file is generated for the broken file.
+The checksum file can then be used together with the correct file to
+produce a binary patch file for repair.
diff -r f93cd9e02e3c -r 6708eb82d5ea sysutils/zidrav/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/zidrav/Makefile  Fri Oct 21 04:00:56 2005 +0000
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/21 04:00:56 minskim Exp $
+#
+
+DISTNAME=      zidrav4unix-1.2.0
+PKGNAME=       zidrav-1.20
+CATEGORIES=    sysutils
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=zidrav/}
+
+MAINTAINER=    tnn%netilium.org@localhost
+HOMEPAGE=      http://sourceforge.net/projects/zidrav
+COMMENT=       File corruption detection and repair program
+
+USE_LANGUAGES=  c c++
+BUILD_TARGET=  zidrav
+
+PKG_INSTALLATION_TYPES=        overwrite pkgviews
+
+.include "../../mk/endian.mk"
+
+.if ${MACHINE_ENDIAN} == "big"
+  CXXFLAGS+=-DCPU_BIGENDIAN
+.endif
+
+INSTALLATION_DIRS=     bin man/man1
+
+do-install:
+       ${INSTALL_PROGRAM} ${WRKSRC}/zidrav ${PREFIX}/bin/zidrav
+       ${INSTALL_MAN} ${WRKSRC}/zidrav.1 ${PREFIX}/man/man1/zidrav.1
+
+.include "../../mk/bsd.pkg.mk"
diff -r f93cd9e02e3c -r 6708eb82d5ea sysutils/zidrav/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/zidrav/PLIST     Fri Oct 21 04:00:56 2005 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/21 04:00:56 minskim Exp $
+bin/zidrav
+man/man1/zidrav.1
diff -r f93cd9e02e3c -r 6708eb82d5ea sysutils/zidrav/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/zidrav/distinfo  Fri Oct 21 04:00:56 2005 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/10/21 04:00:56 minskim Exp $
+
+SHA1 (zidrav4unix-1.2.0.tar.gz) = e8e2e6574831509669bae3976748baec713243c6
+RMD160 (zidrav4unix-1.2.0.tar.gz) = 7043b122e8e1f394d6fe62ea81ed08d0052a199b
+Size (zidrav4unix-1.2.0.tar.gz) = 18448 bytes
+SHA1 (patch-aa) = 7e1c6bcb375d38a1aa7f3eaa4fa00e779465860a
diff -r f93cd9e02e3c -r 6708eb82d5ea sysutils/zidrav/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/zidrav/patches/patch-aa  Fri Oct 21 04:00:56 2005 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/10/21 04:00:56 minskim Exp $
+
+--- Makefile.orig      2005-05-19 22:13:43.000000000 +0200
++++ Makefile
+@@ -1,11 +1,11 @@
+ zidrav: zidrav.cpp flayer.o core.o flayer.h
+-      g++ -O2 -Wall -o zidrav zidrav.cpp flayer.o core.o
++      $(CXX) -O $(CXXFLAGS) $(CPPFLAGS) -o zidrav zidrav.cpp flayer.o core.o
+       
+ flayer.o: flayer.cpp core.h
+-      g++ -O2 -Wall -c flayer.cpp
++      $(CXX) -O $(CXXFLAGS) $(CPPFLAGS) -c flayer.cpp
+ 
+ core.o: core.cpp core.h
+-      g++ -O2 -Wall -c core.cpp
++      $(CXX) -O $(CXXFLAGS) $(CPPFLAGS) -c core.cpp
+ 
+ .PHONY:
+ clean:



Home | Main Index | Thread Index | Old Index