From bac3b9acee5110390d15d38dacdb1622e31b2238 Mon Sep 17 00:00:00 2001 From: Jens Rehsack Date: Tue, 8 Dec 2015 14:52:51 +0100 Subject: openjdk-8: add recipes for openjdk-8 and openjre-8 This adds openjdk-8 for native and target builds and allows a stripped openjre-8 being built as well instead of trying to cherry-pick jre components from jdk-image. The recipes allow building openjdk-8 with or without: * x11 * cups * alsa/pulseaudio and let packager enable unlimited-crypto, if desired. To support certificate based java libraries, cacerts is created based on ca-certificates from OE-core. Since there can be only one PROVIDES for virtual/java-native and virtual/javac-native, move the provides to openjdk-8-native (I think everyone agrees it's a better choice than ecj-bootstrap-native). Plus: Applying a fix from openjdk-9 repository which fixes build issues using gcc5 Signed-off-by: Jens Rehsack Signed-off-by: Maxin B. John --- recipes-core/openjdk/openjdk-8-native_72b05.bb | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 recipes-core/openjdk/openjdk-8-native_72b05.bb (limited to 'recipes-core/openjdk/openjdk-8-native_72b05.bb') diff --git a/recipes-core/openjdk/openjdk-8-native_72b05.bb b/recipes-core/openjdk/openjdk-8-native_72b05.bb new file mode 100644 index 0000000..6eb40eb --- /dev/null +++ b/recipes-core/openjdk/openjdk-8-native_72b05.bb @@ -0,0 +1,28 @@ +require openjdk-8-release-72b05.inc +require openjdk-8-native.inc + +PROVIDES = "virtual/java-native virtual/javac-native" + +inherit update-alternatives + +ALTERNATIVE_${PN} = "java javac jar pack200 unpack200 keytool" +ALTERNATIVE_LINK[java] = "${bindir}/java" +ALTERNATIVE_TARGET[java] = "${JDK_HOME}/bin/java" +ALTERNATIVE_PRIORITY[java] = "100" +ALTERNATIVE_LINK[javac] = "${bindir}/javac" +ALTERNATIVE_TARGET[javac] = "${JDK_HOME}/bin/javac" +ALTERNATIVE_PRIORITY[javac] = "100" +ALTERNATIVE_LINK[jar] = "${bindir}/jar" +ALTERNATIVE_TARGET[jar] = "${JDK_HOME}/bin/jar" +ALTERNATIVE_PRIORITY[jar] = "100" +ALTERNATIVE_LINK[pack200] = "${bindir}/pack200" +ALTERNATIVE_TARGET[pack200] = "${JDK_HOME}/bin/pack200" +ALTERNATIVE_PRIORITY[pack200] = "100" +ALTERNATIVE_LINK[unpack200] = "${bindir}/unpack200" +ALTERNATIVE_TARGET[unpack200] = "${JDK_HOME}/bin/unpack200" +ALTERNATIVE_PRIORITY[unpack200] = "100" +ALTERNATIVE_LINK[keytool] = "${bindir}/keytool" +ALTERNATIVE_TARGET[keytool] = "${JDK_HOME}/bin/keytool" +ALTERNATIVE_PRIORITY[keytool] = "100" + +# PR = "${INC_PR}.1" -- cgit v1.2.3-54-g00ecf