From owner-svn-ports-all@freebsd.org Sun Dec 18 15:20:44 2016 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 7F66EC86359; Sun, 18 Dec 2016 15:20:44 +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 41F541ED5; Sun, 18 Dec 2016 15:20:44 +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 uBIFKhAd028594; Sun, 18 Dec 2016 15:20:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBIFKh9P028591; Sun, 18 Dec 2016 15:20:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612181520.uBIFKh9P028591@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Dec 2016 15:20:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428857 - in head: devel/pecl-swoole www/apache24 www/mod_http2-devel 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.23 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, 18 Dec 2016 15:20:44 -0000 Author: sunpoet Date: Sun Dec 18 15:20:42 2016 New Revision: 428857 URL: https://svnweb.freebsd.org/changeset/ports/428857 Log: - Change *_DEPENDS from www/nghttp2 to www/libnghttp2 - Bump PORTREVISION for dependency change Modified: head/devel/pecl-swoole/Makefile head/www/apache24/Makefile head/www/mod_http2-devel/Makefile Modified: head/devel/pecl-swoole/Makefile ============================================================================== --- head/devel/pecl-swoole/Makefile Sun Dec 18 15:20:38 2016 (r428856) +++ head/devel/pecl-swoole/Makefile Sun Dec 18 15:20:42 2016 (r428857) @@ -3,6 +3,7 @@ PORTNAME= swoole PORTVERSION= 1.8.13 +PORTREVISION= 1 CATEGORIES= devel net MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -20,7 +21,7 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_PHP= pcre OPTIONS_DEFINE= HTTP2 REDIS -HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 +HTTP2_LIB_DEPENDS= libnghttp2.so:www/libnghttp2 HTTP2_CONFIGURE_ON= --enable-http2 --enable-openssl REDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis REDIS_CONFIGURE_ON= --enable-async-redis --enable-coroutine Modified: head/www/apache24/Makefile ============================================================================== --- head/www/apache24/Makefile Sun Dec 18 15:20:38 2016 (r428856) +++ head/www/apache24/Makefile Sun Dec 18 15:20:42 2016 (r428857) @@ -2,7 +2,7 @@ PORTNAME= apache24 PORTVERSION= 2.4.23 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} @@ -80,12 +80,12 @@ IPV4_MAPPED_CONFIGURE_ENABLE= v4-mapped LDAP_CONFIGURE_ON= --enable-ldap=shared HTTP2_CONFIGURE_ON= --with-nghttp2=${LOCALBASE} -HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 +HTTP2_LIB_DEPENDS= libnghttp2.so:www/libnghttp2 LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUA_CONFIGURE_WITH= lua LUA_USES= lua PROXY_HTTP2_CONFIGURE_ON= --with-nghttp2=${LOCALBASE} -PROXY_HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 +PROXY_HTTP2_LIB_DEPENDS= libnghttp2.so:www/libnghttp2 SOCACHE_DC_CONFIGURE_ON= --with-distcache=${LOCALBASE} SOCACHE_DC_LIB_DEPENDS= libdistcache.so:security/distcache Modified: head/www/mod_http2-devel/Makefile ============================================================================== --- head/www/mod_http2-devel/Makefile Sun Dec 18 15:20:38 2016 (r428856) +++ head/www/mod_http2-devel/Makefile Sun Dec 18 15:20:42 2016 (r428857) @@ -3,6 +3,7 @@ PORTNAME= mod_http2-devel PORTVERSION= 1.8.3 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= www @@ -11,8 +12,8 @@ COMMENT= Early experience HTTP/2 modules LICENSE= APACHE20 -BUILD_DEPENDS= nghttp2>=1.2:www/nghttp2 -LIB_DEPENDS= libnghttp2.so:www/nghttp2 +BUILD_DEPENDS= libnghttp2>=1.2:www/libnghttp2 +LIB_DEPENDS= libnghttp2.so:www/libnghttp2 USE_GITHUB= yes GH_ACCOUNT= icing