mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
dd761bd963
http://rsync.samba.org/cgi-bin/rsync?findid=1706. PR: ports/10987 Submitted by: Cy Schubert <cschuber@uumail.gov.bc.ca>
40 lines
1.1 KiB
Makefile
40 lines
1.1 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.22 1999/01/12 18:24:16 scrappy Exp $
|
|
#
|
|
|
|
DISTNAME= rsync-2.3.1
|
|
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
|
|
|
|
Y2K= http://rsync.samba.org/rsync/y2k.html
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= rsync.1
|
|
MAN5= rsyncd.conf.5
|
|
|
|
pre-configure:
|
|
@${MV} ${WRKSRC}/rsync.1 ${WRKSRC}/rsync.1.in
|
|
@${SED} -e 's:%%PREFIX%%:${PREFIX}:g' \
|
|
${WRKSRC}/rsync.1.in > ${WRKSRC}/rsync.1
|
|
|
|
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>
|