svn commit: r329194 - head/net/rsync

Emanuel Haupt ehaupt at FreeBSD.org
Thu Oct 3 14:07:08 UTC 2013


Author: ehaupt
Date: Thu Oct  3 14:07:08 2013
New Revision: 329194
URL: http://svnweb.freebsd.org/changeset/ports/329194

Log:
  Provide a patch to workaround a problem with the configure script ignoring
  --with-rsyncd-conf.
  
  PR:		182596 (based on)
  Submitted by:	Alexey Markov <redrat at mail.ru>

Modified:
  head/net/rsync/Makefile

Modified: head/net/rsync/Makefile
==============================================================================
--- head/net/rsync/Makefile	Thu Oct  3 14:03:29 2013	(r329193)
+++ head/net/rsync/Makefile	Thu Oct  3 14:07:08 2013	(r329194)
@@ -3,6 +3,7 @@
 
 PORTNAME=	rsync
 PORTVERSION=	3.1.0
+PORTREVISION=	1
 CATEGORIES=	net ipv6
 MASTER_SITES=	http://rsync.samba.org/ftp/%SUBDIR%/ \
 		ftp://ftp.samba.org/pub/%SUBDIR%/ \
@@ -119,6 +120,9 @@ post-patch:
 	@${REINPLACE_CMD} -e 's|CFLAGS|CONFIGUREDCFLAGS|' \
 		-e 's|perl.*|${DO_NADA}|' \
 			${WRKSRC}/Makefile.in
+# workaround for bug in configure which ignores --with-rsyncd-conf 
+	@${REINPLACE_CMD} -e 's|RSYNCD_SYSCONF|"${PREFIX}/etc/rsyncd.conf"|' \
+			${WRKSRC}/clientserver.c
 
 pre-configure:
 	@${REINPLACE_CMD} -e 's:/etc/:${PREFIX}/etc/:g'  \


More information about the svn-ports-all mailing list