Bug 170806 - [PATCH] www/fusionpbx: fix PDOPGSQ, PDOMYSQL ports option
Summary: [PATCH] www/fusionpbx: fix PDOPGSQ, PDOMYSQL ports option
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-20 23:30 UTC by Artis Caune
Modified: 2012-08-21 06:40 UTC (History)
0 users

See Also:


Attachments
file.diff (424 bytes, patch)
2012-08-20 23:30 UTC, Artis Caune
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Artis Caune 2012-08-20 23:30:11 UTC
There is a typo in Makefile for PDOPGSQ, PDOMYSQL ports options.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-20 23:30:53 UTC
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
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-20 23:30:55 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 RIchard Neese 2012-08-21 00:00:05 UTC
patch approved apply and commit
Comment 4 Mark Linimon freebsd_committer freebsd_triage 2012-08-21 00:07:21 UTC
State Changed
From-To: feedback->open

Maintainer approved.
Comment 5 Jason Helfman freebsd_committer freebsd_triage 2012-08-21 06:34:40 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

I'll take it.
Comment 6 dfilter service freebsd_committer freebsd_triage 2012-08-21 06:36:57 UTC
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"
Comment 7 Jason Helfman freebsd_committer freebsd_triage 2012-08-21 06:37:01 UTC
State Changed
From-To: open->closed

Committed. Thanks!