version update
On 9/19/2012 10:00 AM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/171785'. > 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=171785 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: update www/fusionpbx >> Arrival-Date: Wed Sep 19 14:00:36 UTC 2012
Responsible Changed From-To: freebsd-ports-bugs->rm I will take it.
State Changed From-To: open->feedback Hi Richard, the patch you sent is created against 3.1 version, while we have 3.1.1 in ports. Please update your patch. Thank you.
Responsible Changed From-To: rm->freebsd-ports-bugs Back to pool
On 9/19/2012 10:00 AM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/171785'. > 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=171785 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: update www/fusionpbx >> Arrival-Date: Wed Sep 19 14:00:36 UTC 2012 here is a updated diff
Responsible Changed From-To: freebsd-ports-bugs->rakuco I'll take it.
State Changed From-To: feedback->closed Committed. Thanks!
Author: rakuco Date: Sun Sep 23 18:14:53 2012 New Revision: 304757 URL: http://svn.freebsd.org/changeset/ports/304757 Log: Update to 3.1.2. PR: ports/171785 Submitted by: Richard E Neese <r.neese@gmail.com> (maintainer) Modified: head/www/fusionpbx/Makefile head/www/fusionpbx/distinfo head/www/fusionpbx/pkg-plist Modified: head/www/fusionpbx/Makefile ============================================================================== --- head/www/fusionpbx/Makefile Sun Sep 23 17:56:10 2012 (r304756) +++ head/www/fusionpbx/Makefile Sun Sep 23 18:14:53 2012 (r304757) @@ -6,7 +6,7 @@ # PORTNAME= fusionpbx -DISTVERSION= 3.1.1 +DISTVERSION= 3.1.2 CATEGORIES= www MASTER_SITES= http://www.fusionpbx.com/downloads/ \ ${MASTER_SITE_GOOGLE_CODE} Modified: head/www/fusionpbx/distinfo ============================================================================== --- head/www/fusionpbx/distinfo Sun Sep 23 17:56:10 2012 (r304756) +++ head/www/fusionpbx/distinfo Sun Sep 23 18:14:53 2012 (r304757) @@ -1,2 +1,2 @@ -SHA256 (fusionpbx-3.1.1.tar.gz) = 07dec3aa933b44dc13c2dd49bcbe4d5ad6beb4f2b0f9b105958587c5db501d28 -SIZE (fusionpbx-3.1.1.tar.gz) = 5181018 +SHA256 (fusionpbx-3.1.2.tar.gz) = fce45b118a4b94200f8d785c5e091b23f145b5e46e4ff30610fde07aaead5ce3 +SIZE (fusionpbx-3.1.2.tar.gz) = 5181627 Modified: head/www/fusionpbx/pkg-plist ============================================================================== --- head/www/fusionpbx/pkg-plist Sun Sep 23 17:56:10 2012 (r304756) +++ head/www/fusionpbx/pkg-plist Sun Sep 23 18:14:53 2012 (r304757) @@ -21,7 +21,7 @@ %%WWWDIR%%/app/call_center/v_call_center_tier.php %%WWWDIR%%/app/call_center/v_call_center_tier_delete.php %%WWWDIR%%/app/call_center/v_call_center_tier_edit.php -%%WWWDIR%%/app/call_center/v_cmd.php +%%WWWDIR%%/app/call_center/cmd.php %%WWWDIR%%/app/call_center_active/app_config.php %%WWWDIR%%/app/call_center_active/root.php %%WWWDIR%%/app/call_center_active/v_call_center_active.php _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Author: rakuco Date: Sun Sep 23 18:46:08 2012 New Revision: 304762 URL: http://svn.freebsd.org/changeset/ports/304762 Log: - Fix the use of ${PORT_OPTIONS} after r304757. - Remove a few PLIST_SUB entries which are not used. PR: ports/171785 Submitted by: ohauer@ via private mail Modified: head/www/fusionpbx/Makefile Modified: head/www/fusionpbx/Makefile ============================================================================== --- head/www/fusionpbx/Makefile Sun Sep 23 18:35:49 2012 (r304761) +++ head/www/fusionpbx/Makefile Sun Sep 23 18:46:08 2012 (r304762) @@ -38,7 +38,7 @@ PDOMYSQL_DESC= Install MySQL PDO Connect .include <bsd.port.options.mk> .for opt in ${ALL_OPTIONS} -.if $(PORT_OPTIONS:M${opt}) +.if ${PORT_OPTIONS:M${opt}} PLIST_SUB+= ${opt}="" .else PLIST_SUB+= ${opt}="@comment " @@ -48,13 +48,11 @@ PLIST_SUB+= ${opt}="@comment " .if ${PORT_OPTIONS:MPDOPGSQL} USE_PGSQL= yes USE_PHP+= pgsql pdo_pgsql -PLIST_SUB+= WITH_PDOPGSQL="" .endif .if ${PORT_OPTIONS:MPDOMYSQL} USE_MYSQL= client USE_PHP+= mysql pdo_mysql -PLIST_SUB+= WITH_PDOMYSQL="" .endif do-install: _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"