1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00

- Provide two additional build OPTIONS:

* File system flags support patch, adds --fileflags
   * ACL support patch, adds --acls
- Takeover maintainership

PR:		121444
Approved by:	pav (maintainer)
This commit is contained in:
Emanuel Haupt 2008-03-06 22:12:12 +00:00
parent 257c7cf052
commit 237b260c0b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=208537
2 changed files with 21 additions and 2 deletions

View File

@ -15,8 +15,10 @@ MASTER_SITES= http://rsync.samba.org/ftp/%SUBDIR%/ \
ftp://ftp.fu-berlin.de/pub/unix/network/%SUBDIR%/ \
http://www.mirrorservice.org/sites/rsync.samba.org/
MASTER_SITE_SUBDIR= rsync
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
DISTFILES+= ${PORTNAME}-patches-${PORTVERSION}${EXTRACT_SUFX}
MAINTAINER= pav@FreeBSD.org
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= A network file distribution/synchronization utility
USE_RC_SUBR= rsyncd.sh
@ -35,10 +37,24 @@ MAN1= rsync.1
MAN5= rsyncd.conf.5
OPTIONS= POPT_PORT "Use popt from devel/popt instead of bundled one" off \
SSH "Use SSH instead of RSH" on
SSH "Use SSH instead of RSH" on \
FLAGS "File system flags support patch, adds --fileflags" off \
ACL "ACL support patch, adds --acls" off
.include <bsd.port.pre.mk>
.if defined(WITH_FLAGS)
USE_PERL5_BUILD=yes
PATCH_STRIP= -p1
EXTRA_PATCHES+= ${WRKSRC}/patches/fileflags.diff
.endif
.if defined(WITH_ACL)
USE_PERL5_BUILD=yes
PATCH_STRIP= -p1
EXTRA_PATCHES+= ${WRKSRC}/patches/acls.diff
.endif
.if defined(WITH_POPT_PORT)
LIB_DEPENDS+= popt.0:${PORTSDIR}/devel/popt
CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \

View File

@ -1,3 +1,6 @@
MD5 (rsync-3.0.0.tar.gz) = 2122d460b4119749c6e5993938a9b501
SHA256 (rsync-3.0.0.tar.gz) = 17697db5bb9de399b71f7927070f60b3554b70b0ecc0419b50455d56560ea169
SIZE (rsync-3.0.0.tar.gz) = 757821
MD5 (rsync-patches-3.0.0.tar.gz) = 2d3560f213ae59ebee67f81fc55a02a7
SHA256 (rsync-patches-3.0.0.tar.gz) = 936eb1b21fe3c1082d691cc69139e79ade8c98ff93859f52449ade12e53f07f6
SIZE (rsync-patches-3.0.0.tar.gz) = 130581