From owner-svn-ports-head@freebsd.org Tue Jan 19 08:36:39 2016 Return-Path: Delivered-To: svn-ports-head@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 B6313A86BBB; Tue, 19 Jan 2016 08:36:39 +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 854D0164F; Tue, 19 Jan 2016 08:36:39 +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 u0J8ac5S008479; Tue, 19 Jan 2016 08:36:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0J8acIM008478; Tue, 19 Jan 2016 08:36:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201601190836.u0J8acIM008478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 19 Jan 2016 08:36:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406648 - head/www/npm X-SVN-Group: ports-head 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.20 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: Tue, 19 Jan 2016 08:36:39 -0000 Author: sunpoet Date: Tue Jan 19 08:36:38 2016 New Revision: 406648 URL: https://svnweb.freebsd.org/changeset/ports/406648 Log: - Add NODE010, NODE012 and NODE4 options Modified: head/www/npm/Makefile Modified: head/www/npm/Makefile ============================================================================== --- head/www/npm/Makefile Tue Jan 19 08:36:33 2016 (r406647) +++ head/www/npm/Makefile Tue Jan 19 08:36:38 2016 (r406648) @@ -15,10 +15,13 @@ LICENSE= MIT RUN_DEPENDS= gmake:${PORTSDIR}/devel/gmake OPTIONS_SINGLE= BACKEND -OPTIONS_SINGLE_BACKEND= NODE NODE_DEVEL +OPTIONS_SINGLE_BACKEND= NODE NODE_DEVEL NODE010 NODE012 NODE4 OPTIONS_DEFAULT=NODE NODE_DESC= Use www/node as backend NODE_DEVEL_DESC=Use www/node-devel as backend +NODE010_DESC= Use www/node010 as backend +NODE012_DESC= Use www/node012 as backend +NODE4_DESC= Use www/node4 as backend MAKE_ARGS= npm_config_prefix=${STAGEDIR}${PREFIX} MANPREFIX= ${PREFIX}/lib/node_modules/npm @@ -40,6 +43,9 @@ SHEBANG_FILES= lib/utils/completion.sh \ NODE_DEVEL_RUN_DEPENDS= node-devel>=0.8.0:${PORTSDIR}/www/node-devel NODE_RUN_DEPENDS= node>=0.8.0:${PORTSDIR}/www/node +NODE010_RUN_DEPENDS= node010>=0.8.0:${PORTSDIR}/www/node010 +NODE012_RUN_DEPENDS= node012>=0.8.0:${PORTSDIR}/www/node012 +NODE4_RUN_DEPENDS= node4>=0.8.0:${PORTSDIR}/www/node4 .include