From owner-svn-ports-head@FreeBSD.ORG Wed Nov 13 12:40:08 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CF52246; Wed, 13 Nov 2013 12:40:08 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C49022DEB; Wed, 13 Nov 2013 12:40:07 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id BCBE5BDC30; Wed, 13 Nov 2013 13:40:03 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 8FAD9BDC24; Wed, 13 Nov 2013 13:40:03 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id A285E6125; Wed, 13 Nov 2013 13:40:01 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id D05466448EA9; Wed, 13 Nov 2013 13:40:00 +0100 (CET) Date: Wed, 13 Nov 2013 13:40:00 +0100 From: Mathieu Arnold To: Kevin Lo , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, spil.oss@gmail.com Subject: Re: svn commit: r333654 - head/www/owncloud Message-ID: In-Reply-To: <201311130632.rAD6W4JR098396@svn.freebsd.org> References: <201311130632.rAD6W4JR098396@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Nov 2013 12:40:08 -0000 +--On 13 novembre 2013 06:32:04 +0000 Kevin Lo wrote: | +.include | + | +.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