From nobody@FreeBSD.org  Mon May 14 13:24:03 2012
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 7CB2D10656D3
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 14 May 2012 13:24:03 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 4E0D88FC08
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 14 May 2012 13:24:03 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q4EDO3Ko034683
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 14 May 2012 13:24:03 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id q4EDO3sp034678;
	Mon, 14 May 2012 13:24:03 GMT
	(envelope-from nobody)
Message-Id: <201205141324.q4EDO3sp034678@red.freebsd.org>
Date: Mon, 14 May 2012 13:24:03 GMT
From: Richard Neese <r.neese@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: update to net/freeswitch meta port
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         167880
>Category:       ports
>Synopsis:       update to net/freeswitch meta port
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    crees
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 14 13:30:06 UTC 2012
>Closed-Date:    Tue May 22 19:39:25 UTC 2012
>Last-Modified:  Tue May 22 19:40:05 UTC 2012
>Originator:     Richard Neese
>Release:        9.0-Release
>Organization:
>Environment:
FreeBSD ports.freebsd.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:15:25 UTC 2012     root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
Added new options to the meta port and brought it upto the same version as the rest of the ports
>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:

From: Rich Neese <r.neese@gmail.com>
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 <bsd.port.options.mk>
  
 +.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--

From: Rich Neese <r.neese@gmail.com>
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 11:28:29 -0400

 This is a multi-part message in MIME format.
 --------------080705000501030902070501
 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
 moved to net/freeswitch12 meta port
 
 --------------080705000501030902070501
 Content-Type: text/plain; charset=windows-1252;
  name="freeswitch12.shar"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="freeswitch12.shar"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	freeswitch12
 #	freeswitch12/Makefile
 #	freeswitch12/pkg-descr
 #
 echo c - freeswitch12
 mkdir -p freeswitch12 > /dev/null 2>&1
 echo x - freeswitch12/Makefile
 sed 's/^X//' >freeswitch12/Makefile << '70217589a44627d70bfc4b900925aa8b'
 X# Ports collection makefile for: freeswitch Version 1.2
 X# Date created: May 14, 2012
 X# Whom: Richard Neese <r.neese@gmail.com>
 X#
 X# $FreeBSD:$
 X#
 X
 XPORTNAME=	freeswitch
 XPORTVERSION=	1.2
 XCATEGORIES=	net
 XMASTER_SITES=	# none
 XDISTFILES=	# none
 XEXTRACT_ONLY=	# none
 X
 XMAINTAINER=	r.neese@gmail.com
 XCOMMENT=	FreeSwitch meta-port to pull in all the components
 X
 XRUN_DEPENDS=	${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch12-core
 X
 XNO_WRKSUBDIR=	yes
 XNO_BUILD=	yes
 X
 XOPTIONS=	VANILLA		"Vanilla Dialplan Configs" off \
 X		SBC		"Session Border Conroller configs" off \
 X		INSIDEOUT	"Inside Out Basic Dialplan Configs" off \
 X		CURL		"Curl dialplan configs" off \
 X		SOUNDS		"Sound files for use with FreeSwitch PBX" off \
 X		MUSIC		"Music on hold for use with FreeSwitch PBX" off \
 X		PIZZADEMO	"Install Pizza Shop voice demo" off \
 X		SCRIPTS		"Install Freeswitch various scripts" off
 X
 X.include <bsd.port.options.mk>
 X
 X.if defined(WITH_VANILLA)
 XRUN_DEPENDS+=   ${LOCALBASE}/:${PORTSDIR}/net/freeswitch12-vanilla
 X.endif
 X
 X.if defined(WITH_SBC)
 XRUN_DEPENDS+=   ${LOCALBASE}/:${PORTSDIR}/net/freeswitch12-sbc
 X.endif
 X
 X.if defined(WITH_INSIDEOUT)
 XRUN_DEPENDS+=   ${LOCALBASE}/:${PORTSDIR}/net/freeswitch12-insideout
 X.endif
 X
 X.if defined(WITH_CURL)
 XRUN_DEPENDS+=   ${LOCALBASE}/:${PORTSDIR}/net/freeswitch12-curl
 X.endif
 X
 X.if defined(WITH_SOUNDS)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds
 X.endif
 X
 X.if defined(WITH_MUSIC)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music
 X.endif
 X
 X.if defined(WITH_PIZZADEMO)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch12-pizzademo
 X.endif
 X
 X.if defined(WITH_SCRIPTS)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/scripts/.freeswitch-scripts:${PORTSDIR}/misc/freeswitch12-scripts
 X.endif
 X
 Xdo-install: build
 X	@${DO_NADA}
 X
 X.include <bsd.port.mk>
 70217589a44627d70bfc4b900925aa8b
 echo x - freeswitch12/pkg-descr
 sed 's/^X//' >freeswitch12/pkg-descr << '7c75d89cc6c1a713a591fa2c5df9d36b'
 XFreeSWITCH meta port.
 X
 XFreeSWITCH is an open source telephony platform designed to facilitate the
 Xcreation of voice and chat driven products scaling from a soft-phone up to a
 Xsoft-switch.  It can be used as a simple switching engine, a PBX, a media
 Xgateway or a media server to host IVR applications using simple scripts or XML
 Xto control the callflow.
 X
 XWWW: http://www.freeswitch.org
 7c75d89cc6c1a713a591fa2c5df9d36b
 exit
 
 
 --------------080705000501030902070501--
Responsible-Changed-From-To: freebsd-ports-bugs->crees 
Responsible-Changed-By: crees 
Responsible-Changed-When: Mon May 14 16:35:44 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=167880 

From: Rich Neese <r.neese@gmail.com>
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 14:13:46 -0400

 This is a multi-part message in MIME format.
 --------------080105050207050605050507
 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
 updated deps
 
 --------------080105050207050605050507
 Content-Type: text/plain; charset=windows-1252;
  name="freeswitch12.shar"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="freeswitch12.shar"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	freeswitch12
 #	freeswitch12/Makefile
 #	freeswitch12/pkg-descr
 #
 echo c - freeswitch12
 mkdir -p freeswitch12 > /dev/null 2>&1
 echo x - freeswitch12/Makefile
 sed 's/^X//' >freeswitch12/Makefile << '70217589a44627d70bfc4b900925aa8b'
 X# Ports collection makefile for: freeswitch Version 1.2
 X# Date created: May 14, 2012
 X# Whom: Richard Neese <r.neese@gmail.com>
 X#
 X# $FreeBSD:$
 X#
 X
 XPORTNAME=	freeswitch
 XPORTVERSION=	1.2
 XCATEGORIES=	net
 XMASTER_SITES=	# none
 XDISTFILES=	# none
 XEXTRACT_ONLY=	# none
 X
 XMAINTAINER=	r.neese@gmail.com
 XCOMMENT=	FreeSwitch meta-port to pull in all the components
 X
 XRUN_DEPENDS=	${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch12-core
 X
 XNO_WRKSUBDIR=	yes
 XNO_BUILD=	yes
 X
 XOPTIONS=	VANILLA		"Vanilla Dialplan Configs" off \
 X		SBC		"Session Border Conroller configs" off \
 X		INSIDEOUT	"Inside Out Basic Dialplan Configs" off \
 X		CURL		"Curl dialplan configs" off \
 X		SOUNDS		"Sound files for use with FreeSwitch PBX" off \
 X		MUSIC		"Music on hold for use with FreeSwitch PBX" off \
 X		PIZZADEMO	"Install Pizza Shop voice demo" off \
 X		SCRIPTS		"Install Freeswitch various scripts" off
 X
 X.include <bsd.port.options.mk>
 X
 X.if defined(WITH_VANILLA)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.vanilla:${PORTSDIR}/net/freeswitch12-vanilla
 X.endif
 X
 X.if defined(WITH_SBC)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.insideout:${PORTSDIR}/net/freeswitch12-sbc
 X.endif
 X
 X.if defined(WITH_INSIDEOUT)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.insideout:${PORTSDIR}/net/freeswitch12-insideout
 X.endif
 X
 X.if defined(WITH_CURL)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.curl:${PORTSDIR}/net/freeswitch12-curl
 X.endif
 X
 X.if defined(WITH_SOUNDS)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds
 X.endif
 X
 X.if defined(WITH_MUSIC)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music
 X.endif
 X
 X.if defined(WITH_PIZZADEMO)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch12-pizzademo
 X.endif
 X
 X.if defined(WITH_SCRIPTS)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/scripts/.freeswitch-scripts:${PORTSDIR}/misc/freeswitch12-scripts
 X.endif
 X
 Xdo-install: build
 X	@${DO_NADA}
 X
 X.include <bsd.port.mk>
 70217589a44627d70bfc4b900925aa8b
 echo x - freeswitch12/pkg-descr
 sed 's/^X//' >freeswitch12/pkg-descr << '7c75d89cc6c1a713a591fa2c5df9d36b'
 XFreeSWITCH meta port.
 X
 XFreeSWITCH is an open source telephony platform designed to facilitate the
 Xcreation of voice and chat driven products scaling from a soft-phone up to a
 Xsoft-switch.  It can be used as a simple switching engine, a PBX, a media
 Xgateway or a media server to host IVR applications using simple scripts or XML
 Xto control the callflow.
 X
 XWWW: http://www.freeswitch.org
 7c75d89cc6c1a713a591fa2c5df9d36b
 exit
 
 
 --------------080105050207050605050507--

From: Rich Neese <r.neese@gmail.com>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/167880: update to net/freeswitch meta port
Date: Sun, 20 May 2012 10:58:01 -0400

 This is a multi-part message in MIME format.
 --------------050901070809030000000505
 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
 new share with pkg-msg
 
 --------------050901070809030000000505
 Content-Type: text/plain; charset=windows-1252;
  name="freeswitch-devel.shar"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="freeswitch-devel.shar"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	freeswitch-devel
 #	freeswitch-devel/Makefile
 #	freeswitch-devel/pkg-descr
 #	freeswitch-devel/files
 #	freeswitch-devel/files/pkg-message
 #
 echo c - freeswitch-devel
 mkdir -p freeswitch-devel > /dev/null 2>&1
 echo x - freeswitch-devel/Makefile
 sed 's/^X//' >freeswitch-devel/Makefile << 'f6a59523f2d0e38fc92f7639d2188847'
 X# Ports collection makefile for: freeswitch Version 1.2
 X# Date created: May 14, 2012
 X# Whom: Richard Neese <r.neese@gmail.com>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	freeswitch
 XPORTVERSION=	1.2.rc2
 XCATEGORIES=	net
 XMASTER_SITES=	# none
 XDISTFILES=	# none
 XEXTRACT_ONLY=	# none
 X
 XMAINTAINER=	r.neese@gmail.com
 XCOMMENT=	FreeSwitch meta-port to pull in all the components
 X
 XRUN_DEPENDS=	${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch12-core
 X
 XNO_WRKSUBDIR=	yes
 XNO_BUILD=	yes
 X
 XSUB_FILES=      pkg-message
 X
 XOPTIONS=	VANILLA		"Vanilla Dialplan Configs" on \
 X		SBC		"Session Border Conroller configs" off \
 X		INSIDEOUT	"Inside Out Basic Dialplan Configs" off \
 X		CURL		"Curl dialplan configs" off \
 X		SOUNDS		"Sound files for use with FreeSwitch PBX" on \
 X		MUSIC		"Music on hold for use with FreeSwitch PBX" on \
 X		PIZZADEMO	"Install Pizza Shop voice demo" off \
 X		SCRIPTS		"Install Freeswitch various scripts" off
 X
 X.include <bsd.port.options.mk>
 X
 X.if defined(WITH_VANILLA)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.vanilla:${PORTSDIR}/net/freeswitch-vanilla-devel
 X.endif
 X
 X.if defined(WITH_SBC)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.insideout:${PORTSDIR}/net/freeswitch-sbc-devel
 X.endif
 X
 X.if defined(WITH_INSIDEOUT)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.insideout:${PORTSDIR}/net/freeswitch-insideout-devel
 X.endif
 X
 X.if defined(WITH_CURL)
 XRUN_DEPENDS+=   ${LOCALBASE}/etc/freeswitch/conf/.curl:${PORTSDIR}/net/freeswitch-curl-devel
 X.endif
 X
 X.if defined(WITH_SOUNDS)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds
 X.endif
 X
 X.if defined(WITH_MUSIC)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music
 X.endif
 X
 X.if defined(WITH_PIZZADEMO)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch-pizzademo-devel
 X.endif
 X
 X.if defined(WITH_SCRIPTS)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/scripts/.freeswitch-scripts:${PORTSDIR}/misc/freeswitch-scripts-devel
 X.endif
 X
 Xdo-install: build
 X	@${DO_NADA}
 X	@${CAT} ${PKGMESSAGE}
 X.include <bsd.port.mk>
 f6a59523f2d0e38fc92f7639d2188847
 echo x - freeswitch-devel/pkg-descr
 sed 's/^X//' >freeswitch-devel/pkg-descr << '1a5b4889b6645953ad55c58053caef5b'
 XFreeSWITCH meta port.
 X
 XFreeSWITCH is an open source telephony platform designed to facilitate the
 Xcreation of voice and chat driven products scaling from a soft-phone up to a
 Xsoft-switch.  It can be used as a simple switching engine, a PBX, a media
 Xgateway or a media server to host IVR applications using simple scripts or XML
 Xto control the callflow.
 X
 XWWW: http://www.freeswitch.org
 1a5b4889b6645953ad55c58053caef5b
 echo c - freeswitch-devel/files
 mkdir -p freeswitch-devel/files > /dev/null 2>&1
 echo x - freeswitch-devel/files/pkg-message
 sed 's/^X//' >freeswitch-devel/files/pkg-message << 'bc07899a6d9baed2119af269d680fafd'
 XYou Must select one for the config file optione for install
 Xthe config files are required for freeswitch to run correctly.
 bc07899a6d9baed2119af269d680fafd
 exit
 
 
 --------------050901070809030000000505--

From: Rich Neese <r.neese@gmail.com>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/167880: update to net/freeswitch meta port
Date: Sun, 20 May 2012 11:04:39 -0400

 This is a multi-part message in MIME format.
 --------------070305000604040905010605
 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
 fixed white spaces.
 
 --------------070305000604040905010605
 Content-Type: text/plain; charset=windows-1252;
  name="freeswitch-devel.shar"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="freeswitch-devel.shar"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	freeswitch-devel
 #	freeswitch-devel/Makefile
 #	freeswitch-devel/pkg-descr
 #	freeswitch-devel/files
 #	freeswitch-devel/files/pkg-message
 #
 echo c - freeswitch-devel
 mkdir -p freeswitch-devel > /dev/null 2>&1
 echo x - freeswitch-devel/Makefile
 sed 's/^X//' >freeswitch-devel/Makefile << 'f6a59523f2d0e38fc92f7639d2188847'
 X# Ports collection makefile for: freeswitch Version 1.2
 X# Date created: May 14, 2012
 X# Whom: Richard Neese <r.neese@gmail.com>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	freeswitch
 XPORTVERSION=	1.2.rc2
 XCATEGORIES=	net
 XMASTER_SITES=	# none
 XDISTFILES=	# none
 XEXTRACT_ONLY=	# none
 X
 XMAINTAINER=	r.neese@gmail.com
 XCOMMENT=	FreeSwitch meta-port to pull in all the components
 X
 XRUN_DEPENDS=	${LOCALBASE}/bin/freeswitch:${PORTSDIR}/net/freeswitch12-core
 X
 XNO_WRKSUBDIR=	yes
 XNO_BUILD=	yes
 X
 XSUB_FILES=	pkg-message
 X
 XOPTIONS=	VANILLA		"Vanilla Dialplan Configs" on \
 X		SBC		"Session Border Conroller configs" off \
 X		INSIDEOUT	"Inside Out Basic Dialplan Configs" off \
 X		CURL		"Curl dialplan configs" off \
 X		SOUNDS		"Sound files for use with FreeSwitch PBX" on \
 X		MUSIC		"Music on hold for use with FreeSwitch PBX" on \
 X		PIZZADEMO	"Install Pizza Shop voice demo" off \
 X		SCRIPTS		"Install Freeswitch various scripts" off
 X
 X.include <bsd.port.options.mk>
 X
 X.if defined(WITH_VANILLA)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/conf/.vanilla:${PORTSDIR}/net/freeswitch-vanilla-devel
 X.endif
 X
 X.if defined(WITH_SBC)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/conf/.insideout:${PORTSDIR}/net/freeswitch-sbc-devel
 X.endif
 X
 X.if defined(WITH_INSIDEOUT)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/conf/.insideout:${PORTSDIR}/net/freeswitch-insideout-devel
 X.endif
 X
 X.if defined(WITH_CURL)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/conf/.curl:${PORTSDIR}/net/freeswitch-curl-devel
 X.endif
 X
 X.if defined(WITH_SOUNDS)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-sounds:${PORTSDIR}/audio/freeswitch-sounds
 X.endif
 X
 X.if defined(WITH_MUSIC)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.freeswitch-music:${PORTSDIR}/audio/freeswitch-music
 X.endif
 X
 X.if defined(WITH_PIZZADEMO)
 XRUN_DEPENDS+=	${LOCALBASE}/share/freeswitch/sounds/.pizza:${PORTSDIR}/misc/freeswitch-pizzademo-devel
 X.endif
 X
 X.if defined(WITH_SCRIPTS)
 XRUN_DEPENDS+=	${LOCALBASE}/etc/freeswitch/scripts/.freeswitch-scripts:${PORTSDIR}/misc/freeswitch-scripts-devel
 X.endif
 X
 Xdo-install: build
 X	@${DO_NADA}
 X	@${CAT} ${PKGMESSAGE}
 X.include <bsd.port.mk>
 f6a59523f2d0e38fc92f7639d2188847
 echo x - freeswitch-devel/pkg-descr
 sed 's/^X//' >freeswitch-devel/pkg-descr << '1a5b4889b6645953ad55c58053caef5b'
 XFreeSWITCH meta port.
 X
 XFreeSWITCH is an open source telephony platform designed to facilitate the
 Xcreation of voice and chat driven products scaling from a soft-phone up to a
 Xsoft-switch.  It can be used as a simple switching engine, a PBX, a media
 Xgateway or a media server to host IVR applications using simple scripts or XML
 Xto control the callflow.
 X
 XWWW: http://www.freeswitch.org
 1a5b4889b6645953ad55c58053caef5b
 echo c - freeswitch-devel/files
 mkdir -p freeswitch-devel/files > /dev/null 2>&1
 echo x - freeswitch-devel/files/pkg-message
 sed 's/^X//' >freeswitch-devel/files/pkg-message << 'bc07899a6d9baed2119af269d680fafd'
 XYou Must select one for the config file optione for install
 Xthe config files are required for freeswitch to run correctly.
 bc07899a6d9baed2119af269d680fafd
 exit
 
 
 --------------070305000604040905010605--
State-Changed-From-To: open->closed 
State-Changed-By: crees 
State-Changed-When: Tue May 22 19:39:24 UTC 2012 
State-Changed-Why:  
New port added, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=167880 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/167880: commit references a PR
Date: Tue, 22 May 2012 19:39:16 +0000 (UTC)

 crees       2012-05-22 19:39:00 UTC
 
   FreeBSD ports repository
 
   Modified files:
     net                  Makefile 
     net/freeswitch       Makefile 
   Added files:
     net/freeswitch-devel Makefile pkg-descr 
   Log:
   FreeSWITCH meta port.
   
   FreeSWITCH is an open source telephony platform designed to facilitate the
   creation of voice and chat driven products scaling from a soft-phone up to a
   soft-switch.  It can be used as a simple switching engine, a PBX, a media
   gateway or a media server to host IVR applications using simple scripts or XML
   to control the callflow.
   
   WWW: http://www.freeswitch.org
   
   PR:             ports/167880
   Submitted by:   Richard Neese <r.neese@gmail.com>
   
   Revision  Changes    Path
   1.2466    +1 -0      ports/net/Makefile
   1.1       +68 -0     ports/net/freeswitch-devel/Makefile (new)
   1.1       +9 -0      ports/net/freeswitch-devel/pkg-descr (new)
   1.13      +2 -0      ports/net/freeswitch/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
