From owner-svn-ports-head@freebsd.org Wed Aug 3 13:01:17 2016 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 82C95BAC006; Wed, 3 Aug 2016 13:01:17 +0000 (UTC) (envelope-from mat@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 42CF61F2C; Wed, 3 Aug 2016 13:01:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u73D1G56084213; Wed, 3 Aug 2016 13:01:16 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u73D1Gow084209; Wed, 3 Aug 2016 13:01:16 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201608031301.u73D1Gow084209@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 3 Aug 2016 13:01:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419518 - in head/www: php-screw php-templates 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.22 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, 03 Aug 2016 13:01:17 -0000 Author: mat Date: Wed Aug 3 13:01:15 2016 New Revision: 419518 URL: https://svnweb.freebsd.org/changeset/ports/419518 Log: Fix PHP ports I missed from my exp-run. PR: 210697 Submitted by: mat Reported by: antoine Exp-run by: antoine Sponsored by: Absolight Modified: head/www/php-screw/Makefile (contents, props changed) head/www/php-screw/pkg-plist (contents, props changed) head/www/php-templates/Makefile (contents, props changed) head/www/php-templates/pkg-plist (contents, props changed) Modified: head/www/php-screw/Makefile ============================================================================== --- head/www/php-screw/Makefile Wed Aug 3 13:01:05 2016 (r419517) +++ head/www/php-screw/Makefile Wed Aug 3 13:01:15 2016 (r419518) @@ -3,6 +3,7 @@ PORTNAME= php-screw PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= www security MASTER_SITES= SF/${PORTNAME}/OldFiles DISTNAME= php_screw-${PORTVERSION} @@ -44,7 +45,7 @@ do-install: ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR} @${INSTALL_PROGRAM} ${WRKSRC}/tools/screw ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php - @${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so" > \ + @${ECHO_CMD} "extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/php_screw.so" > \ ${STAGEDIR}${PREFIX}/etc/php/ext-30-screw.ini .include Modified: head/www/php-screw/pkg-plist ============================================================================== --- head/www/php-screw/pkg-plist Wed Aug 3 13:01:05 2016 (r419517) +++ head/www/php-screw/pkg-plist Wed Aug 3 13:01:15 2016 (r419518) @@ -1,2 +1,3 @@ bin/screw lib/php/%%PHP_EXT_DIR%%/php_screw.so +etc/php/ext-30-screw.ini Modified: head/www/php-templates/Makefile ============================================================================== --- head/www/php-templates/Makefile Wed Aug 3 13:01:05 2016 (r419517) +++ head/www/php-templates/Makefile Wed Aug 3 13:01:15 2016 (r419518) @@ -3,7 +3,7 @@ PORTNAME= php-templates PORTVERSION= 1.7.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.7:ext \ SF/${PORTNAME}/${PORTNAME}-doc/html:doc @@ -32,7 +32,7 @@ do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}-doc/* ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${PREFIX}/etc/php - @${ECHO_CMD} "extension="${PREFIX}/lib/php/${PHP_EXT_DIR}/templates.so" > \ + @${ECHO_CMD} "extension=${PREFIX}/lib/php/${PHP_EXT_DIR}/templates.so" > \ ${STAGEDIR}${PREFIX}/etc/php/ext-20-templates.ini .include Modified: head/www/php-templates/pkg-plist ============================================================================== --- head/www/php-templates/pkg-plist Wed Aug 3 13:01:05 2016 (r419517) +++ head/www/php-templates/pkg-plist Wed Aug 3 13:01:15 2016 (r419518) @@ -1 +1,2 @@ lib/php/%%PHP_EXT_DIR%%/templates.so +etc/php/ext-20-templates.ini