From owner-svn-ports-all@FreeBSD.ORG Sun Feb 9 08:39:02 2014 Return-Path: Delivered-To: svn-ports-all@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 427C882D; Sun, 9 Feb 2014 08:39:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C24C110D; Sun, 9 Feb 2014 08:39:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s198d2dI006850; Sun, 9 Feb 2014 08:39:02 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s198d05H006839; Sun, 9 Feb 2014 08:39:00 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201402090839.s198d05H006839@svn.freebsd.org> From: Alex Dupre Date: Sun, 9 Feb 2014 08:39:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343435 - in head: converters/php5-iconv databases/php5-interbase databases/php5-pdo_firebird ftp/php5-curl lang/php5 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.17 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: Sun, 09 Feb 2014 08:39:02 -0000 Author: ale Date: Sun Feb 9 08:39:00 2014 New Revision: 343435 URL: http://svnweb.freebsd.org/changeset/ports/343435 QAT: https://qat.redports.org/buildarchive/r343435/ Log: - Update to 5.4.25 release [1] - Enable FPM by default [2] - Add support to override configure flags [3] To users requesting mod_php package, please read this: https://wiki.apache.org/httpd/PHP-FPM PR: ports/186564 [1], ports/185437 [2], ports/186536 [3] Submitted by: Rustem Alimov [1], Ilya Bakulin [2], Reinier Schoof [3] Modified: head/converters/php5-iconv/Makefile head/databases/php5-interbase/Makefile head/databases/php5-pdo_firebird/Makefile head/ftp/php5-curl/Makefile head/lang/php5/Makefile head/lang/php5/distinfo Modified: head/converters/php5-iconv/Makefile ============================================================================== --- head/converters/php5-iconv/Makefile Sun Feb 9 08:08:43 2014 (r343434) +++ head/converters/php5-iconv/Makefile Sun Feb 9 08:39:00 2014 (r343435) @@ -1,7 +1,6 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= converters MASTERDIR= ${.CURDIR}/../../lang/php5 Modified: head/databases/php5-interbase/Makefile ============================================================================== --- head/databases/php5-interbase/Makefile Sun Feb 9 08:08:43 2014 (r343434) +++ head/databases/php5-interbase/Makefile Sun Feb 9 08:39:00 2014 (r343435) @@ -1,7 +1,6 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php5 Modified: head/databases/php5-pdo_firebird/Makefile ============================================================================== --- head/databases/php5-pdo_firebird/Makefile Sun Feb 9 08:08:43 2014 (r343434) +++ head/databases/php5-pdo_firebird/Makefile Sun Feb 9 08:39:00 2014 (r343435) @@ -1,7 +1,6 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php5 Modified: head/ftp/php5-curl/Makefile ============================================================================== --- head/ftp/php5-curl/Makefile Sun Feb 9 08:08:43 2014 (r343434) +++ head/ftp/php5-curl/Makefile Sun Feb 9 08:39:00 2014 (r343435) @@ -2,7 +2,6 @@ # $FreeBSD$ CATEGORIES= ftp -PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../../lang/php5 Modified: head/lang/php5/Makefile ============================================================================== --- head/lang/php5/Makefile Sun Feb 9 08:08:43 2014 (r343434) +++ head/lang/php5/Makefile Sun Feb 9 08:39:00 2014 (r343435) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php5 -PORTVERSION= 5.4.24 +PORTVERSION= 5.4.25 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} @@ -23,8 +23,7 @@ USE_AUTOTOOLS= autoconf LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre -CONFIGURE_ARGS= \ - --with-layout=GNU \ +CONFIGURE_ARGS+=--with-layout=GNU \ --localstatedir=/var \ --with-config-file-scan-dir=${PREFIX}/etc/php \ --disable-all \ @@ -38,7 +37,7 @@ CONFIGURE_ARGS= \ USE_GNOME= libxml2 OPTIONS_DEFINE= CLI CGI FPM APACHE AP2FILTER EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS -OPTIONS_DEFAULT=CLI CGI IPV6 LINKTHR +OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR OPTIONS_SUB= yes CLI_DESC= Build CLI version Modified: head/lang/php5/distinfo ============================================================================== --- head/lang/php5/distinfo Sun Feb 9 08:08:43 2014 (r343434) +++ head/lang/php5/distinfo Sun Feb 9 08:39:00 2014 (r343435) @@ -1,4 +1,4 @@ -SHA256 (php-5.4.24.tar.bz2) = 97fe70eddaf5b93969714a551870fe03f6b0a387f85b83a6d63a40a76199a327 -SIZE (php-5.4.24.tar.bz2) = 12256796 +SHA256 (php-5.4.25.tar.bz2) = b6c18c07c6bf34f75e601b28829d636e44c1c9f4267aac4ed013443c32a2245f +SIZE (php-5.4.25.tar.bz2) = 11739877 SHA256 (php-5.4.x-mail-header.patch) = 005ae1cd8ed17c72d7b09dee9c4466e8b16d4ecba7fe11276731ed6ff9fbb344 SIZE (php-5.4.x-mail-header.patch) = 3379