Files

109 lines
4.2 KiB
Tcl
Raw Permalink Normal View History

2023-09-02 00:06:00 +02:00
# -*- 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
2025-08-28 15:53:19 +02:00
PortGroup deprecated 1.0
deprecated.eol_version yes
2023-09-02 00:06:00 +02:00
set feature 17
name jdk${feature}-graalvm
2023-09-02 00:06:00 +02:00
categories java devel
maintainers nomaintainer
# JVMMinimumSystemVersion in Contents/Info.plist is set to macOS 10.12.0 for x86_64:
# /usr/libexec/PlistBuddy -c "Print :JavaVM:JVMMinimumSystemVersion" Contents/Info.plist
# Mapping to Darwin version: https://trac.macports.org/wiki/PortfileRecipes#compare-osx-darwin-version
platforms {darwin any >= 16 }
2023-09-02 00:06:00 +02:00
# GraalVM Free Terms and Conditions: https://www.oracle.com/downloads/licenses/graal-free-license.html
# This port uses prebuilt binaries; 'NoMirror' makes sure MacPorts doesn't mirror/distribute these third-party binaries
license GFTC NoMirror
# This port uses prebuilt binaries for a particular architecture; they are not universal binaries
universal_variant no
# https://www.oracle.com/java/technologies/downloads/#graalvmjava17-mac
supported_archs x86_64 arm64
version ${feature}.0.12
2024-07-17 14:24:10 +02:00
set build 8
2023-09-02 00:06:00 +02:00
revision 0
master_sites https://download.oracle.com/graalvm/${feature}/archive/
2023-09-02 00:06:00 +02:00
homepage https://www.oracle.com/java/graalvm/
livecheck.type none
use_configure no
build {}
description Oracle GraalVM for JDK ${feature}
long_description Oracle GraalVM for JDK ${feature} compiles your Java applications ahead of time into standalone \
binaries that start instantly, provide peak performance with no warmup, and use fewer cloud resources. \
This software is provided under the GraalVM Free Terms and Conditions (GFTC) license. \
Oracle GraalVM for JDK ${feature}.0.13 and later are only available under the GraalVM Oracle Technology \
Network (GOTN) license and therefore cannot be made available via MacPorts. \
If you require an up-to-date GraalVM for JDK, consider upgrading to a more recent feature version instead.
2023-09-02 00:06:00 +02:00
if {${configure.build_arch} eq "x86_64"} {
distname graalvm-jdk-${version}_macos-x64_bin
2024-07-17 14:24:10 +02:00
checksums rmd160 bbc1eeb1d6a24837af4a982075fa388ade7bbdda \
sha256 3ecac1471f3fa95a56c5b75c65db9e60ac4551f56eda09eb9da95e6049ea77d7 \
size 311753514
2023-09-02 00:06:00 +02:00
} elseif {${configure.build_arch} eq "arm64"} {
distname graalvm-jdk-${version}_macos-aarch64_bin
2024-07-17 14:24:10 +02:00
checksums rmd160 328a306cc99e33708b12f83319f31f53b3ae690d \
sha256 4cdfdc6c9395f6773efcd191b6605f1b7c8e1b78ab900ab5cff34720a3feffc5 \
size 365044599
2023-09-02 00:06:00 +02:00
}
2024-07-17 14:24:10 +02:00
worksrcdir graalvm-jdk-${version}+${build}.1
2023-09-02 00:06:00 +02:00
variant Applets \
description { Advertise the JVM capability "Applets".} {}
variant BundledApp \
description { Advertise the JVM capability "BundledApp". This is required by some java-based app bundles to recognize and use the JVM.} {}
variant JNI \
description { Advertise the JVM capability "JNI". This is required by some java-based app bundles to recognize and use the JVM.} {}
variant WebStart \
description { Advertise the JVM capability "WebStart".} {}
patch {
foreach var { Applets BundledApp JNI WebStart } {
if {[variant_isset ${var}]} {
reinplace -E "s|^(\[\[:space:\]\]*<string>)CommandLine(</string>)|\\1${var}\\2\\\n\\1CommandLine\\2|" ${worksrcpath}/Contents/Info.plist
}
}
}
test.run yes
test.cmd Contents/Home/bin/java
test.target
test.args -version
# macOS Java tools expect to find Java virtual machines under /Library/Java/JavaVirtualMachines, which is not under ${prefix}.
destroot.violate_mtree yes
set jvms /Library/Java/JavaVirtualMachines
set jdk ${jvms}/jdk-${feature}-oracle-graalvm.jdk
2023-09-02 00:06:00 +02:00
destroot {
xinstall -m 755 -d ${destroot}${prefix}${jdk}
copy ${worksrcpath}/Contents ${destroot}${prefix}${jdk}
# macOS Java tools expect to find Java virtual machines under /Library/Java/JavaVirtualMachines, so let's create a symlink there
xinstall -m 755 -d ${destroot}${jvms}
ln -s ${prefix}${jdk} ${destroot}${jdk}
}
notes "
If you have more than one JDK installed you can make ${name} the default\
by adding the following line to your shell profile:
export JAVA_HOME=${jdk}/Contents/Home
"