From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 1 22:00:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C039B106566C for ; Wed, 1 Aug 2012 22:00:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91B908FC14 for ; Wed, 1 Aug 2012 22:00:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q71M0ShJ008935 for ; Wed, 1 Aug 2012 22:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q71M0SYn008934; Wed, 1 Aug 2012 22:00:28 GMT (envelope-from gnats) Date: Wed, 1 Aug 2012 22:00:28 GMT Message-Id: <201208012200.q71M0SYn008934@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Richard E Neese Cc: Subject: Re: ports/170317: update for audio/freeswitch-music X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Richard E Neese List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2012 22:00:28 -0000 The following reply was made to PR ports/170317; it has been noted by GNATS. From: Richard E Neese 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 -.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--