diff options
author | agc <agc> | 2002-10-15 13:49:19 +0000 |
---|---|---|
committer | agc <agc> | 2002-10-15 13:49:19 +0000 |
commit | c1b9c7eac74d2f61d02bf7a290592ab1998c5a56 (patch) | |
tree | 622299b42cbb24d61ef91e235c5d55628de16d04 /devel | |
parent | 4a133bc082697b38bbbb81840c28f3434334b930 (diff) | |
download | pkgsrc-c1b9c7eac74d2f61d02bf7a290592ab1998c5a56.tar.gz |
Initial import of librsync-0.9.5.1 into the NetBSD Packages Collection.
Provided in PR 18576 by "David S." <dgs@malign.rad.washington.edu>
Librsync is a library for calculating and applying network deltas,
with an interface designed to ease integration into diverse network
applications. Librsync encapsulates the core algorithms of the rsync
protocol, which help with efficient calculation of the differences
between two files. The rsync algorithm is different from most
differencing algorithms because it does not require the presence of
the two files to calculate the delta. Instead, it requires a set of
checksums of each block of one file, which together form a signature
for that file. Blocks at any point in the other file which have the
same checksum are likely to be identical, and whatever remains is the
difference.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/librsync/DESCR | 11 | ||||
-rw-r--r-- | devel/librsync/Makefile | 23 | ||||
-rw-r--r-- | devel/librsync/PLIST | 10 | ||||
-rw-r--r-- | devel/librsync/distinfo | 4 |
4 files changed, 48 insertions, 0 deletions
diff --git a/devel/librsync/DESCR b/devel/librsync/DESCR new file mode 100644 index 00000000000..b8923cad671 --- /dev/null +++ b/devel/librsync/DESCR @@ -0,0 +1,11 @@ +Librsync is a library for calculating and applying network deltas, +with an interface designed to ease integration into diverse network +applications. Librsync encapsulates the core algorithms of the rsync +protocol, which help with efficient calculation of the differences +between two files. The rsync algorithm is different from most +differencing algorithms because it does not require the presence of +the two files to calculate the delta. Instead, it requires a set of +checksums of each block of one file, which together form a signature +for that file. Blocks at any point in the other file which have the +same checksum are likely to be identical, and whatever remains is the +difference. diff --git a/devel/librsync/Makefile b/devel/librsync/Makefile new file mode 100644 index 00000000000..5ccddf9cb7e --- /dev/null +++ b/devel/librsync/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/10/15 13:49:19 agc Exp $ +# + +DISTNAME= librsync-0.9.5.1 +CATEGORIES= devel net +MASTER_SITES= http://rdiff-backup.stanford.edu/ + +MAINTAINER= davids@idiom.com +HOMEPAGE= http://rdiff-backup.stanford.edu/ +COMMENT= checksum-based differencing library + +GNU_CONFIGURE= # defined +CONFIGURE_ARGS+= --without-included-popt +USE_LIBTOOL= yes +LIBTOOL_OVERRIDE= ${WRKSRC}/libtool +USE_BUILDLINK2= yes + +.include "../../archivers/bzip2/buildlink2.mk" +.include "../../devel/gettext-lib/buildlink2.mk" +.include "../../devel/popt/buildlink2.mk" +.include "../../devel/zlib/buildlink2.mk" + +.include "../../mk/bsd.pkg.mk" diff --git a/devel/librsync/PLIST b/devel/librsync/PLIST new file mode 100644 index 00000000000..45e828b0713 --- /dev/null +++ b/devel/librsync/PLIST @@ -0,0 +1,10 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/10/15 13:49:19 agc Exp $ +bin/rdiff +include/rsync.h +lib/librsync.a +lib/librsync.la +lib/librsync.so +lib/librsync.so.1 +lib/librsync.so.1.1 +man/man1/rdiff.1 +man/man3/librsync.3 diff --git a/devel/librsync/distinfo b/devel/librsync/distinfo new file mode 100644 index 00000000000..7159ea97437 --- /dev/null +++ b/devel/librsync/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/10/15 13:49:19 agc Exp $ + +SHA1 (librsync-0.9.5.1.tar.gz) = e9f4bfcf1c37e2b8211c88643940de1bf70e710d +Size (librsync-0.9.5.1.tar.gz) = 274507 bytes |