Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Sep 2015 17:04:01 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396113 - head/www/bolt
Message-ID:  <201509041704.t84H417C055146@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Fri Sep  4 17:04:00 2015
New Revision: 396113
URL: https://svnweb.freebsd.org/changeset/ports/396113

Log:
  Fix OPTIONS
  
  The options were not correctly activating required PHP modules
  
  Submitted by:	junovitch

Modified:
  head/www/bolt/Makefile

Modified: head/www/bolt/Makefile
==============================================================================
--- head/www/bolt/Makefile	Fri Sep  4 16:50:36 2015	(r396112)
+++ head/www/bolt/Makefile	Fri Sep  4 17:04:00 2015	(r396113)
@@ -3,6 +3,7 @@
 
 PORTNAME=	bolt
 PORTVERSION=	2.2.10
+PORTREVISION=	1
 CATEGORIES=	www
 MASTER_SITES=	https://bolt.cm/distribution/
 
@@ -23,11 +24,9 @@ WRKSRC=	${WRKDIR}/bolt-git-2015-09-01-ca
 OPTIONS_DEFINE=	MYSQL PGSQL SQLITE
 OPTIONS_DEFAULT=	SQLITE
 
-.include <bsd.port.options.mk>
-
-MYSQL_VARS=	USE_PHP+= pdo_mysql
-PGSQL_VARS=	USE_PHP+= pdo_pgsql
-SQLITE_VARS=	USE_PHP+= pdo_sqlite
+MYSQL_USE=	PHP=pdo_mysql
+PGSQL_USE=	PHP=pdo_pgsql
+SQLITE_USE=	PHP=pdo_sqlite
 
 do-install:
 	${INSTALL} -d -m 755 ${STAGEDIR}${WWWDIR}/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509041704.t84H417C055146>