Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Aug 2016 03:17:24 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r419794 - in head/sysutils: cfengine36 cfengine37 cfengine38 cfengine39
Message-ID:  <201608080317.u783HO99051608@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Mon Aug  8 03:17:24 2016
New Revision: 419794
URL: https://svnweb.freebsd.org/changeset/ports/419794

Log:
  For sysutils/cfengine3[6-9], replace *_CONFIGURE_{ON,OFF} with
  *CONFIGURE_WITH, as it is more approriate here.
  
  Reminded by:	mat@

Modified:
  head/sysutils/cfengine36/Makefile
  head/sysutils/cfengine37/Makefile
  head/sysutils/cfengine38/Makefile
  head/sysutils/cfengine39/Makefile

Modified: head/sysutils/cfengine36/Makefile
==============================================================================
--- head/sysutils/cfengine36/Makefile	Mon Aug  8 01:30:23 2016	(r419793)
+++ head/sysutils/cfengine36/Makefile	Mon Aug  8 03:17:24 2016	(r419794)
@@ -28,9 +28,8 @@ USE_RC_SUBR=	cf-execd cf-serverd cf-moni
 
 MAKE_JOBS_UNSAFE=	yes
 USE_LDCONFIG=	yes
-USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
-USES=		autoreconf cpe gmake libtool shebangfix
+USES=		autoreconf cpe gmake libtool shebangfix ssl
 SHEBANG_FILES=	examples/remake_outputs.pl
 CFLAGS+=	-Wno-return-type
 CPPFLAGS+=	-I${LOCALBASE}/include
@@ -54,14 +53,14 @@ LIB_DEPENDS+=	libpcre.so:devel/pcre \
 OPTIONS_DEFINE=	PGSQL MYSQL LIBVIRT
 
 PGSQL_USES=		pgsql
-PGSQL_CONFIGURE_ON=	--with-postgresql=${LOCALBASE}
+PGSQL_CONFIGURE_WITH=	--with-postgresql=${LOCALBASE}
 
-MYSQL_USE=		MYSQL=yes
-MYSQL_CONFIGURE_ON=	--with-mysql=${LOCALBASE}
+MYSQL_USES=		mysql
+MYSQL_CONFIGURE_WITH=	--with-mysql=${LOCALBASE}
 MYSQL_LIB_DEPENDS=		libmysqlclient.so:${_MYSQL_CLIENT}
 MYSQL_LDFLAGS=		-L${LOCALBASE}/lib/mysql
 
-LIBVIRT_CONFIGURE_ON=	--with-libvirt=${LOCALBASE}
+LIBVIRT_CONFIGURE_WITH=	--with-libvirt=${LOCALBASE}
 LIBVIRT_LIB_DEPENDS+=		libvirt.so:devel/libvirt
 
 .include <bsd.port.mk>

Modified: head/sysutils/cfengine37/Makefile
==============================================================================
--- head/sysutils/cfengine37/Makefile	Mon Aug  8 01:30:23 2016	(r419793)
+++ head/sysutils/cfengine37/Makefile	Mon Aug  8 03:17:24 2016	(r419794)
@@ -54,16 +54,14 @@ LIB_DEPENDS+=	libpcre.so:devel/pcre \
 OPTIONS_DEFINE=	PGSQL MYSQL LIBVIRT
 
 PGSQL_USES=		pgsql
-PGSQL_CONFIGURE_ON=	--with-postgresql=${LOCALBASE}
-PGSQL_CONFIGURE_OFF=	--without-postgresql
+PGSQL_CONFIGURE_WITH=	--with-postgresql=${LOCALBASE}
 
 MYSQL_USE=		MYSQL=yes
-MYSQL_CONFIGURE_ON=	--with-mysql=${LOCALBASE}
+MYSQL_CONFIGURE_WITH=	--with-mysql=${LOCALBASE}
 MYSQL_LIB_DEPENDS=		libmysqlclient.so:${_MYSQL_CLIENT}
 MYSQL_LDFLAGS=		-L${LOCALBASE}/lib/mysql
 
-LIBVIRT_CONFIGURE_ON=	--with-libvirt=${LOCALBASE}
-LIBVIRT_CONFIGURE_OFF=	--without-libvirt
+LIBVIRT_CONFIGURE_WITH=	--with-libvirt=${LOCALBASE}
 LIBVIRT_LIB_DEPENDS=	libvirt.so:devel/libvirt
 
 .include <bsd.port.mk>

Modified: head/sysutils/cfengine38/Makefile
==============================================================================
--- head/sysutils/cfengine38/Makefile	Mon Aug  8 01:30:23 2016	(r419793)
+++ head/sysutils/cfengine38/Makefile	Mon Aug  8 03:17:24 2016	(r419794)
@@ -56,16 +56,14 @@ LIB_DEPENDS+=	libpcre.so:devel/pcre \
 OPTIONS_DEFINE=	PGSQL MYSQL LIBVIRT
 
 PGSQL_USES=		pgsql
-PGSQL_CONFIGURE_ON=	--with-postgresql=${LOCALBASE}
-PGSQL_CONFIGURE_OFF=	--without-postgresql
+PGSQL_CONFIGURE_WITH=	--with-postgresql=${LOCALBASE}
 
 MYSQL_USE=		MYSQL=yes
-MYSQL_CONFIGURE_ON=	--with-mysql=${LOCALBASE}
+MYSQL_CONFIGURE_WITH=	--with-mysql=${LOCALBASE}
 MYSQL_LIB_DEPENDS=		libmysqlclient.so:${_MYSQL_CLIENT}
 MYSQL_LDFLAGS=		-L${LOCALBASE}/lib/mysql
 
-LIBVIRT_CONFIGURE_ON=	--with-libvirt=${LOCALBASE}
-LIBVIRT_CONFIGURE_OFF=	--without-libvirt
+LIBVIRT_CONFIGURE_WITH=	--with-libvirt=${LOCALBASE}
 LIBVIRT_LIB_DEPENDS=	libvirt.so:devel/libvirt
 
 .include <bsd.port.mk>

Modified: head/sysutils/cfengine39/Makefile
==============================================================================
--- head/sysutils/cfengine39/Makefile	Mon Aug  8 01:30:23 2016	(r419793)
+++ head/sysutils/cfengine39/Makefile	Mon Aug  8 03:17:24 2016	(r419794)
@@ -59,14 +59,14 @@ LIB_DEPENDS+=	libpcre.so:devel/pcre \
 OPTIONS_DEFINE=	PGSQL MYSQL LIBVIRT
 
 PGSQL_USES=		pgsql
-PGSQL_CONFIGURE_ON=	--with-postgresql=${LOCALBASE}
+PGSQL_CONFIGURE_WITH=	--with-postgresql=${LOCALBASE}
 
 MYSQL_USES=		mysql
-MYSQL_CONFIGURE_ON=	--with-mysql=${LOCALBASE}
+MYSQL_CONFIGURE_WITH=	--with-mysql=${LOCALBASE}
 MYSQL_LIB_DEPENDS=		libmysqlclient.so:${_MYSQL_CLIENT}
 MYSQL_LDFLAGS=		-L${LOCALBASE}/lib/mysql
 
-LIBVIRT_CONFIGURE_ON=	--with-libvirt=${LOCALBASE}
+LIBVIRT_CONFIGURE_WITH=	--with-libvirt=${LOCALBASE}
 LIBVIRT_LIB_DEPENDS+=		libvirt.so:devel/libvirt
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608080317.u783HO99051608>