From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 14 13:40:11 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 5C7BF106566C for ; Mon, 14 May 2012 13:40:11 +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 3B8898FC18 for ; Mon, 14 May 2012 13:40:11 +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 q4EDeBMC000671 for ; Mon, 14 May 2012 13:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q4EDeBhw000670; Mon, 14 May 2012 13:40:11 GMT (envelope-from gnats) Date: Mon, 14 May 2012 13:40:11 GMT Message-Id: <201205141340.q4EDeBhw000670@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rich Neese Cc: Subject: Re: ports/167880: update to net/freeswitch meta port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rich Neese List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2012 13:40:11 -0000 The following reply was made to PR ports/167880; it has been noted by GNATS. From: Rich Neese To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/167880: update to net/freeswitch meta port Date: Mon, 14 May 2012 09:31:19 -0400 This is a multi-part message in MIME format. --------------010200020908000600060209 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 5/14/2012 9:30 AM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/167880'. > 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=167880 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: update to net/freeswitch meta port >> Arrival-Date: Mon May 14 13:30:06 UTC 2012 --------------010200020908000600060209 Content-Type: text/plain; charset=windows-1252; name="freeswitch.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="freeswitch.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/freeswitch/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- Makefile 15 Mar 2012 18:18:06 -0000 1.12 +++ Makefile 12 May 2012 18:43:45 -0000 @@ -6,8 +6,7 @@ # PORTNAME= freeswitch -PORTVERSION= 1.0.6 -PORTREVISION= 1 +PORTVERSION= 1.2 CATEGORIES= net MASTER_SITES= # none DISTFILES= # none @@ -21,13 +20,33 @@ 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= VANILLA "Vanilla Dialplan Configs" off \ + SBC "Session Border Conroller configs" off \ + INSIDEOUT "Inside Out Basic Dialplan Configs" off \ + CURL "Curl dialplan configs" off \ + SOUNDS "Sound files for use with FreeSwitch PBX" off \ + MUSIC "Music on hold for use with FreeSwitch PBX" off \ + PIZZADEMO "Install Pizza Shop voice demo" off \ + SCRIPTS "Install Freeswitch various scripts" off .include +.if defined(WITH_VANILLA) +RUN_DEPENDS+= ${LOCALBASE}/:${PORTSDIR}/net/freeswitch-vanilla +.endif + +.if defined(WITH_SBC) +RUN_DEPENDS+= ${LOCALBASE}/:${PORTSDIR}/net/freeswitch-sbc +.endif + +.if defined(WITH_INSIDEOUT) +RUN_DEPENDS+= ${LOCALBASE}/:${PORTSDIR}/net/freeswitch-insideout +.endif + +.if defined(WITH_CURL) +RUN_DEPENDS+= ${LOCALBASE}/:${PORTSDIR}/net/freeswitch-curl +.endif + .if defined(WITH_SOUNDS) RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds .endif @@ -36,7 +55,7 @@ RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music .endif -.if defined(WITH_PIZZA) +.if defined(WITH_PIZZADEMO) RUN_DEPENDS+= ${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch-pizzademo .endif --------------010200020908000600060209--