diff options
author | asami <asami@FreeBSD.org> | 1996-08-16 07:23:01 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-08-16 07:23:01 +0000 |
commit | a4073654e7103a2e3312cc5b8d082b4f47be9858 (patch) | |
tree | 11b1bd7552e518db217cd9063fd700ece1f20dc1 /net/rsync/Makefile | |
parent | cf318dfdd8d6ea6f1bfa6bda8cab361a18e6aacb (diff) | |
download | FreeBSD-ports-a4073654e7103a2e3312cc5b8d082b4f47be9858.zip FreeBSD-ports-a4073654e7103a2e3312cc5b8d082b4f47be9858.tar.gz |
A network file distribution/synchronisation utility.
Submitted by: David O'Brien (obrien@cs.ucdavis.edu)
Diffstat (limited to 'net/rsync/Makefile')
-rw-r--r-- | net/rsync/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile new file mode 100644 index 0000000..91401c6 --- /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> |