From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 1 21:55:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E72A6106564A; Wed, 1 Aug 2012 21:55:25 +0000 (UTC) (envelope-from r.neese@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 513368FC0C; Wed, 1 Aug 2012 21:55:21 +0000 (UTC) Received: by yenl8 with SMTP id l8so9262800yen.13 for ; Wed, 01 Aug 2012 14:55:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=tSJeUOY1rkhgslsI12JoDuPOr1Bk7XxSM8kOs7EDLwg=; b=QR5+7KGAiu49O/YXaoD5Hh6RXBEKAvwYI4jfEO5dPSN5cI6/my3kZNJwoPoopYLHaa UAX7Lx3abxVAvJbpbGDhbH47ZmfjHg3UlkZCJ+MENgzSLbREPCNll+aurvLKlthP1Sn1 4mqmYAfnkIMKeCZEvZpV+rkwXaysrw9FZOnQe/h1QVIag0A9hzMOptRJ7g9XRLESBgFr QsbIA45IrZ9KtVx6jBaV1/lvFFsDaFsKyA6Q+Q7VePLQVtrWggtnDJJ5OIe/CEx6kOc/ I2ujsA/64qojK29nUWeOp6zD9NiK20Tiv+EcwafKUlbcqJUTpn+A9N5yloRmWw3OJ+wr 9y/Q== Received: by 10.236.165.35 with SMTP id d23mr18050409yhl.127.1343858121609; Wed, 01 Aug 2012 14:55:21 -0700 (PDT) Received: from [127.0.0.1] ([97.100.95.108]) by mx.google.com with ESMTPS id h15sm3973038ank.1.2012.08.01.14.55.19 (version=SSLv3 cipher=OTHER); Wed, 01 Aug 2012 14:55:20 -0700 (PDT) Message-ID: <5019A5C6.2070400@gmail.com> Date: Wed, 01 Aug 2012 17:55:18 -0400 From: Richard E Neese User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jph@FreeBSD.org References: <201208012150.q71Lo1X9008534@freefall.freebsd.org> In-Reply-To: <201208012150.q71Lo1X9008534@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------060103060806040305040104" 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 List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2012 21:55:26 -0000 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--