diff options
-rw-r--r-- | net/vino/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/net/vino/Makefile b/net/vino/Makefile index c56835ec6b58..909de0871ad1 100644 --- a/net/vino/Makefile +++ b/net/vino/Makefile @@ -8,6 +8,7 @@ PORTNAME= vino PORTVERSION= 2.18.0 +PORTREVISION= 1 CATEGORIES= net gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -31,4 +32,14 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ GCONF_SCHEMAS= vino-server.schemas -.include <bsd.port.mk> +OPTIONS= IPV6 "Enable IPv6 support" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_IPV6) +CONFIGURE_ARGS+= --enable-ipv6 +.else +CONFIGURE_ARGS+= --disable-ipv6 +.endif + +.include <bsd.port.post.mk> |