853d238a03
Changes include rsyncd_trees lives in /var/db rather than /etc. Also rsyncd is installed in PREFIX/libexec, not PREFIX/bin.
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
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.9 1997/10/10 06:53:34 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= rsync-1.6.8
|
|
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-patch:
|
|
@${CP} ${FILESDIR}/clientserver.c ${WRKSRC}
|
|
@${CP} ${FILESDIR}/README.daemon ${WRKSRC}
|
|
@${CP} ${FILESDIR}/rsyncd_trees.eg ${WRKSRC}
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/rsync
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/rsync
|
|
${INSTALL_DATA} ${WRKSRC}/tech_report.tex ${PREFIX}/share/doc/rsync
|
|
${INSTALL_DATA} ${FILESDIR}/README.daemon ${PREFIX}/share/doc/rsync
|
|
${INSTALL_DATA} ${FILESDIR}/rsyncd_trees.eg ${PREFIX}/share/doc/rsync
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|