svn commit: r304762 - head/www/fusionpbx

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Sep 23 18:46:09 UTC 2012


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:



More information about the svn-ports-all mailing list