diff options
author | agc <agc@pkgsrc.org> | 2002-10-15 13:49:19 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-10-15 13:49:19 +0000 |
commit | b8e98b26ad65c8e6046b549eb8cca7df71ae3da2 (patch) | |
tree | 622299b42cbb24d61ef91e235c5d55628de16d04 /devel/librsync/Makefile | |
parent | f6d22fd976570b7bece65e0db8b209d6621f36f6 (diff) | |
download | pkgsrc-b8e98b26ad65c8e6046b549eb8cca7df71ae3da2.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/librsync/Makefile')
-rw-r--r-- | devel/librsync/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
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" |