svn commit: r333654 - head/www/owncloud

Mathieu Arnold mat at FreeBSD.org
Wed Nov 13 12:40:08 UTC 2013


+--On 13 novembre 2013 06:32:04 +0000 Kevin Lo <kevlo at FreeBSD.org> wrote:
| +.include <bsd.port.options.mk>
| +
| +.if ${PORT_OPTIONS:MMYSQL}
| +USE_MYSQL=	client
| +USE_PHP+=	mysql pdo_mysql
| +.endif
| +
| +.if ${PORT_OPTIONS:MPGSQL}
| +USE_PGSQL=	yes
| +USE_PHP+=	pgsql pdo_pgsql
| +.endif
| +
| +.if ${PORT_OPTIONS:MSQLITE}
| +USE_PHP+=	sqlite3 pdo_sqlite
| +.endif

All that should be condensed into :

MYSQL_USE=      mysql=client php=mysql,pdo_mysql
PGSQL_USE=      pgsql=yes php=pgsql,pdo_pgsql
SQLITE_USE=     php=sqlite3,pdo_sqlite

:-)

-- 
Mathieu Arnold


More information about the svn-ports-all mailing list