diff options
author | sylvio <sylvio@FreeBSD.org> | 2012-06-18 03:51:49 +0800 |
---|---|---|
committer | sylvio <sylvio@FreeBSD.org> | 2012-06-18 03:51:49 +0800 |
commit | d8f4d962b7a7faa3c2544d75133027dae0bec422 (patch) | |
tree | 8284c7201d315d85022feac989b47928dae63394 /audio/ario | |
parent | 6f21e3f6816fef28d0211b5ca15cd63a6591aee5 (diff) | |
download | freebsd-ports-gnome-d8f4d962b7a7faa3c2544d75133027dae0bec422.tar.gz freebsd-ports-gnome-d8f4d962b7a7faa3c2544d75133027dae0bec422.tar.zst freebsd-ports-gnome-d8f4d962b7a7faa3c2544d75133027dae0bec422.zip |
- Converted to OptionsNG framework
PR: ports/169040
Submitted by: Grzegorz Blach <magik@roorback.net> (maintainer)
Diffstat (limited to 'audio/ario')
-rw-r--r-- | audio/ario/Makefile | 9 |
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 |