From owner-svn-ports-all@freebsd.org Sun Dec 6 17:52:07 2015 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 8664F9A0896; Sun, 6 Dec 2015 17:52:07 +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 3F10F1D4C; Sun, 6 Dec 2015 17:52:07 +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 tB6Hq6fm074406; Sun, 6 Dec 2015 17:52:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB6Hq6hP074404; Sun, 6 Dec 2015 17:52:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201512061752.tB6Hq6hP074404@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, 6 Dec 2015 17:52:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403137 - in head/www/npm: . files 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.20 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, 06 Dec 2015 17:52:07 -0000 Author: sunpoet Date: Sun Dec 6 17:52:06 2015 New Revision: 403137 URL: https://svnweb.freebsd.org/changeset/ports/403137 Log: - Add gmake to RUN_DEPENDS - Fix default C/C++ compiler in node-gyp - Bump PORTREVISION for dependency and package change PR: 204547 Submitted by: Yuri Added: head/www/npm/files/patch-node_modules-node-gyp-gyp-pylib-gyp-generator-make.py (contents, props changed) Modified: head/www/npm/Makefile Modified: head/www/npm/Makefile ============================================================================== --- head/www/npm/Makefile Sun Dec 6 17:52:01 2015 (r403136) +++ head/www/npm/Makefile Sun Dec 6 17:52:06 2015 (r403137) @@ -3,7 +3,7 @@ PORTNAME= npm PORTVERSION= 2.14.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet @@ -12,6 +12,8 @@ COMMENT= Node package manager LICENSE= MIT +RUN_DEPENDS= gmake:${PORTSDIR}/devel/gmake + OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= NODE NODE_DEVEL OPTIONS_DEFAULT=NODE Added: head/www/npm/files/patch-node_modules-node-gyp-gyp-pylib-gyp-generator-make.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/npm/files/patch-node_modules-node-gyp-gyp-pylib-gyp-generator-make.py Sun Dec 6 17:52:06 2015 (r403137) @@ -0,0 +1,14 @@ +--- node_modules/node-gyp/gyp/pylib/gyp/generator/make.py.orig 2015-10-02 18:06:50 UTC ++++ node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +@@ -2059,9 +2059,9 @@ def GenerateOutput(target_list, target_d + 'AR.target': GetEnvironFallback(('AR_target', 'AR'), '$(AR)'), + 'CXX.target': GetEnvironFallback(('CXX_target', 'CXX'), '$(CXX)'), + 'LINK.target': GetEnvironFallback(('LINK_target', 'LINK'), '$(LINK)'), +- 'CC.host': GetEnvironFallback(('CC_host',), 'gcc'), ++ 'CC.host': GetEnvironFallback(('CC_host',), 'cc'), + 'AR.host': GetEnvironFallback(('AR_host',), 'ar'), +- 'CXX.host': GetEnvironFallback(('CXX_host',), 'g++'), ++ 'CXX.host': GetEnvironFallback(('CXX_host',), 'c++'), + 'LINK.host': GetEnvironFallback(('LINK_host',), '$(CXX.host)'), + }) +