There is a typo in Makefile for PDOPGSQ, PDOMYSQL ports options. Fix: Patch attached with submission follows:
Maintainer of www/fusionpbx, Please note that PR ports/170806 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170806 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
patch approved apply and commit
State Changed From-To: feedback->open Maintainer approved.
Responsible Changed From-To: freebsd-ports-bugs->jgh I'll take it.
Author: jgh Date: Tue Aug 21 05:36:48 2012 New Revision: 302844 URL: http://svn.freebsd.org/changeset/ports/302844 Log: - fix PDOPGSQ, PDOMYSQL ports option PR: 170806 Submitted by: Artis.Caune@gmail.com Approved by: maintainer, r.neese@gmail.com Modified: head/www/fusionpbx/Makefile Modified: head/www/fusionpbx/Makefile ============================================================================== --- head/www/fusionpbx/Makefile Tue Aug 21 05:33:21 2012 (r302843) +++ head/www/fusionpbx/Makefile Tue Aug 21 05:36:48 2012 (r302844) @@ -45,13 +45,13 @@ PLIST_SUB+= ${opt}="@comment " .endif .endfor -.if ${PORT_OPTIONS:MPDOPGSQL) +.if ${PORT_OPTIONS:MPDOPGSQL} USE_PGSQL= yes USE_PHP+= pgsql pdo_pgsql PLIST_SUB+= WITH_PDOPGSQL="" .endif -.if ${PORT_OPTIONS:MPDOMYSQL) +.if ${PORT_OPTIONS:MPDOMYSQL} USE_MYSQL= client USE_PHP+= mysql pdo_mysql PLIST_SUB+= WITH_PDOMYSQL="" _______________________________________________ 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"
State Changed From-To: open->closed Committed. Thanks!