svn commit: r463515 - head/net/isc-dhcp44-server

Ryan Steinmetz zi at FreeBSD.org
Sat Mar 3 16:50:07 UTC 2018


Author: zi
Date: Sat Mar  3 16:50:06 2018
New Revision: 463515
URL: https://svnweb.freebsd.org/changeset/ports/463515

Log:
  - Fix more logic issues after OPTIONS edits
  
  PR:		226328

Modified:
  head/net/isc-dhcp44-server/Makefile

Modified: head/net/isc-dhcp44-server/Makefile
==============================================================================
--- head/net/isc-dhcp44-server/Makefile	Sat Mar  3 16:34:13 2018	(r463514)
+++ head/net/isc-dhcp44-server/Makefile	Sat Mar  3 16:50:06 2018	(r463515)
@@ -19,7 +19,7 @@ LICENSE=	MPL20
 
 USES=		gmake
 
-PORTREVISION_SERVER=	0
+PORTREVISION_SERVER=	1
 PORTREVISION_CLIENT=	0
 PORTREVISION_RELAY=	0
 
@@ -89,8 +89,6 @@ PKGMESSAGE_SUB=	PREFIX="${PREFIX}" MAN1PREFIX="${MAN1P
 
 BINLEASES_CONFIGURE_ENABLE=	binary-leases
 PARANOIA_CONFIGURE_ENABLE=	paranoia early-chroot
-PARANOIA_CONFIGURE_VARS=	PARANOIAOPT="yes"
-PARANOIA_CONFIGURE_VARS_OFF=	PARANOIAOPT="no"
 LDAP_CONFIGURE_WITH=		ldap ldapcrypto
 LDAP_USE=			OPENLDAP
 LDAP_USES=			shebangfix
@@ -115,6 +113,12 @@ SHEBANG_FILES=	contrib/ldap/dhcpd-conf-to-ldap
 
 .if empty(PORT_OPTIONS:MBIND_SYMBOLS)
 EXTRA_PATCHES+=${PATCHDIR}/extra-patch-bind_Makefile.in
+.endif
+
+.if ${PORT_OPTIONS:MPARANOIA}
+SUB_LIST+=	PARANOIAOPT="yes"
+.else
+SUB_LIST+=	PARANOIAOPT="no"
 .endif
 
 post-patch:


More information about the svn-ports-all mailing list