homebrew-core/Formula/openjdk@8.rb

191 lines
6.3 KiB
Ruby

class OpenjdkAT8 < Formula
desc "Development kit for the Java programming language"
homepage "https://openjdk.java.net/"
url "https://github.com/openjdk/jdk8u/archive/refs/tags/jdk8u352-ga.tar.gz"
version "1.8.0+352"
sha256 "141dcb6b321cc78e993f1f126dde9f6c0a7af5d11bfe390f5cf5b1513fabdc1c"
license "GPL-2.0-only"
livecheck do
url :stable
regex(/^jdk(8u\d+)-ga$/i)
strategy :git do |tags, regex|
tags.map { |tag| tag[regex, 1]&.gsub("8u", "1.8.0+") }.compact
end
end
bottle do
rebuild 1
sha256 cellar: :any, ventura: "37f21b19b1b1d03f4fbdf9b2406d20d720331fd075f097d720bf399f0ec4602e"
sha256 cellar: :any, monterey: "46aec17c64762faf957f601de11bafc051c7eaf236d0318a708ed34ea936cfd5"
sha256 cellar: :any, big_sur: "616b8c8b60b738da1497e9e2f6fcc918a83fa174921fcdb95fd0f3fcadbaa3aa"
sha256 cellar: :any_skip_relocation, x86_64_linux: "232cfecc85bdcddd29eed18febc84069c91659e323bf4a137e14f39cb5219537"
end
keg_only :versioned_formula
depends_on "autoconf" => :build
depends_on "pkg-config" => :build
depends_on arch: :x86_64
depends_on "freetype"
depends_on "giflib"
uses_from_macos "cups"
uses_from_macos "unzip"
uses_from_macos "zip"
on_monterey :or_newer do
depends_on "gawk" => :build
end
on_linux do
depends_on "alsa-lib"
depends_on "fontconfig"
depends_on "libx11"
depends_on "libxext"
depends_on "libxrandr"
depends_on "libxrender"
depends_on "libxt"
depends_on "libxtst"
end
# Oracle doesn't serve JDK 7 downloads anymore, so use Zulu JDK 7 for bootstrapping.
resource "boot-jdk" do
on_macos do
url "https://cdn.azul.com/zulu/bin/zulu7.56.0.11-ca-jdk7.0.352-macosx_x64.tar.gz"
sha256 "31909aa6233289f8f1d015586825587e95658ef59b632665e1e49fc33a2cdf06"
end
on_linux do
url "https://cdn.azul.com/zulu/bin/zulu7.56.0.11-ca-jdk7.0.352-linux_x64.tar.gz"
sha256 "8a7387c1ed151474301b6553c6046f865dc6c1e1890bcf106acc2780c55727c8"
end
end
def install
_, _, update = version.to_s.rpartition("+")
boot_jdk = buildpath/"boot-jdk"
resource("boot-jdk").stage boot_jdk
java_options = ENV.delete("_JAVA_OPTIONS")
# Work around clashing -I/usr/include and -isystem headers,
# as superenv already handles this detail for us.
inreplace "common/autoconf/flags.m4",
'-isysroot \"$SYSROOT\"', ""
inreplace "common/autoconf/toolchain.m4",
'-isysroot \"$SDKPATH\" -iframework\"$SDKPATH/System/Library/Frameworks\"', ""
inreplace "hotspot/make/bsd/makefiles/saproc.make",
'-isysroot "$(SDKPATH)" -iframework"$(SDKPATH)/System/Library/Frameworks"', ""
if OS.mac?
# Fix macOS version detection. After 10.10 this was changed to a 6 digit number,
# but this Makefile was written in the era of 4 digit numbers.
inreplace "hotspot/make/bsd/makefiles/gcc.make" do |s|
s.gsub! "$(subst .,,$(MACOSX_VERSION_MIN))", ENV["HOMEBREW_MACOS_VERSION_NUMERIC"]
s.gsub! "MACOSX_VERSION_MIN=10.7.0", "MACOSX_VERSION_MIN=#{MacOS.version}"
end
# Fix Xcode 13 detection.
inreplace "common/autoconf/toolchain.m4",
"if test \"${XC_VERSION_PARTS[[0]]}\" != \"6\"",
"if test \"${XC_VERSION_PARTS[[0]]}\" != \"#{MacOS::Xcode.version.major}\""
else
# Fix linker errors on brewed GCC
inreplace "common/autoconf/flags.m4", "-Xlinker -O1", ""
inreplace "hotspot/make/linux/makefiles/gcc.make", "-Xlinker -O1", ""
end
args = %W[
--with-boot-jdk-jvmargs=#{java_options}
--with-boot-jdk=#{boot_jdk}
--with-debug-level=release
--with-conf-name=release
--with-jvm-variants=server
--with-milestone=fcs
--with-native-debug-symbols=none
--with-update-version=#{update}
--with-vendor-bug-url=#{tap.issues_url}
--with-vendor-name=#{tap.user}
--with-vendor-url=#{tap.issues_url}
--with-vendor-vm-bug-url=#{tap.issues_url}
--with-giflib=system
]
ldflags = ["-Wl,-rpath,#{loader_path.gsub("$", "\\$$$$")}/server"]
if OS.mac?
args += %w[
--with-toolchain-type=clang
--with-zlib=system
]
# Work around SDK issues with JavaVM framework.
if MacOS.version <= :catalina
sdk_path = MacOS::CLT.sdk_path(MacOS.version)
ENV["SDKPATH"] = ENV["SDKROOT"] = sdk_path
javavm_framework_path = sdk_path/"System/Library/Frameworks/JavaVM.framework/Frameworks"
args += %W[
--with-extra-cflags=-F#{javavm_framework_path}
--with-extra-cxxflags=-F#{javavm_framework_path}
]
ldflags << "-F#{javavm_framework_path}"
end
else
args += %W[
--with-toolchain-type=gcc
--x-includes=#{HOMEBREW_PREFIX}/include
--x-libraries=#{HOMEBREW_PREFIX}/lib
--with-cups=#{HOMEBREW_PREFIX}
--with-fontconfig=#{HOMEBREW_PREFIX}
--with-stdc++lib=dynamic
]
extra_rpath = rpath(source: libexec/"lib/amd64", target: libexec/"jre/lib/amd64")
ldflags << "-Wl,-rpath,#{extra_rpath.gsub("$", "\\$$$$")}"
end
args << "--with-extra-ldflags=#{ldflags.join(" ")}"
system "bash", "common/autoconf/autogen.sh"
system "bash", "configure", *args
ENV["MAKEFLAGS"] = "JOBS=#{ENV.make_jobs}"
system "make", "bootcycle-images", "CONF=release"
cd "build/release/images" do
jdk = libexec
if OS.mac?
libexec.install Dir["j2sdk-bundle/*"].first => "openjdk.jdk"
jdk /= "openjdk.jdk/Contents/Home"
else
libexec.install Dir["j2sdk-image/*"]
end
bin.install_symlink Dir[jdk/"bin/*"]
include.install_symlink Dir[jdk/"include/*.h"]
include.install_symlink Dir[jdk/"include/*/*.h"]
man1.install_symlink Dir[jdk/"man/man1/*"]
end
end
def caveats
on_macos do
<<~EOS
For the system Java wrappers to find this JDK, symlink it with
sudo ln -sfn #{opt_libexec}/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-8.jdk
EOS
end
end
test do
(testpath/"HelloWorld.java").write <<~EOS
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, world!");
}
}
EOS
system bin/"javac", "HelloWorld.java"
assert_match "Hello, world!", shell_output("#{bin}/java HelloWorld")
end
end