1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= spidermonkey38
PORTVERSION= 38.8.0
PORTREVISION= 9
CATEGORIES= lang
MASTER_SITES= MOZILLA/firefox/releases/${PORTVERSION}esr/source
DISTNAME= firefox-${PORTVERSION}esr.source
MAINTAINER= kwm@FreeBSD.org
COMMENT= Standalone JavaScript based from Mozilla 38-esr
LIB_DEPENDS= libnspr4.so:devel/nspr \
libffi.so:devel/libffi \
libicudata.so:devel/icu
GNU_CONFIGURE= yes
USES= compiler:c++11-lib gmake pathfix perl5 pkgconfig \
python:2.7,build readline tar:bzip2
USE_PERL5= build
USE_LDCONFIG= yes
WRKSRC= ${WRKDIR}/mozilla-esr38/js/src
CONFIGURE_ARGS= --with-pthreads \
--with-intl-api \
--with-system-zlib \
--enable-system-ffi \
--with-system-icu \
--with-system-nspr
OPTIONS_DEFINE= DEBUG GCZEAL JEMALLOC METHODJIT OPTIMIZE READLINE \
THREADSAFE TRACEJIT UTF8 DTRACE
OPTIONS_DEFAULT=METHODJIT OPTIMIZE READLINE THREADSAFE TRACEJIT
# ld(1) fails to link probes: Relocations in generic ELF (EM: 0)
OPTIONS_EXCLUDE_aarch64= DTRACE
# dt_modtext:opensolaris/lib/libdtrace/common/dt_link.c: arm not implemented
OPTIONS_EXCLUDE_armv6= DTRACE
OPTIONS_EXCLUDE_armv7= DTRACE
OPTIONS_SUB= yes
DEBUG_CONFIGURE_ENABLE= debug debug-symbols
DEBUG_CONFIGURE_DISABLE=debug
DTRACE_CONFIGURE_ENABLE=dtrace profiling
DTRACE_LIBS= -lelf
GCZEAL_DESC= Enable Zealous garbage collecting
GCZEAL_CONFIGURE_ENABLE=gczeal
JEMALLOC_DESC= Use jemalloc as memory allocator
JEMALLOC_CONFIGURE_ENABLE= jemalloc
METHODJIT_DESC= Enable method JIT support
METHODJIT_CONFIGURE_ENABLE= methodjit
OPTIMIZE_DESC= Enable compiler optimizations
OPTIMIZE_CONFIGURE_ENABLE= optimize
READLINE_DESC= Link js shell to system readline library
READLINE_CONFIGURE_ENABLE= readline
THREADSAFE_DESC=Enable multiple thread support
THREADSAFE_CONFIGURE_ENABLE= threadsafe
TRACEJIT_DESC= Enable tracing JIT support
TRACEJIT_CONFIGURE_ENABLE= tracejit
UTF8_DESC= Treat strings as UTF8 instead of ISO-8859-1
UTF8_CFLAGS= -DJS_C_STRINGS_ARE_UTF8
.include <bsd.port.pre.mk>
.if ${ARCH} == amd64
CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL}
.endif
post-patch:
# Skip some tests because bundled icu differs from system
@${RM} ${WRKSRC}/tests/test262/intl402/ch10/10.2/10.2.3_b.js \
${WRKSRC}/tests/Intl/DateTimeFormat/format.js \
${WRKSRC}/tests/ecma_6/String/normalize-generateddata-part1-not-listed.js
do-test:
@${ECHO_MSG} -n "===> Running jstests.py: "
@cd ${WRKSRC} && ${SETENV} TZ=PST8PDT ${PYTHON_CMD} tests/jstests.py \
-d -s --no-progress ./js/src/shell/js
.if ${PORT_OPTIONS:MMETHODJIT} || ${PORT_OPTIONS:MTRACEJIT}
@${ECHO_MSG} -n "===> Running jit_test.py: "
@cd ${WRKSRC} && ${SETENV} TZ=PST8PDT ${PYTHON_CMD} jit-test/jit_test.py \
-d -s --no-progress --jitflags=,m,j,mj,mjp,am,amj,amjp,amd ./js/src/shell/js
.endif
.include "Makefile.filelist"
post-install:
${RM} ${STAGEDIR}${PREFIX}/lib/libjs_static.ajs
${LN} -fs libmozjs-38.so ${STAGEDIR}${PREFIX}/lib/libmozjs-38.so.1
# the build installs symlinks, replace them with real files.
# fedora has a nice for loop, but I can't get it to work in make, ideas?
${RM} -rf ${STAGEDIR}${PREFIX}/include/mozjs-38/*
${INSTALL_DATA} ${WRKSRC}/js/src/js-config.h \
${STAGEDIR}${PREFIX}/include/mozjs-38/
.for file in ${BASEFILES}
${INSTALL_DATA} ${WRKSRC}/${file} \
${STAGEDIR}${PREFIX}/include/mozjs-38/
.endfor
${MKDIR} ${STAGEDIR}${PREFIX}/include/mozjs-38/js
.for file in ${JSFILES}
${INSTALL_DATA} ${WRKSRC}/../public/${file} \
${STAGEDIR}${PREFIX}/include/mozjs-38/js/
.endfor
${MKDIR} ${STAGEDIR}${PREFIX}/include/mozjs-38/mozilla
.for file in ${MOZILLAFILES}
${INSTALL_DATA} ${WRKSRC}/../../mfbt/${file} \
${STAGEDIR}${PREFIX}/include/mozjs-38/mozilla/
.endfor
# Install files, not symlinks to build directory
#.for link in `find ${STAGEDIR}${PREFIX} -type l`; do
# header=`readlink ${link}`; \
# rm -f ${link}; \
# cp -p ${header} ${link}
#.endfor
.if ! ${PORT_OPTIONS:MDTRACE}
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/js38
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmozjs-38.*
.endif
.include <bsd.port.post.mk>
|