summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2012-12-13 10:32:51 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2012-12-13 10:32:51 +0000
commitaac1104b4f5bcbda878aa3321d58509fb209eb6b (patch)
tree7102d1087f7eac5be112c55976ac8e11ef137203
parentAdd devel/p5-UNIVERSAL-ref 0.14, a Perl module that turns the ref() (diff)
Convert to new option framework
-rw-r--r--net/freeswitch/Makefile18
1 files changed, 10 insertions, 8 deletions
diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile
index d525303784f4..20202d166d24 100644
--- a/net/freeswitch/Makefile
+++ b/net/freeswitch/Makefile
@@ -19,26 +19,28 @@ RUN_DEPENDS= ${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch-core
NO_WRKSUBDIR= yes
NO_BUILD= yes
-OPTIONS= SOUNDS "Sound files for use with FreeSwitch PBX" on \
- MUSIC "Music on hold for use with FreeSwitch PBX" on \
- PIZZA "Install Pizza Shop voice demo" off \
- SCRIPTS "Install Freeswitch various scripts" off \
+OPTIONS_DEFINE= SOUNDS MUSIC PIZZA SCRIPTS
+OPTIONS_DEFAULT= SOUNDS MUSIC
+SOUNDS_DESC= Sound files for use with FreeSwitch PBX
+MUSIC_DESC= Music on hold for use with FreeSwitch PBX
+PIZZA_DESC= Pizza Shop voice demo
+SCRIPTS_DESC= Freeswitch various scripts
.include <bsd.port.options.mk>
-.if defined(WITH_SOUNDS)
+.if ${PORT_OPTIONS:MSOUNDS}
RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds
.endif
-.if defined(WITH_MUSIC)
+.if ${PORT_OPTIONS:MMUSIC}
RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music
.endif
-.if defined(WITH_PIZZA)
+.if ${PORT_OPTIONS:MPIZZA}
RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch-pizzademo
.endif
-.if defined(WITH_SCRIPTS)
+.if ${PORT_OPTIONS:MSCRIPTS}
RUN_DEPENDS+= ${LOCALBASE}/etc/freeswitch/scripts/.freeswitch-scripts:${PORTSDIR}/misc/freeswitch-scripts
.endif