aboutsummaryrefslogtreecommitdiffstats
path: root/net/vde2
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2012-07-21 06:06:49 +0800
committerbapt <bapt@FreeBSD.org>2012-07-21 06:06:49 +0800
commitb28e3318ddee33e6d884b53da0e0a2f17396f066 (patch)
tree49ba9e23c6d81a0b32bbbfc0906d5438bd3e7c2d /net/vde2
parentc82e931cc2e2c113f46440d70425b75af284c892 (diff)
downloadfreebsd-ports-gnome-b28e3318ddee33e6d884b53da0e0a2f17396f066.tar.gz
freebsd-ports-gnome-b28e3318ddee33e6d884b53da0e0a2f17396f066.tar.zst
freebsd-ports-gnome-b28e3318ddee33e6d884b53da0e0a2f17396f066.zip
Convert to new options framework
Diffstat (limited to 'net/vde2')
-rw-r--r--net/vde2/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/vde2/Makefile b/net/vde2/Makefile
index 0de66b0e4fd2..aace9d343249 100644
--- a/net/vde2/Makefile
+++ b/net/vde2/Makefile
@@ -16,7 +16,8 @@ COMMENT= User-mode virtual ethernet infrastructure
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