From owner-svn-ports-head@freebsd.org Wed Jan 25 18:58:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 292A0CBCB7F; Wed, 25 Jan 2017 18:58:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECA1EB1F; Wed, 25 Jan 2017 18:58:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0PIwBW1057383; Wed, 25 Jan 2017 18:58:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0PIwBnS057382; Wed, 25 Jan 2017 18:58:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201701251858.v0PIwBnS057382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 25 Jan 2017 18:58:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432454 - head/www/zend-framework X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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, 25 Jan 2017 18:58:12 -0000 Author: sunpoet Date: Wed Jan 25 18:58:10 2017 New Revision: 432454 URL: https://svnweb.freebsd.org/changeset/ports/432454 Log: Fix MEMCACHE option - Add LICENSE_FILE - Add NO_ARCH - Use USE_PHP=memcache instead of hard-coded databases/pecl-memcache Approved by: portmgr (blanket) MFH: 2017Q1 Modified: head/www/zend-framework/Makefile Modified: head/www/zend-framework/Makefile ============================================================================== --- head/www/zend-framework/Makefile Wed Jan 25 18:42:26 2017 (r432453) +++ head/www/zend-framework/Makefile Wed Jan 25 18:58:10 2017 (r432454) @@ -11,9 +11,11 @@ MAINTAINER= wg@FreeBSD.org COMMENT= Framework for developing PHP web applications LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt CONFLICTS= ZendFramework-1.* +NO_ARCH= yes NO_BUILD= yes USE_PHP= spl WANT_PHP_WEB= yes @@ -32,7 +34,7 @@ ODBC_DESC= Enable ODBC PDO support SQLITE_DESC= Enable SQLite v3 PDO support REQPHP_DESC= Install required PHP dependencies OPTPHP_DESC= Install optional PHP dependencies -MEMCACHE_DESC= Enable memcache support +MEMCACHE_DESC= Enable memcache support PORTDOCS= CHANGELOG.md INSTALL.md README-GIT.md CONTRIBUTING.md README.md @@ -49,9 +51,9 @@ USE_PHP+= ctype curl dom gd hash iconv m USE_PHP+= bcmath bitset json posix .endif -.if ${PORT_OPTIONS:MMCACHE} -RUN_DEPENDS+= pecl-memcache>=0:databases/pecl-memcache \ - pecl-memcached>=0:databases/pecl-memcached +.if ${PORT_OPTIONS:MMEMCACHE} +USE_PHP+= memcache +RUN_DEPENDS+= pecl-memcached>=0:databases/pecl-memcached .endif .if ${PORT_OPTIONS:MMYSQL}