6828ea7d03
- Switch to CDN by default as mirrors are no longer kept up to date - Drop obsolete pointer to http://www.mozilla.org/mirrors.html - Drop redundant BUGZILLA and MOZILLA_EXTEND - Shorten MASTER_SITES in gecko@ ports - Move MOZILLA_ADDONS to bsd.sites.mk - Move one of MOZILLA mirrors with old addons under MOZILLA_ADDONS - Addons CDN redirects to https://, so don't mislead with http:// https://blog.mozilla.org/it/2012/08/03/dear-mozilla-mirrors-thank-you/ Differential Revision: https://reviews.freebsd.org/D2550 Tested by: distilator Reviewed by: mat (partial) Approved by: bz-ports (ohauer), portmgr blanket (office@ et al.) Approved by: portmgr (bapt, earlier version) MFH: 2015Q2
70 lines
2 KiB
Makefile
70 lines
2 KiB
Makefile
# Created by: Dan Rench <citric@cubicone.tmetic.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= spidermonkey17
|
|
DISTVERSION= 1.7.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= MOZILLA/js
|
|
DISTNAME= js-${DISTVERSION}
|
|
|
|
MAINTAINER= citric@cubicone.tmetic.com
|
|
COMMENT= Standalone JavaScript interpreter from the Mozilla project
|
|
|
|
LIB_DEPENDS= libnspr4.so:${PORTSDIR}/devel/nspr
|
|
|
|
CONFLICTS= njs-[0-9]*
|
|
|
|
MAKE_ARGS+= JS_THREADSAFE=YES \
|
|
PROG_LIBS="-lreadline -ltermcap -lm -lpthread" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CFLAGS+= -I${LOCALBASE}/include/nspr
|
|
|
|
USES= gmake readline
|
|
MAKEFILE= Makefile.ref
|
|
ALL_TARGET= ${OPSYS}`${UNAME} -r`_DBG.OBJ/js
|
|
MAKE_ENV+= CCC="${CXX}"
|
|
USE_LDCONFIG= yes
|
|
SRC_DIR= js/src
|
|
|
|
JSH= jsapi.h jsarena.h jsarray.h jsatom.h jsautocfg.h jsbool.h \
|
|
jsclist.h jscntxt.h jscompat.h jsconfig.h jsdate.h jsdhash.h \
|
|
jsdtoa.h jsemit.h jsexn.h jsfun.h jsgc.h jshash.h jsinterp.h \
|
|
jsiter.h jslibmath.h jslock.h jslong.h jsmath.h jsnum.h jsobj.h \
|
|
jsopcode.h jsosdep.h jsotypes.h jsparse.h jsprf.h jsprvtd.h \
|
|
jspubtd.h jsutil.h jsregexp.h jsscan.h jsscope.h jsscript.h \
|
|
jsstr.h jstypes.h jsxdrapi.h jsxml.h \
|
|
js.msg jsproto.tbl
|
|
|
|
PLIST_FILES= bin/js lib/libjs.so lib/libjs.so.1 ${JSH:S,^,include/,}
|
|
WRKSRC= ${WRKDIR}/${SRC_DIR}
|
|
EXTRACT_AFTER_ARGS= --exclude js/jsd
|
|
|
|
OPTIONS_DEFINE= UTF8
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MUTF8}
|
|
CFLAGS+= -DJS_C_STRINGS_ARE_UTF8
|
|
.endif
|
|
|
|
do-configure:
|
|
${CP} ${WRKSRC}/config/Linux_All.mk \
|
|
${WRKSRC}/config/${OPSYS}`${UNAME} -r`.mk
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${OPSYS}`${UNAME} -r`_DBG.OBJ/js \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${OPSYS}`${UNAME} -r`_DBG.OBJ/libjs.so \
|
|
${STAGEDIR}${PREFIX}/lib
|
|
${LN} -sf libjs.so ${STAGEDIR}${PREFIX}/lib/libjs.so.1
|
|
${CP} ${WRKSRC}/${OPSYS}`${UNAME} -r`_DBG.OBJ/jsautocfg.h ${WRKSRC}
|
|
@${INSTALL_DATA} ${JSH:S,^,${WRKSRC}/,} ${STAGEDIR}${PREFIX}/include/
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "sparc64" && ${OSVERSION} > 900000
|
|
BROKEN= Does not build on sparc64-9: fails to link
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|