diff options
author | dinoex <dinoex@FreeBSD.org> | 2012-09-16 23:08:09 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2012-09-16 23:08:09 +0800 |
commit | 55498f76b725a5f6a18fe0cd70def79ce1eda8e3 (patch) | |
tree | 35ea5c4ba29a50e8c6c2212761b3e64f496cc6be /net/x11vnc | |
parent | 052fa231fefac1276805ffbb3d5f63fc2c208b06 (diff) | |
download | freebsd-ports-gnome-55498f76b725a5f6a18fe0cd70def79ce1eda8e3.tar.gz freebsd-ports-gnome-55498f76b725a5f6a18fe0cd70def79ce1eda8e3.tar.zst freebsd-ports-gnome-55498f76b725a5f6a18fe0cd70def79ce1eda8e3.zip |
- use OPTIONS_DEFINE
Diffstat (limited to 'net/x11vnc')
-rw-r--r-- | net/x11vnc/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/net/x11vnc/Makefile b/net/x11vnc/Makefile index 1fa30b926d86..13ae028ae7c4 100644 --- a/net/x11vnc/Makefile +++ b/net/x11vnc/Makefile @@ -33,16 +33,17 @@ CPPFLAGS+= -I${LOCALBASE}/include MAN1= x11vnc.1 PORTDOCS= AUTHORS COPYING ChangeLog NEWS README README.LibVNCServer TODO -OPTIONS= NLS "Build with gettext support" on \ - AVAHI "Enable AVAHI (ZeroConf)" on +OPTIONS_DEFINE=NLS AVAHI +OPTIONS_DEFAULT=NLS AVAHI +NO_OPTIONS_SORT=yes -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes .endif -.if !defined(WITHOUT_AVAHI) +.if ${PORT_OPTIONS:MAVAHI} LIB_DEPENDS+= avahi-common:${PORTSDIR}/net/avahi-app .else CONFIGURE_ARGS+= --without-avahi @@ -61,4 +62,4 @@ post-install: @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |