From owner-svn-ports-all@freebsd.org Mon Oct 5 17:40:24 2015 Return-Path: Delivered-To: svn-ports-all@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 30CA499A272; Mon, 5 Oct 2015 17:40:24 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 223FD992; Mon, 5 Oct 2015 17:40:24 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t95HeOB3025029; Mon, 5 Oct 2015 17:40:24 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t95HeNst025028; Mon, 5 Oct 2015 17:40:23 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201510051740.t95HeNst025028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 5 Oct 2015 17:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398658 - 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-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Oct 2015 17:40:24 -0000 Author: wg Date: Mon Oct 5 17:40:23 2015 New Revision: 398658 URL: https://svnweb.freebsd.org/changeset/ports/398658 Log: www/zend-framework: fix build Reported by: lme (via email) Modified: head/www/zend-framework/Makefile Modified: head/www/zend-framework/Makefile ============================================================================== --- head/www/zend-framework/Makefile Mon Oct 5 17:16:57 2015 (r398657) +++ head/www/zend-framework/Makefile Mon Oct 5 17:40:23 2015 (r398658) @@ -3,6 +3,7 @@ PORTNAME= ZendFramework PORTVERSION= 2.3.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://packages.zendframework.com/releases/${DISTNAME}/ @@ -39,8 +40,8 @@ PORTDOCS= CHANGELOG.md INSTALL.md README # Add all of the required and/or optional PHP extension dependencies, # if chosen by the user. .if ${PORT_OPTIONS:MREQPHP} -USE_PHP+= apc ctype curl dom gd hash iconv mbstring ldap mcrypt \ - pcre pdo session simplexml soap wddx xml zlib +USE_PHP+= ctype curl dom gd hash iconv mbstring ldap mcrypt \ + opcache pcre pdo session simplexml soap wddx xml zlib .if ${PHP_VER} == 52 USE_PHP+= sqlite .else