ports/170317: update for audio/freeswitch-music

Richard E Neese r.neese at gmail.com
Wed Aug 1 22:01:20 UTC 2012


On 8/1/2012 5:50 PM, FreeBSD-gnats-submit at FreeBSD.org wrote:
> Thank you very much for your problem report.
> It has the internal identification `ports/170317'.
> The individual assigned to look at your
> report is: freebsd-ports-bugs. 
>
> You can access the state of your problem report at any time
> via this link:
>
> http://www.freebsd.org/cgi/query-pr.cgi?pr=170317
>
>> Category:       ports
>> Responsible:    freebsd-ports-bugs
>> Synopsis:       update for audio/freeswitch-music
>> Arrival-Date:   Wed Aug 01 21:50:01 UTC 2012

-------------- next part --------------
Index: Makefile
===================================================================
--- Makefile	(revision 301530)
+++ Makefile	(working copy)
@@ -24,26 +24,31 @@
 SHAREGRP=	${SHAREOWN}
 LATEST_LINK=	${PORTNAME}${PKGNAMESUFFIX}
 
-OPTIONS=	8K           "Install 8000Hz Music" on \
-		16K          "Install 16000Hz Music" on \
-		32K          "Install 32000Hz Music" on \
-		48K          "Install 48000Hz Music" on
+OPTIONS_DEFINE=	8K 16K 32K 48K
 
+8K_DESC=	8000Hz Music
+16K_DESC=	16000Hz Music
+32K_DESC=	32000Hz Music
+48K_DESC=	48000Hz Music
+
+OPTIONS_DEFAULT=	8K 16K
+NO_OPTIONS_SORT=	yes
+
 .include <bsd.port.options.mk>
 
-.if defined(WITH_8K)
+.if ${PORT_OPTIONS:M8K}
 DISTFILES+=	freeswitch-sounds-music-8000-${DISTVERSION}${EXTRACT_SUFX}
 .endif
 
-.if defined(WITH_16K)
+.if ${PORT_OPTIONS:M16K}
 DISTFILES+=	freeswitch-sounds-music-16000-${DISTVERSION}${EXTRACT_SUFX}
 .endif
 
-.if defined(WITH_32K)
+.if ${PORT_OPTIONS:M32K}
 DISTFILES+=	freeswitch-sounds-music-32000-${DISTVERSION}${EXTRACT_SUFX}
 .endif
 
-.if defined(WITH_48K)
+.if ${PORT_OPTIONS:M48K}
 DISTFILES+=	freeswitch-sounds-music-48000-${DISTVERSION}${EXTRACT_SUFX}
 .endif
 


More information about the freebsd-ports-bugs mailing list