From owner-svn-ports-head@freebsd.org Thu Sep 6 19:40:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B36DEFE3302; Thu, 6 Sep 2018 19:40:23 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6928288982; Thu, 6 Sep 2018 19:40:23 +0000 (UTC) (envelope-from bhughes@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 641E2118B0; Thu, 6 Sep 2018 19:40:23 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w86JeNjw073585; Thu, 6 Sep 2018 19:40:23 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w86JeNFN073584; Thu, 6 Sep 2018 19:40:23 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201809061940.w86JeNFN073584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Thu, 6 Sep 2018 19:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479151 - head/www/node8 X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: head/www/node8 X-SVN-Commit-Revision: 479151 X-SVN-Commit-Repository: ports 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.27 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: Thu, 06 Sep 2018 19:40:23 -0000 Author: bhughes Date: Thu Sep 6 19:40:22 2018 New Revision: 479151 URL: https://svnweb.freebsd.org/changeset/ports/479151 Log: www/node8: add dependency on www/libnghttp2 ... instead of using the bundled version. Bump PORTREVISION due to the new dependency. Sponsored by: Miles AS Modified: head/www/node8/Makefile Modified: head/www/node8/Makefile ============================================================================== --- head/www/node8/Makefile Thu Sep 6 19:39:45 2018 (r479150) +++ head/www/node8/Makefile Thu Sep 6 19:40:22 2018 (r479151) @@ -3,6 +3,7 @@ PORTNAME= node PORTVERSION= 8.11.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ PKGNAMESUFFIX= 8 @@ -56,6 +57,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ --without-npm \ --shared-cares \ --shared-libuv \ + --shared-nghttp2 \ --shared-zlib SHEBANG_FILES= tools/specialize_node_d.py tools/genv8constants.py @@ -65,7 +67,8 @@ REINPLACE_ARGS= -i '' MAKE_ENV+= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX} LIB_DEPENDS+= libcares.so:dns/c-ares\ - libuv.so:devel/libuv + libuv.so:devel/libuv \ + libnghttp2.so:www/libnghttp2 .include