[Midnightbsd-cvs] mports [24448] trunk/www: add node 8, remove old versions

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Tue Oct 9 09:20:32 EDT 2018


Revision: 24448
          http://svnweb.midnightbsd.org/mports/?rev=24448
Author:   laffer1
Date:     2018-10-09 09:20:30 -0400 (Tue, 09 Oct 2018)
Log Message:
-----------
add node 8, remove old versions

Modified Paths:
--------------
    trunk/www/Makefile

Added Paths:
-----------
    trunk/www/node8/
    trunk/www/node8/Makefile
    trunk/www/node8/distinfo
    trunk/www/node8/files/
    trunk/www/node8/files/patch-deps_v8_src_arm_cpu-arm.cc
    trunk/www/node8/files/patch-deps_v8_src_base_cpu.cc
    trunk/www/node8/files/patch-deps_v8_src_base_platform_platform-freebsd.cc
    trunk/www/node8/files/patch-deps_v8_src_libsampler_sampler.cc
    trunk/www/node8/pkg-descr
    trunk/www/node8/pkg-message
    trunk/www/node8/pkg-plist
    trunk/www/npm-node6/
    trunk/www/npm-node6/Makefile

Removed Paths:
-------------
    trunk/www/node012/
    trunk/www/node4/

Modified: trunk/www/Makefile
===================================================================
--- trunk/www/Makefile	2018-10-09 13:05:20 UTC (rev 24447)
+++ trunk/www/Makefile	2018-10-09 13:20:30 UTC (rev 24448)
@@ -55,9 +55,10 @@
 SUBDIR += nghttp2
 SUBDIR += nginx
 SUBDIR += npm
+SUBDIR += npm-node6
 SUBDIR += node
-SUBDIR += node012
 SUBDIR += node6
+SUBDIR += node8
 SUBDIR += nspluginwrapper
 SUBDIR += p5-Apache-LogFormat-Compiler
 SUBDIR += p5-CGI-Ajax

Added: trunk/www/node8/Makefile
===================================================================
--- trunk/www/node8/Makefile	                        (rev 0)
+++ trunk/www/node8/Makefile	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,94 @@
+# $MidnightBSD$
+
+PORTNAME=	node
+PORTVERSION=	8.11.3
+DISTVERSIONPREFIX=	v
+PORTREVISION=	1
+CATEGORIES=	www
+MASTER_SITES=	http://nodejs.org/dist/v${PORTVERSION}/
+PKGNAMESUFFIX=	8
+
+PATCH_SITES=	https://github.com/nodejs/node/commit/
+PATCHFILES=	b8f47b27571f.patch:-p1
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	V8 JavaScript for client and server (8.x LTS)
+
+LICENSE=	mit
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+ONLY_FOR_ARCHS=		aarch64 amd64 armv6 armv7 i386
+
+OPTIONS_DEFINE=	BUNDLED_SSL DOCS
+OPTIONS_SUB=	yes
+
+BUNDLED_SSL_DESC=		Use node.js's bundled OpenSSL implementation
+BUNDLED_SSL_USES_OFF=		ssl
+BUNDLED_SSL_CONFIGURE_OFF=	--shared-openssl --openssl-use-def-ca-store
+BUNDLED_SSL_RUN_DEPENDS_OFF=	ca_root_nss>=0:security/ca_root_nss
+
+NLS_CONFIGURE_ON=	--with-intl=system-icu
+NLS_LIB_DEPENDS=	libicui18n.so:devel/icu
+
+USES=		compiler:c++11-lib gmake python:2.7,build pkgconfig \
+		localbase shebangfix
+
+HAS_CONFIGURE=	yes
+
+CONFLICTS_INSTALL=	node[456]-[0-9]* node-[0-9]*
+
+CONFIGURE_ARGS=	--prefix=${PREFIX_RELDEST} \
+		--without-npm \
+		--shared-cares \
+		--shared-libuv \
+		--shared-zlib \
+		--dest-os=freebsd
+
+SHEBANG_FILES=	tools/specialize_node_d.py tools/genv8constants.py
+
+PREFIX_RELDEST=	${PREFIX:S,^${DESTDIR},,}
+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
+
+.include <bsd.mport.options.mk>
+
+.if empty(PORT_OPTIONS:MBUNDLED_SSL)
+
+.if !empty(SSL_DEFAULT:Mlibressl*)
+IGNORE=		cannot build node.js with LibreSSL. You must enable BUNDLED_SSL
+.endif
+
+.endif
+
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == armv6 || ${ARCH} == armv7
+CONFIGURE_ARGS+=--openssl-no-asm
+.endif
+
+.if ${COMPILER_TYPE} == gcc
+# GCC does not expose std::snprintf() without this define
+CXXFLAGS+=	-D_GLIBCXX_USE_C99
+.endif
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
+		${WRKSRC}/deps/v8/src/v8.gyp
+
+post-configure:
+	# Post-process Makefile and *.mk files created by node-gyp and remove
+	# all occurrences of -I${LOCALBASE}/include. C*FLAGS include this
+	# before all -I../deps/* for bundled code. This can cause build
+	# breakages if the dependency is installed in ${LOCALBASE}. The
+	# USES+=localbase # above will ensure that we pick up includes for real
+	# external dependencies.
+	${FIND} ${WRKSRC}/out -type f -print0 \
+		| ${XARGS} -0 ${REINPLACE_CMD} -e "s|-I${LOCALBASE}/include||g"
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/node
+
+.include <bsd.port.post.mk>


