svn commit: r301253 - head/net/vde2

Baptiste Daroussin bapt at FreeBSD.org
Fri Jul 20 22:06:50 UTC 2012


Author: bapt
Date: Fri Jul 20 22:06:49 2012
New Revision: 301253
URL: http://svn.freebsd.org/changeset/ports/301253

Log:
  Convert to new options framework

Modified:
  head/net/vde2/Makefile

Modified: head/net/vde2/Makefile
==============================================================================
--- head/net/vde2/Makefile	Fri Jul 20 22:05:13 2012	(r301252)
+++ head/net/vde2/Makefile	Fri Jul 20 22:06:49 2012	(r301253)
@@ -16,7 +16,8 @@ COMMENT=	User-mode virtual ethernet infr
 LICENSE=	BSD GPLv2 LGPL21
 LICENSE_COMB=	multi
 
-OPTIONS=	PYTHON "Enable python bindings support" on
+OPTIONS_DEFINE=	PYTHON
+OPTIONS_DEFAULT=	PYTHON
 
 CONFLICTS=	vde-[0-9]*
 
@@ -37,7 +38,7 @@ MAN8=		vde_tunctl.8
 
 .include <bsd.port.options.mk>
 
-.if defined(WITHOUT_PYTHON)
+.if ${PORT_OPTIONS:MPYTHON}
 CONFIGURE_ARGS+=--disable-python
 PLIST_SUB+=	PYTHON="@comment "
 .else



More information about the svn-ports-all mailing list