diff options
author | agc <agc@pkgsrc.org> | 1998-01-23 09:57:21 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-01-23 09:57:21 +0000 |
commit | 40dcb6b9048f0b3f6c7b78f1bafcc634840907b2 (patch) | |
tree | 967b2a40eff738e8fff7a750ffdac520163b8936 /net/rsync/Makefile | |
parent | 9896f91228f0630df9260cdb3dc8b10262d04ac4 (diff) | |
download | pkgsrc-40dcb6b9048f0b3f6c7b78f1bafcc634840907b2.tar.gz |
Initial import of rsync, a utility to synchronise directory trees
across machines in an efficient manner, into the NetBSD packages
collection.
This is originally from the FreeBSD ports collection, but I've
(a) deleted the patches which add support for a client for the public
rsync daemon (I have no real way to test that under NetBSD), and
(b) added a patch to use mkstemp() instead of a mktemp(), open()
combination, and
(c) also upgraded to version 1.6.9 while I was at it.
Diffstat (limited to 'net/rsync/Makefile')
-rw-r--r-- | net/rsync/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile new file mode 100644 index 00000000000..345277a5639 --- /dev/null +++ b/net/rsync/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 1998/01/23 09:57:21 agc Exp $ +# +# New ports collection makefile for: rsync +# Version required: 1.6.9 +# Date created: Sat Aug 3, 1996 +# Whom: David O'Brien (obrien@cs.ucdavis.edu) +# +# FreeBSD Id: Makefile,v 1.10 1998/01/03 10:14:21 obrien Exp +# + +DISTNAME= rsync-1.6.9 +CATEGORIES= net +MASTER_SITES= ftp://samba.anu.edu.au/pub/rsync/ \ + ftp://sunsite.auc.dk/pub/unix/rsync/ \ + ftp://ftp.sunet.se/pub/unix/admin/rsync \ + ftp://ftp.fu-berlin.de/pub/unix/network/rsync/ + +MAINTAINER= obrien@FreeBSD.org + +GNU_CONFIGURE= yes +MAN1= rsync.1 + +post-install: + @strip ${PREFIX}/bin/rsync +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/rsync + ${INSTALL_DATA} ${WRKSRC}/tech_report.tex ${PREFIX}/share/doc/rsync +.endif + +.include <bsd.port.mk> |