Property changes on: trunk/www/node8/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/distinfo
===================================================================
--- trunk/www/node8/distinfo	                        (rev 0)
+++ trunk/www/node8/distinfo	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1528863109
+SHA256 (node-v8.11.3.tar.gz) = 0d7e795c0579226c8b197353bbb9392cae802f4fefa4787a2c0e678beaf85cce
+SIZE (node-v8.11.3.tar.gz) = 31115954
+SHA256 (b8f47b27571f.patch) = b0b22c490c4b4e7ed4bad46d1989e980a0ba30299855ec0164ff3d11384833c7
+SIZE (b8f47b27571f.patch) = 4763


Property changes on: trunk/www/node8/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/files/patch-deps_v8_src_arm_cpu-arm.cc
===================================================================
--- trunk/www/node8/files/patch-deps_v8_src_arm_cpu-arm.cc	                        (rev 0)
+++ trunk/www/node8/files/patch-deps_v8_src_arm_cpu-arm.cc	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,22 @@
+--- deps/v8/src/arm/cpu-arm.cc.orig	2017-06-15 11:55:20 UTC
++++ deps/v8/src/arm/cpu-arm.cc
+@@ -7,6 +7,9 @@
+ #ifdef __QNXNTO__
+ #include <sys/mman.h>  // for cache flushing.
+ #undef MAP_TYPE
++#elif defined(__FreeBSD__)
++#include <sys/types.h>
++#include <machine/sysarch.h> // for cache flushing.
+ #else
+ #include <sys/syscall.h>  // for cache flushing.
+ #endif
+@@ -24,6 +27,9 @@ void CpuFeatures::FlushICache(void* start, size_t size
+ #if !defined(USE_SIMULATOR)
+ #if V8_OS_QNX
+   msync(start, size, MS_SYNC | MS_INVALIDATE_ICACHE);
++#elif defined(__FreeBSD__)
++  struct arm_sync_icache_args args = { .addr = (uintptr_t)start, .len = size };
++  sysarch(ARM_SYNC_ICACHE, (void *)&args);
+ #else
+   register uint32_t beg asm("r0") = reinterpret_cast<uint32_t>(start);
+   register uint32_t end asm("r1") = beg + size;


Property changes on: trunk/www/node8/files/patch-deps_v8_src_arm_cpu-arm.cc
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/files/patch-deps_v8_src_base_cpu.cc
===================================================================
--- trunk/www/node8/files/patch-deps_v8_src_base_cpu.cc	                        (rev 0)
+++ trunk/www/node8/files/patch-deps_v8_src_base_cpu.cc	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,19 @@
+--- deps/v8/src/base/cpu.cc.orig	2017-08-09 18:48:10 UTC
++++ deps/v8/src/base/cpu.cc
+@@ -607,6 +607,7 @@ CPU::CPU()
+ 
+ #elif V8_HOST_ARCH_ARM64
+ 
++#if V8_OS_LINUX
+   CPUInfo cpu_info;
+ 
+   // Extract implementor from the "CPU implementer" field.
+@@ -640,6 +641,8 @@ CPU::CPU()
+     }
+     delete[] part;
+   }
++
++#endif  // V8_OS_LINUX
+ 
+ #elif V8_HOST_ARCH_PPC
+ 


