Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Aug 2012 22:00:28 GMT
From:      Richard E Neese <r.neese@gmail.com>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/170317: update for audio/freeswitch-music
Message-ID:  <201208012200.q71M0SYn008934@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/170317; it has been noted by GNATS.

From: Richard E Neese <r.neese@gmail.com>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, 
 jph@FreeBSD.org
Cc:  
Subject: Re: ports/170317: update for audio/freeswitch-music
Date: Wed, 01 Aug 2012 17:55:18 -0400

 This is a multi-part message in MIME format.
 --------------060103060806040305040104
 Content-Type: text/plain; charset=ISO-8859-1
 Content-Transfer-Encoding: 7bit
 
 On 8/1/2012 5:50 PM, FreeBSD-gnats-submit@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
 
 
 --------------060103060806040305040104
 Content-Type: text/plain; charset=windows-1252;
  name="freeswitch-music.diff"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="freeswitch-music.diff"
 
 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
  
 
 --------------060103060806040305040104--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208012200.q71M0SYn008934>