diff options
author | Sylvio Cesar Teixeira <sylvio@FreeBSD.org> | 2012-06-17 19:51:49 +0000 |
---|---|---|
committer | Sylvio Cesar Teixeira <sylvio@FreeBSD.org> | 2012-06-17 19:51:49 +0000 |
commit | f8047bb9ce068821acb0e1283a21e5be7b0bfc3e (patch) | |
tree | b0cd13b4d64ba226b5a446ca2c7a81afb08a97bd /audio/ario/Makefile | |
parent | eb857d6b3811c39388fd3359f02cbf726db560dd (diff) |
Notes
Diffstat (limited to 'audio/ario/Makefile')
-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 |