From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 15 21:50:14 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE865106564A for ; Wed, 15 Dec 2010 21:50:13 +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 CC90A8FC1C for ; Wed, 15 Dec 2010 21:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oBFLoDMj030537 for ; Wed, 15 Dec 2010 21:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oBFLoDrQ030526; Wed, 15 Dec 2010 21:50:13 GMT (envelope-from gnats) Date: Wed, 15 Dec 2010 21:50:13 GMT Message-Id: <201012152150.oBFLoDrQ030526@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Richard E. Neese" Cc: Subject: Re: ports/153191: missing files 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, 15 Dec 2010 21:50:14 -0000 The following reply was made to PR ports/153191; it has been noted by GNATS. From: "Richard E. Neese" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/153191: missing files Date: Wed, 15 Dec 2010 16:42:32 -0500 This is a multi-part message in MIME format. --Multipart=_Wed__15_Dec_2010_16_42_32_-0500_ZbkbAx95bjshDDgC Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 15 Dec 2010 21:40:09 GMT FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/153191'. > 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=153191 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: missing files > >Arrival-Date: Wed Dec 15 21:40:09 UTC 2010 -- Richard E. Neese --Multipart=_Wed__15_Dec_2010_16_42_32_-0500_ZbkbAx95bjshDDgC Content-Type: text/plain; name="freeswitch-core.diff" Content-Disposition: attachment; filename="freeswitch-core.diff" Content-Transfer-Encoding: 7bit Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/freeswitch-core/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 8 Dec 2010 18:33:22 -0000 1.15 +++ Makefile 15 Dec 2010 21:04:41 -0000 @@ -7,6 +7,7 @@ PORTNAME= freeswitch-core PORTVERSION= 201044 +PORTREVERSION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.secure-computing.net/pub/freeswitch/ \ ftp://ftp2.secure-computing.net/pub/freeswitch/ \ Index: files/patch-libs-freetdm-Makefile.am =================================================================== RCS file: files/patch-libs-freetdm-Makefile.am diff -N files/patch-libs-freetdm-Makefile.am --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-libs-freetdm-Makefile.am 15 Dec 2010 21:04:41 -0000 @@ -0,0 +1,9 @@ +--- libs/freetdm/Makefile.am ++++ libs/freetdm/Makefile.am +@@ -320,5 +320,5 @@ mod_freetdm-clean: + install-data-local: + $(mkinstalldirs) $(DESTDIR)$(PREFIX) + $(mkinstalldirs) $(DESTDIR)@confdir@ +- @[ -f "$(DESTDIR)@confdir@/freetdm.conf" ] || ( cp conf/*.conf $(DESTDIR)@confdir@) ++ @for i in conf/*.conf; do cp $$i $$i.sample; done; cp -f conf/*.conf.sample $(DESTDIR)@confdir@ + @echo FreeTDM Installed Index: files/patch-libs-freetdm-mod_freetdm-Makefile.in =================================================================== RCS file: files/patch-libs-freetdm-mod_freetdm-Makefile.in diff -N files/patch-libs-freetdm-mod_freetdm-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-libs-freetdm-mod_freetdm-Makefile.in 15 Dec 2010 21:04:41 -0000 @@ -0,0 +1,12 @@ +--- libs/freetdm/mod_freetdm/Makefile.in ++++ libs/freetdm/mod_freetdm/Makefile.in +@@ -15,8 +15,7 @@ $(FTLA): $(FT_DIR)/.update + + local_install: + cd $(FT_DIR) && $(MAKE) install +- [ -f $(DESTDIR)@confdir@/autoload_configs/freetdm.conf.xml ] || cp -f $(FT_DIR)/conf/freetdm.conf.xml $(DESTDIR)@confdir@/autoload_configs +- ++ @for i in $(FT_DIR)/conf/*.xml; do cp $$i $$i.sample; done; cp -f $(FT_DIR)/conf/*.xml.sample $(DESTDIR)@confdir@/autoload_configs + local_clean: + cd $(FT_DIR) && $(MAKE) clean + Index: files/patch-libs-freetdm-src-ftmod-ftmod_zt-ftmod_zt.c =================================================================== RCS file: files/patch-libs-freetdm-src-ftmod-ftmod_zt-ftmod_zt.c diff -N files/patch-libs-freetdm-src-ftmod-ftmod_zt-ftmod_zt.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-libs-freetdm-src-ftmod-ftmod_zt-ftmod_zt.c 15 Dec 2010 21:04:41 -0000 @@ -0,0 +1,73 @@ +--- libs/freetdm/src/ftmod/ftmod_zt/ftmod_zt.c ++++ libs/freetdm/src/ftmod/ftmod_zt/ftmod_zt.c +@@ -52,38 +52,38 @@ static struct { + * \brief General IOCTL codes + */ + struct ioctl_codes { +- int GET_BLOCKSIZE; +- int SET_BLOCKSIZE; +- int FLUSH; +- int SYNC; +- int GET_PARAMS; +- int SET_PARAMS; +- int HOOK; +- int GETEVENT; +- int IOMUX; +- int SPANSTAT; +- int MAINT; +- int GETCONF; +- int SETCONF; +- int CONFLINK; +- int CONFDIAG; +- int GETGAINS; +- int SETGAINS; +- int SPANCONFIG; +- int CHANCONFIG; +- int SET_BUFINFO; +- int GET_BUFINFO; +- int AUDIOMODE; +- int ECHOCANCEL; +- int HDLCRAWMODE; +- int HDLCFCSMODE; +- int SPECIFY; +- int SETLAW; +- int SETLINEAR; +- int GETCONFMUTE; +- int ECHOTRAIN; +- int SETTXBITS; +- int GETRXBITS; ++ long GET_BLOCKSIZE; ++ long SET_BLOCKSIZE; ++ long FLUSH; ++ long SYNC; ++ long GET_PARAMS; ++ long SET_PARAMS; ++ long HOOK; ++ long GETEVENT; ++ long IOMUX; ++ long SPANSTAT; ++ long MAINT; ++ long GETCONF; ++ long SETCONF; ++ long CONFLINK; ++ long CONFDIAG; ++ long GETGAINS; ++ long SETGAINS; ++ long SPANCONFIG; ++ long CHANCONFIG; ++ long SET_BUFINFO; ++ long GET_BUFINFO; ++ long AUDIOMODE; ++ long ECHOCANCEL; ++ long HDLCRAWMODE; ++ long HDLCFCSMODE; ++ long SPECIFY; ++ long SETLAW; ++ long SETLINEAR; ++ long GETCONFMUTE; ++ long ECHOTRAIN; ++ long SETTXBITS; ++ long GETRXBITS; + }; + + /** --Multipart=_Wed__15_Dec_2010_16_42_32_-0500_ZbkbAx95bjshDDgC--