mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
fdcacc4197
Note the "server" extension is now part of rsync. HOWEVER, it is very different from the previous FreeBSD specific version we were patching in. Submitted by: Hiroki HAMAOKA <hama@xaxon.co.jp>
33 lines
894 B
Makefile
33 lines
894 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: rsync
|
|
# Version required: 1.6.2
|
|
# Date created: Sat Aug 3, 1996
|
|
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
|
|
#
|
|
# $Id: Makefile,v 1.13 1998/04/24 07:04:07 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= rsync-2.0.18
|
|
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
|
|
MAN5= rsyncd.conf.5
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/rsync
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/rsync
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/rsync
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/rsync
|
|
${INSTALL_DATA} ${WRKSRC}/tech_report.tex ${PREFIX}/share/doc/rsync
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|