svn commit: r416270 - head/net/rsync

Emanuel Haupt ehaupt at FreeBSD.org
Thu Jun 2 07:35:51 UTC 2016


Author: ehaupt
Date: Thu Jun  2 07:35:49 2016
New Revision: 416270
URL: https://svnweb.freebsd.org/changeset/ports/416270

Log:
  Fix the logic of the POPT_PORT option.
  
  - POPT_CONFIGURE_WITH should actually be POPT_PORT_CONFIGURE_WITH
  - The whole ^POPT block logic is reversing the logic
  - Bump PORTREVISION since we have a change of dependencie
  
  PR:		209837 (based on)
  Submitted by:	Martin Birgmeier <la5lbtyi at aon.at>
  MFH:		2016Q2

Modified:
  head/net/rsync/Makefile

Modified: head/net/rsync/Makefile
==============================================================================
--- head/net/rsync/Makefile	Thu Jun  2 07:29:01 2016	(r416269)
+++ head/net/rsync/Makefile	Thu Jun  2 07:35:49 2016	(r416270)
@@ -4,7 +4,7 @@
 PORTNAME=	rsync
 PORTVERSION=	3.1.2
 CATEGORIES=	net ipv6
-PORTREVISION=	3
+PORTREVISION=	4
 MASTER_SITES=	http://rsync.samba.org/ftp/rsync/ \
 		ftp://ftp.samba.org/pub/rsync/ \
 		ftp://ftp.sunet.se/pub/unix/admin/rsync/  \
@@ -70,10 +70,11 @@ ICONV_CPPFLAGS=	-I${LOCALBASE}/include
 ICONV_LDFLAGS=	-L${LOCALBASE}/lib
 ICONV_CONFIGURE_ENABLE=	iconv iconv-open
 
-POPT_PORT_LIB_DEPENDS=	libpopt.so:devel/popt
-POPT_PORT_CPPFLAGS=	-I${LOCALBASE}/include
-POPT_PORT_LDFLAGS=	-L${LOCALBASE}/lib
-POPT_CONFIGURE_WITH=	included-popt
+POPT_PORT_LIB_DEPENDS_OFF=	libpopt.so:devel/popt
+POPT_PORT_CPPFLAGS_OFF=	-I${LOCALBASE}/include
+POPT_PORT_LDFLAGS_OFF=	-L${LOCALBASE}/lib
+
+POPT_PORT_CONFIGURE_WITH=	included-popt
 
 SSH_CONFIGURE_ON=	--with-rsh=ssh
 SSH_CONFIGURE_OFF=	--with-rsh=rsh


More information about the svn-ports-head mailing list