# -*- 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 mozjs68 version 68.4.2 set version_major 68 categories lang platforms darwin license {MPL-2 LGPL-2.1+} maintainers nomaintainer 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/ # Rust requires x86_64/arm64, and mozjs68 won't compile on arm64 # See: https://trac.macports.org/ticket/64755 supported_archs x86_64 distname mozjs-${version} use_bzip2 yes checksums rmd160 8f1decdf3b50d6c4cb6f2123497d4ee59b0ebbb8 \ sha256 097fb482aa0e57fb117fde6816fbabfedcb862ee81906990363954f47ce93227 \ size 70569055 depends_build port:autoconf213 \ port:cargo \ port:pkgconfig \ port:python27 \ port:python39 \ port:yasm depends_lib port:nspr \ port:xorg-libX11 \ port:xorg-libXt # requires C++14 compiler to build compiler.cxx_standard 2014 # 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 patch-skip-sdk-check.diff \ patch-virtualenv-arm64-codesign.diff # Use absolute path for install_name post-patch { reinplace "s|@executable_path|${prefix}/lib|g" ${worksrcpath}/config/rules.mk } configure.perl /usr/bin/perl configure.python ${prefix}/bin/python2.7 # The combination of JS_STANDALONE=1 and --disable-jemalloc are needed # to ensure that mozglue is statically linked. configure.env-append \ SHELL=/bin/bash \ PYTHON3=${prefix}/bin/python3.9 \ JS_STANDALONE=1 configure.dir ${worksrcpath}/js/src/obj configure.cmd ../configure configure.args --with-system-nspr \ --disable-jemalloc \ --disable-readline \ --disable-xcode-checks \ --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(i386) i686-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(i386) "--host=i686-apple-${os.platform}${os.major} --target=i686-apple-${os.platform}${os.major}" } else { if {${build_arch} eq "i386"} { configure.args-append \ --host=i686-apple-${os.platform}${os.major} \ --target=i686-apple-${os.platform}${os.major} } elseif {${build_arch} in "x86_64 ppc ppc64"} { configure.args-append \ --host=${build_arch}-apple-${os.platform}${os.major} \ --target=${build_arch}-apple-${os.platform}${os.major} } } livecheck.type none