1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Converted to OptionsNG framework

PR:		ports/169040
Submitted by:	Grzegorz Blach <magik@roorback.net> (maintainer)
This commit is contained in:
Sylvio Cesar Teixeira 2012-06-17 19:51:49 +00:00
parent eb857d6b38
commit f8047bb9ce
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=299483

View File

@ -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