svn commit: r479152 - head/www/node

Bradley T. Hughes bhughes at FreeBSD.org
Thu Sep 6 19:40:42 UTC 2018


Author: bhughes
Date: Thu Sep  6 19:40:41 2018
New Revision: 479152
URL: https://svnweb.freebsd.org/changeset/ports/479152

Log:
  www/node: 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/node/Makefile

Modified: head/www/node/Makefile
==============================================================================
--- head/www/node/Makefile	Thu Sep  6 19:40:22 2018	(r479151)
+++ head/www/node/Makefile	Thu Sep  6 19:40:41 2018	(r479152)
@@ -3,6 +3,7 @@
 PORTNAME=	node
 PORTVERSION=	10.9.0
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES=	www
 MASTER_SITES=	http://nodejs.org/dist/v${PORTVERSION}/
 
@@ -50,6 +51,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
@@ -59,7 +61,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 <bsd.port.options.mk>
 


More information about the svn-ports-head mailing list