You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
97 lines
3.5 KiB
Tcl
97 lines
3.5 KiB
Tcl
# -*- 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
|
|
|
|
set feature 21
|
|
name jdk${feature}
|
|
categories java devel
|
|
maintainers {breun @breun} openmaintainer
|
|
platforms darwin
|
|
# This port uses prebuilt binaries; 'NoMirror' makes sure MacPorts doesn't mirror/distribute these third-party binaries
|
|
license NFTC NoMirror
|
|
# This port uses prebuilt binaries for a particular architecture; they are not universal binaries
|
|
universal_variant no
|
|
|
|
supported_archs x86_64 arm64
|
|
|
|
# https://www.oracle.com/java/technologies/downloads/#jdk21-mac
|
|
version ${feature}.0.8
|
|
revision 0
|
|
|
|
description Oracle Java SE Development Kit ${feature}
|
|
long_description Java Platform, Standard Edition Development Kit (JDK). \
|
|
The JDK is a development environment for building applications and components using the Java programming language. \
|
|
This software is provided under the Oracle No-Fee Terms and Conditions (NFTC) license (https://java.com/freeuselicense).
|
|
|
|
master_sites https://download.oracle.com/java/${feature}/archive/
|
|
|
|
if {${configure.build_arch} eq "x86_64"} {
|
|
distname jdk-${version}_macos-x64_bin
|
|
checksums rmd160 c6a5594dc0827a718e1d1f942328b3ea57672dbf \
|
|
sha256 43eaf4e0224986087c946c201567fe31b2b6b23dec5a702bcf679276708d0d7e \
|
|
size 192568089
|
|
} elseif {${configure.build_arch} eq "arm64"} {
|
|
distname jdk-${version}_macos-aarch64_bin
|
|
checksums rmd160 20ab8d1fd69ee6e3120adb15e9dd29a311295fa8 \
|
|
sha256 421afea21e96332c40a019846c0c7a211a72c4bcd2b29911dcb50d2f58533ab1 \
|
|
size 190272043
|
|
}
|
|
|
|
worksrcdir jdk-${version}.jdk
|
|
|
|
homepage https://www.oracle.com/java/
|
|
|
|
livecheck.type regex
|
|
livecheck.url https://www.oracle.com/java/technologies/downloads/
|
|
livecheck.regex Java SE Development Kit (${feature}\.\[0-9\.\]+)
|
|
|
|
use_configure no
|
|
build {}
|
|
|
|
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-java-se.jdk
|
|
|
|
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
|
|
"
|