aboutsummaryrefslogtreecommitdiff
path: root/audio/ario
diff options
context:
space:
mode:
authorSylvio Cesar Teixeira <sylvio@FreeBSD.org>2012-06-17 19:51:49 +0000
committerSylvio Cesar Teixeira <sylvio@FreeBSD.org>2012-06-17 19:51:49 +0000
commitf8047bb9ce068821acb0e1283a21e5be7b0bfc3e (patch)
treeb0cd13b4d64ba226b5a446ca2c7a81afb08a97bd /audio/ario
parenteb857d6b3811c39388fd3359f02cbf726db560dd (diff)
downloadports-f8047bb9ce068821acb0e1283a21e5be7b0bfc3e.tar.gz
ports-f8047bb9ce068821acb0e1283a21e5be7b0bfc3e.zip
- Converted to OptionsNG framework
PR: ports/169040 Submitted by: Grzegorz Blach <magik@roorback.net> (maintainer)
Notes
Notes: svn path=/head/; revision=299483
Diffstat (limited to 'audio/ario')
-rw-r--r--audio/ario/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/audio/ario/Makefile b/audio/ario/Makefile
index d74aa5a16725..9b2a021cb13f 100644
--- a/audio/ario/Makefile
+++ b/audio/ario/Makefile
@@ -32,19 +32,20 @@ USE_GMAKE= yes
USE_GNOME= gtk20 gnomehack
INSTALLS_ICONS= yes
-OPTIONS= AVAHI "Zeroconf support (Avahi)" Off \
- NLS "NLS support" On
+OPTIONS_DEFINE= AVAHI
+AVAHI_DESC= Zeroconf support (Avahi)
+OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
-.if defined(WITH_AVAHI)
+.if ${PORT_OPTIONS:MAVAHI}
LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app
CONFIGURE_ARGS+= --enable-avahi
.else
CONFIGURE_ARGS+= --disable-avahi
.endif
-.if ! defined(WITHOUT_NLS)
+.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
CONFIGURE_ARGS+= --enable-nls
.else