# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim: fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup muniversal 1.0 PortGroup legacysupport 1.1 # clock_gettime, TARGET_OS_SIMULATOR legacysupport.newest_darwin_requires_legacy 15 name mozjs115 version 115.2.0 revision 0 set version_major 115 categories lang license {MPL-2 LGPL-2.1+} maintainers nomaintainer # For Rust supported_archs x86_64 arm64 description JavaScript-C Engine long_description SpiderMonkey is Mozilla's JavaScript engine written in C/C++. \ It is used in various Mozilla products, including Firefox, \ and is available under the MPL2. homepage https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey # build from GNOME releng tarball master_sites https://ftp.gnome.org/pub/GNOME/teams/releng/tarballs-needing-help/mozjs/ distname mozjs-${version}gnome1 worksrcdir mozjs-${version} use_xz yes checksums rmd160 734650f45c0168949f9f4724b217a3fd84f49666 \ sha256 e39c590c5175524eb3c388d4897f2d714454e602fe7fc548e950c7e0ca9170d5 \ size 137246544 depends_build port:autoconf213 \ port:cargo \ port:pkgconfig \ port:python311 \ port:yasm depends_lib port:xorg-libX11 \ port:xorg-libXt # requires C++17 compiler to build compiler.cxx_standard 2017 # Rust components require a MacPorts clang (i.e. one with llvm-config) compiler.blacklist *gcc* clang macports-clang-3.* if {[regexp {macports-clang-(.*)} ${configure.compiler} -> llvm_ver]} { configure.env-append \ LLVM_CONFIG=${prefix}/bin/llvm-config-mp-${llvm_ver} } if { ${os.platform} eq "darwin" && ${os.major} < 11 } { depends_build-append port:cctools configure.env-append AR=${prefix}/bin/ar } patchfiles-append patch-skip-sdk-check.diff \ patch-mozglue-clock_gettime.diff \ patch-mozglue-snow-leopard.diff configure.perl /usr/bin/perl configure.python ${prefix}/bin/python3.11 post-patch { # Use absolute path for install_name reinplace "s|@executable_path|${prefix}/lib|g" ${worksrcpath}/config/rules.mk # one persistent python reference ... reinplace -q "s|/usr/bin/env python3|${configure.python}|" ${worksrcpath}/build/cargo-linker } # The combination of JS_STANDALONE=1 and --disable-jemalloc are needed # to ensure that mozglue is statically linked. configure.env-append \ PYTHON3=${configure.python} \ SHELL=/bin/bash \ JS_STANDALONE=1 configure.dir ${worksrcpath}/js/src/obj configure.cmd ../configure configure.args --disable-jemalloc \ --disable-readline if {${configure.sdkroot} eq ""} { configure.args-append --with-macos-sdk=/ } else { configure.args-append --with-macos-sdk=${configure.sdkroot} } configure.universal_args-delete --disable-dependency-tracking build.env-append SHELL=/bin/bash build.dir ${worksrcpath}/js/src/obj destroot.dir ${worksrcpath}/js/src/obj post-destroot { # make static lib name version specific to avoid conflict with other mozjs versions move ${destroot}${prefix}/lib/libjs_static.ajs ${destroot}${prefix}/lib/libjs${version_major}_static.ajs } if {${universal_possible} && [variant_isset universal]} { set merger_host(x86_64) x86_64-apple-${os.platform}${os.major} set merger_host(arm64) arm64-apple-${os.platform}${os.major} set merger_configure_args(x86_64) "--host=x86_64-apple-${os.platform}${os.major} --target=x86_64-apple-${os.platform}${os.major}" set merger_configure_args(arm64) "--host=arm64-apple-${os.platform}${os.major} --target=arm64-apple-${os.platform}${os.major}" } else { configure.args-append \ --host=${build_arch}-apple-${os.platform}${os.major} \ --target=${build_arch}-apple-${os.platform}${os.major} } livecheck.type none