diff options
author | asami <asami@FreeBSD.org> | 1996-08-16 15:23:01 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-08-16 15:23:01 +0800 |
commit | a4073654e7103a2e3312cc5b8d082b4f47be9858 (patch) | |
tree | 11b1bd7552e518db217cd9063fd700ece1f20dc1 /net/rsync | |
parent | cf318dfdd8d6ea6f1bfa6bda8cab361a18e6aacb (diff) | |
download | freebsd-ports-gnome-a4073654e7103a2e3312cc5b8d082b4f47be9858.tar.gz freebsd-ports-gnome-a4073654e7103a2e3312cc5b8d082b4f47be9858.tar.zst freebsd-ports-gnome-a4073654e7103a2e3312cc5b8d082b4f47be9858.zip |
A network file distribution/synchronisation utility.
Submitted by: David O'Brien (obrien@cs.ucdavis.edu)
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 27 | ||||
-rw-r--r-- | net/rsync/distinfo | 1 | ||||
-rw-r--r-- | net/rsync/pkg-comment | 1 | ||||
-rw-r--r-- | net/rsync/pkg-descr | 16 | ||||
-rw-r--r-- | net/rsync/pkg-plist | 3 |
5 files changed, 48 insertions, 0 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile new file mode 100644 index 000000000000..91401c6d661b --- /dev/null +++ b/net/rsync/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: rsync +# Version required: 0.37 +# Date created: Sat Aug 3, 1996 +# Whom: David O'Brien (obrien@cs.ucdavis.edu) +# +# $Id: Makefile,v 1.5 1995/04/24 03:38:04 asami Exp $ +# + +DISTNAME= rsync-1.5.1 +CATEGORIES+= net +MASTER_SITES= ftp://samba.anu.edu.au/pub/rsync/ + +MAINTAINER= obrien@cs.ucdavis.edu + +GNU_CONFIGURE= yes + +post-install: + strip ${PREFIX}/bin/rsync +.if !defined(NOMANCOMPRESS) + gzip -9nf ${PREFIX}/man/man1/rsync.1 +.endif +.if !defined(NOPORTDOCS) + mkdir -p ${PREFIX}/share/doc/rsync + ${INSTALL_DATA} ${WRKSRC}/tech_report.ps ${PREFIX}/share/doc/rsync +.endif + +.include <bsd.port.mk> diff --git a/net/rsync/distinfo b/net/rsync/distinfo new file mode 100644 index 000000000000..bd115fb1a06a --- /dev/null +++ b/net/rsync/distinfo @@ -0,0 +1 @@ +MD5 (rsync-1.5.1.tar.gz) = b775b33d9a64c481bed584694ab97856 diff --git a/net/rsync/pkg-comment b/net/rsync/pkg-comment new file mode 100644 index 000000000000..30189ea49a11 --- /dev/null +++ b/net/rsync/pkg-comment @@ -0,0 +1 @@ +A network file distribution/synchronisation utility. diff --git a/net/rsync/pkg-descr b/net/rsync/pkg-descr new file mode 100644 index 000000000000..046caa04fcc6 --- /dev/null +++ b/net/rsync/pkg-descr @@ -0,0 +1,16 @@ +rsync is a replacement for rcp that has many more features. + +rsyns uses the "rsync algorithm" which provides a very fast method for +bringing remote files into sync. It does this by sending just the +differences in the files across the link, without requiring that both +sets of files are present at one of the ends of the link beforehand. +This makes rsync a good remote file distribution/synchronisation utility +in a dialup PPP/SLIP environment. + +Note, requires rsync on the destination machine. + +There is a Computer Science Technical Report on the rsync algorithm is +included in the distribution, and is available as +ftp://samba.anu.edu.au/pub/rsync/tech_report.ps + + -- David (obrien@cs.ucdavis.edu) diff --git a/net/rsync/pkg-plist b/net/rsync/pkg-plist new file mode 100644 index 000000000000..efb47cb8c644 --- /dev/null +++ b/net/rsync/pkg-plist @@ -0,0 +1,3 @@ +bin/rsync +man/man1/rsync.1.gz +share/doc/rsync/tech_report.ps |