Property changes on: trunk/www/node8/files/patch-deps_v8_src_base_cpu.cc
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/files/patch-deps_v8_src_base_platform_platform-freebsd.cc
===================================================================
--- trunk/www/node8/files/patch-deps_v8_src_base_platform_platform-freebsd.cc	                        (rev 0)
+++ trunk/www/node8/files/patch-deps_v8_src_base_platform_platform-freebsd.cc	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,51 @@
+--- deps/v8/src/base/platform/platform-freebsd.cc.orig	2017-10-24 19:40:14 UTC
++++ deps/v8/src/base/platform/platform-freebsd.cc
+@@ -51,6 +51,48 @@ void* OS::Allocate(const size_t requested, size_t* all
+   return mbase;
+ }
+ 
++#ifdef __arm__
++
++bool OS::ArmUsingHardFloat() {
++  // GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
++  // the Floating Point ABI used (PCS stands for Procedure Call Standard).
++  // We use these as well as a couple of other defines to statically determine
++  // what FP ABI used.
++  // GCC versions 4.4 and below don't support hard-fp.
++  // GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
++  // __ARM_PCS_VFP.
++
++#define GCC_VERSION (__GNUC__ * 10000                                          \
++                     + __GNUC_MINOR__ * 100                                    \
++                     + __GNUC_PATCHLEVEL__)
++#if GCC_VERSION >= 40600
++#if defined(__ARM_PCS_VFP)
++  return true;
++#else
++  return false;
++#endif
++
++#elif GCC_VERSION < 40500
++  return false;
++
++#else
++#if defined(__ARM_PCS_VFP)
++  return true;
++#elif defined(__ARM_PCS) || defined(__SOFTFP__) || defined(__SOFTFP) || \
++      !defined(__VFP_FP__)
++  return false;
++#else
++#error "Your version of GCC does not report the FP ABI compiled for."          \
++       "Please report it on this issue"                                        \
++       "http://code.google.com/p/v8/issues/detail?id=2140"
++
++#endif
++#endif
++#undef GCC_VERSION
++}
++
++#endif  // def __arm__
++
+ 
+ static unsigned StringToLong(char* buffer) {
+   return static_cast<unsigned>(strtol(buffer, NULL, 16));  // NOLINT


Property changes on: trunk/www/node8/files/patch-deps_v8_src_base_platform_platform-freebsd.cc
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/files/patch-deps_v8_src_libsampler_sampler.cc
===================================================================
--- trunk/www/node8/files/patch-deps_v8_src_libsampler_sampler.cc	                        (rev 0)
+++ trunk/www/node8/files/patch-deps_v8_src_libsampler_sampler.cc	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,15 @@
+--- deps/v8/src/libsampler/sampler.cc.orig	2017-10-24 19:40:19 UTC
++++ deps/v8/src/libsampler/sampler.cc
+@@ -506,9 +506,9 @@ void SignalHandler::FillRegisterState(void* context, R
+   state->sp = reinterpret_cast<void*>(mcontext.mc_rsp);
+   state->fp = reinterpret_cast<void*>(mcontext.mc_rbp);
+ #elif V8_HOST_ARCH_ARM
+-  state->pc = reinterpret_cast<void*>(mcontext.mc_r15);
+-  state->sp = reinterpret_cast<void*>(mcontext.mc_r13);
+-  state->fp = reinterpret_cast<void*>(mcontext.mc_r11);
++  state->pc = reinterpret_cast<void*>(mcontext.__gregs[_REG_PC]);
++  state->sp = reinterpret_cast<void*>(mcontext.__gregs[_REG_SP]);
++  state->fp = reinterpret_cast<void*>(mcontext.__gregs[_REG_FP]);
+ #endif  // V8_HOST_ARCH_*
+ #elif V8_OS_NETBSD
+ #if V8_HOST_ARCH_IA32


Property changes on: trunk/www/node8/files/patch-deps_v8_src_libsampler_sampler.cc
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/pkg-descr
===================================================================
--- trunk/www/node8/pkg-descr	                        (rev 0)
+++ trunk/www/node8/pkg-descr	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,6 @@
+Node.js is a JavaScript runtime built on Chrome's V8 JavaScript
+engine. Node.js uses an event-driven, non-blocking I/O model that
+makes it lightweight and efficient. Node.js' package ecosystem,
+npm, is the largest ecosystem of open source libraries in the world.
+
+WWW: http://nodejs.org/


Property changes on: trunk/www/node8/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/pkg-message
===================================================================
--- trunk/www/node8/pkg-message	                        (rev 0)
+++ trunk/www/node8/pkg-message	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1 @@
+Note: If you need npm (Node Package Manager), please install www/npm.


Property changes on: trunk/www/node8/pkg-message
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/node8/pkg-plist
===================================================================
--- trunk/www/node8/pkg-plist	                        (rev 0)
+++ trunk/www/node8/pkg-plist	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,123 @@
+bin/node
+include/node/common.gypi
+include/node/config.gypi
+include/node/libplatform/libplatform.h
+include/node/libplatform/libplatform-export.h
+include/node/libplatform/v8-tracing.h
+include/node/node.h
+include/node/node_api.h
+include/node/node_api_types.h
+include/node/node_buffer.h
+include/node/node_object_wrap.h
+include/node/node_version.h
+%%BUNDLED_SSL%%include/node/openssl/aes.h
+%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/VC-WIN32/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/VC-WIN64A/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/aix-gcc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/aix64-gcc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/darwin-i386-cc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/darwin64-x86_64-cc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-aarch64/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-armv4/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-elf/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-ppc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-ppc64/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-x32/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux-x86_64/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux32-s390x/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/linux64-s390x/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/solaris-x86-gcc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/archs/solaris64-x86_64-gcc/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/asn1.h
+%%BUNDLED_SSL%%include/node/openssl/asn1_mac.h
+%%BUNDLED_SSL%%include/node/openssl/asn1t.h
+%%BUNDLED_SSL%%include/node/openssl/bio.h
+%%BUNDLED_SSL%%include/node/openssl/blowfish.h
+%%BUNDLED_SSL%%include/node/openssl/bn.h
+%%BUNDLED_SSL%%include/node/openssl/buffer.h
+%%BUNDLED_SSL%%include/node/openssl/camellia.h
+%%BUNDLED_SSL%%include/node/openssl/cast.h
+%%BUNDLED_SSL%%include/node/openssl/cmac.h
+%%BUNDLED_SSL%%include/node/openssl/cms.h
+%%BUNDLED_SSL%%include/node/openssl/comp.h
+%%BUNDLED_SSL%%include/node/openssl/conf.h
+%%BUNDLED_SSL%%include/node/openssl/conf_api.h
+%%BUNDLED_SSL%%include/node/openssl/crypto.h
+%%BUNDLED_SSL%%include/node/openssl/des.h
+%%BUNDLED_SSL%%include/node/openssl/des_old.h
+%%BUNDLED_SSL%%include/node/openssl/dh.h
+%%BUNDLED_SSL%%include/node/openssl/dsa.h
+%%BUNDLED_SSL%%include/node/openssl/dso.h
+%%BUNDLED_SSL%%include/node/openssl/dtls1.h
+%%BUNDLED_SSL%%include/node/openssl/e_os2.h
+%%BUNDLED_SSL%%include/node/openssl/ebcdic.h
+%%BUNDLED_SSL%%include/node/openssl/ec.h
+%%BUNDLED_SSL%%include/node/openssl/ecdh.h
+%%BUNDLED_SSL%%include/node/openssl/ecdsa.h
+%%BUNDLED_SSL%%include/node/openssl/engine.h
+%%BUNDLED_SSL%%include/node/openssl/err.h
+%%BUNDLED_SSL%%include/node/openssl/evp.h
+%%BUNDLED_SSL%%include/node/openssl/hmac.h
+%%BUNDLED_SSL%%include/node/openssl/idea.h
+%%BUNDLED_SSL%%include/node/openssl/krb5_asn.h
+%%BUNDLED_SSL%%include/node/openssl/kssl.h
+%%BUNDLED_SSL%%include/node/openssl/lhash.h
+%%BUNDLED_SSL%%include/node/openssl/md4.h
+%%BUNDLED_SSL%%include/node/openssl/md5.h
+%%BUNDLED_SSL%%include/node/openssl/mdc2.h
+%%BUNDLED_SSL%%include/node/openssl/modes.h
+%%BUNDLED_SSL%%include/node/openssl/obj_mac.h
+%%BUNDLED_SSL%%include/node/openssl/objects.h
+%%BUNDLED_SSL%%include/node/openssl/ocsp.h
+%%BUNDLED_SSL%%include/node/openssl/opensslconf.h
+%%BUNDLED_SSL%%include/node/openssl/opensslv.h
+%%BUNDLED_SSL%%include/node/openssl/ossl_typ.h
+%%BUNDLED_SSL%%include/node/openssl/pem.h
+%%BUNDLED_SSL%%include/node/openssl/pem2.h
+%%BUNDLED_SSL%%include/node/openssl/pkcs12.h
+%%BUNDLED_SSL%%include/node/openssl/pkcs7.h
+%%BUNDLED_SSL%%include/node/openssl/pqueue.h
+%%BUNDLED_SSL%%include/node/openssl/rand.h
+%%BUNDLED_SSL%%include/node/openssl/rc2.h
+%%BUNDLED_SSL%%include/node/openssl/rc4.h
+%%BUNDLED_SSL%%include/node/openssl/ripemd.h
+%%BUNDLED_SSL%%include/node/openssl/rsa.h
+%%BUNDLED_SSL%%include/node/openssl/safestack.h
+%%BUNDLED_SSL%%include/node/openssl/seed.h
+%%BUNDLED_SSL%%include/node/openssl/sha.h
+%%BUNDLED_SSL%%include/node/openssl/srp.h
+%%BUNDLED_SSL%%include/node/openssl/srtp.h
+%%BUNDLED_SSL%%include/node/openssl/ssl.h
+%%BUNDLED_SSL%%include/node/openssl/ssl2.h
+%%BUNDLED_SSL%%include/node/openssl/ssl23.h
+%%BUNDLED_SSL%%include/node/openssl/ssl3.h
+%%BUNDLED_SSL%%include/node/openssl/stack.h
+%%BUNDLED_SSL%%include/node/openssl/symhacks.h
+%%BUNDLED_SSL%%include/node/openssl/tls1.h
+%%BUNDLED_SSL%%include/node/openssl/ts.h
+%%BUNDLED_SSL%%include/node/openssl/txt_db.h
+%%BUNDLED_SSL%%include/node/openssl/ui.h
+%%BUNDLED_SSL%%include/node/openssl/ui_compat.h
+%%BUNDLED_SSL%%include/node/openssl/whrlpool.h
+%%BUNDLED_SSL%%include/node/openssl/x509.h
+%%BUNDLED_SSL%%include/node/openssl/x509_vfy.h
+%%BUNDLED_SSL%%include/node/openssl/x509v3.h
+include/node/v8-debug.h
+include/node/v8-inspector-protocol.h
+include/node/v8-inspector.h
+include/node/v8-platform.h
+include/node/v8-profiler.h
+include/node/v8-testing.h
+include/node/v8-util.h
+include/node/v8-value-serializer-version.h
+include/node/v8-version.h
+include/node/v8-version-string.h
+include/node/v8.h
+include/node/v8config.h
+@(,,444) man/man1/node.1.gz
+%%PORTDOCS%%%%DOCSDIR%%/gdbinit
+%%PORTDOCS%%%%DOCSDIR%%/lldb_commands.py
+%%PORTDOCS%%%%DOCSDIR%%/lldbinit
+share/systemtap/tapset/node.stp


Property changes on: trunk/www/node8/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/www/npm-node6/Makefile
===================================================================
--- trunk/www/npm-node6/Makefile	                        (rev 0)
+++ trunk/www/npm-node6/Makefile	2018-10-09 13:20:30 UTC (rev 24448)
@@ -0,0 +1,12 @@
+# $MidnightBSD$
+
+PKGNAMESUFFIX=	-node6
+
+CONFLICTS_INSTALL=	npm npm-node4 npm-node8 npm2 npm3 npm4
+
+OPTIONS_EXCLUDE=NODE NODE4 NODE8
+OPTIONS_SLAVE=	NODE6
+
+MASTERDIR=	${.CURDIR}/../npm
+
+.include "${MASTERDIR}/Makefile"


Property changes on: trunk/www/npm-node6/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list