forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-java/oracle-jre-bin: Version bump to 9.0.4
Closes: gentoo#6885
- Loading branch information
Showing
2 changed files
with
232 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit desktop gnome2-utils java-vm-2 prefix | ||
|
||
KEYWORDS="-* ~amd64 ~x64-macos ~sparc64-solaris" | ||
|
||
declare -A ARCH_FILES | ||
ARCH_FILES[amd64]="jre-${PV}_linux-x64_bin.tar.gz" | ||
ARCH_FILES[sparc64-solaris]="jre-${PV}_solaris-sparcv9_bin.tar.gz" | ||
ARCH_FILES[x64-macos]="jre-${PV}_osx-x64_bin.tar.gz" | ||
|
||
for keyword in ${KEYWORDS//-\*} ; do | ||
SRC_URI+=" ${keyword#\~}? ( ${ARCH_FILES[${keyword#\~}]} )" | ||
done | ||
|
||
DESCRIPTION="Oracle's Java SE Runtime Environment" | ||
HOMEPAGE="http://www.oracle.com/technetwork/java/javase/" | ||
LICENSE="Oracle-BCLA-JavaSE" | ||
SLOT="${PV%%.*}" | ||
IUSE="alsa commercial cups +fontconfig +gentoo-vm gtk2 gtk3 headless-awt javafx nsplugin selinux" | ||
REQUIRED_USE="javafx? ( alsa fontconfig ^^ ( gtk2 gtk3 ) )" | ||
RESTRICT="fetch preserve-libs strip" | ||
QA_PREBUILT="*" | ||
|
||
# NOTES: | ||
# | ||
# * cups is dlopened. | ||
# | ||
# * libpng is also dlopened but only by libsplashscreen, which isn't | ||
# important, so we can exclude that. | ||
# | ||
# * We still need to work out the exact AWT and JavaFX dependencies | ||
# under MacOS. It doesn't appear to use many, if any, of the | ||
# dependencies below. | ||
# | ||
RDEPEND="!x64-macos? ( | ||
!headless-awt? ( | ||
x11-libs/libX11 | ||
x11-libs/libXext | ||
x11-libs/libXi | ||
x11-libs/libXrender | ||
x11-libs/libXtst | ||
) | ||
javafx? ( | ||
dev-libs/atk | ||
dev-libs/glib:2 | ||
dev-libs/libxml2:2 | ||
dev-libs/libxslt | ||
media-libs/freetype:2 | ||
x11-libs/gdk-pixbuf | ||
x11-libs/libX11 | ||
x11-libs/libXtst | ||
x11-libs/libXxf86vm | ||
x11-libs/pango | ||
virtual/opengl | ||
gtk2? ( | ||
x11-libs/cairo | ||
x11-libs/gtk+:2 | ||
) | ||
gtk3? ( | ||
x11-libs/cairo[glib] | ||
x11-libs/gtk+:3 | ||
) | ||
) | ||
) | ||
alsa? ( media-libs/alsa-lib ) | ||
cups? ( net-print/cups ) | ||
fontconfig? ( media-libs/fontconfig:1.0 ) | ||
!prefix? ( sys-libs/glibc:* ) | ||
selinux? ( sec-policy/selinux-java )" | ||
|
||
pkg_nofetch() { | ||
einfo "Please download ${ARCH_FILES[${ARCH}]} and move it to" | ||
einfo "${DISTDIR}:" | ||
einfo | ||
einfo " http://www.oracle.com/technetwork/java/javase/downloads/jre9-downloads-3848532.html" | ||
einfo | ||
einfo "If the above mentioned URL does not point to the correct version anymore," | ||
einfo "please download the file from Oracle's Java download archive:" | ||
einfo | ||
einfo " http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase9-3934878.html" | ||
einfo | ||
} | ||
|
||
src_unpack() { | ||
if use x64-macos ; then | ||
S="${WORKDIR}/jre-${PV}.jre/Contents/Home" | ||
else | ||
S="${WORKDIR}/jre-${PV}" | ||
fi | ||
|
||
default | ||
} | ||
|
||
src_install() { | ||
local dest="/opt/${P}" | ||
local ddest="${ED}${dest#/}" | ||
|
||
# Create files used as storage for system preferences. | ||
mkdir .systemPrefs || die | ||
touch .systemPrefs/.system.lock || die | ||
touch .systemPrefs/.systemRootModFile || die | ||
|
||
if ! use alsa ; then | ||
rm -vf lib/libjsoundalsa.* || die | ||
fi | ||
|
||
if ! use commercial ; then | ||
rm -vfr lib/jfr* || die | ||
fi | ||
|
||
if use headless-awt ; then | ||
rm -vf lib/lib*{[jx]awt,splashscreen}* \ | ||
bin/javaws || die | ||
fi | ||
|
||
if ! use javafx ; then | ||
rm -vf lib/lib*{decora,fx,glass,prism}* \ | ||
lib/libgstreamer-lite.* lib/*fx* || die | ||
else | ||
if ! use gtk2 ; then | ||
rm -vf lib/libglassgtk2.* || die | ||
elif ! use gtk3 ; then | ||
rm -vf lib/libglassgtk3.* || die | ||
fi | ||
fi | ||
|
||
if ! use nsplugin ; then | ||
rm -vf lib/libnpjp2.* || die | ||
else | ||
local nsplugin=$(echo lib/libnpjp2.*) | ||
local nsplugin_link=${nsplugin##*/} | ||
nsplugin_link=${nsplugin_link/./-${PN}-${SLOT}.} | ||
dosym "${dest}/${nsplugin}" "/usr/$(get_libdir)/nsbrowser/plugins/${nsplugin_link}" | ||
fi | ||
|
||
# Even though plugins linked against multiple ffmpeg versions are | ||
# provided, they generally lag behind what Gentoo has available. | ||
rm -vf lib/libavplugin* || die | ||
|
||
# Prune all fontconfig files so that libfontconfig will be used. | ||
rm -v lib/fontconfig.* || die | ||
|
||
# Install desktop file for the Java Control Panel. Using | ||
# ${PN}-${SLOT} to prevent file collision with JDK and other slots. | ||
if [[ -d lib/desktop/icons ]] ; then | ||
local icon | ||
pushd lib/desktop/icons >/dev/null || die | ||
for icon in */*/apps/sun-jcontrol.png ; do | ||
insinto /usr/share/icons/"${icon%/*}" | ||
newins "${icon}" sun-jcontrol-${PN}-${SLOT}.png | ||
done | ||
popd >/dev/null || die | ||
make_desktop_entry \ | ||
"${dest}"/bin/jcontrol \ | ||
"Java Control Panel for Oracle JRE ${SLOT}" \ | ||
sun-jcontrol-${PN}-${SLOT} \ | ||
"Settings;Java;" | ||
fi | ||
|
||
dodir "${dest}" | ||
cp -pPR bin conf lib "${ddest}" || die | ||
|
||
# Only install Gentoo-specific fontconfig if flag is disabled. | ||
# https://docs.oracle.com/javase/8/docs/technotes/guides/intl/fontconfig.html | ||
if ! use fontconfig ; then | ||
insinto "${dest}"/lib/ | ||
doins "$(prefixify_ro "${FILESDIR}"/fontconfig.Gentoo.properties)" | ||
fi | ||
|
||
# Needs to be done before CDS, bug #215225. | ||
java-vm_set-pax-markings "${ddest}" | ||
|
||
# See bug #207282. | ||
einfo "Creating the Class Data Sharing archives" | ||
"${ddest}/bin/java" -server -Xshare:dump || die | ||
|
||
# Remove empty dirs we might have copied. | ||
find "${D}" -type d -empty -exec rmdir -v {} + || die | ||
|
||
if use x64-macos ; then | ||
local lib | ||
for lib in lib{decora_sse,glass,prism_{common,es2,sw}}.dylib ; do | ||
ebegin "Fixing self-reference of ${lib}" | ||
install_name_tool \ | ||
-id "${EPREFIX}${dest}"/lib/${lib} \ | ||
"${ddest}"/lib/${lib} || die | ||
eend $? | ||
done | ||
fi | ||
|
||
use gentoo-vm && java-vm_install-env "${FILESDIR}"/${PN}-9.env.sh | ||
java-vm_revdep-mask | ||
java-vm_sandbox-predict /dev/random /proc/self/coredump_filter | ||
} | ||
|
||
pkg_preinst() { | ||
gnome2_icon_savelist | ||
} | ||
|
||
pkg_postinst() { | ||
gnome2_icon_cache_update | ||
java-vm-2_pkg_postinst | ||
|
||
if ! use headless-awt && ! use javafx ; then | ||
ewarn "You have disabled the javafx flag. Some modern desktop Java applications" | ||
ewarn "require this and they may fail with a confusing error message." | ||
fi | ||
|
||
if use gentoo-vm ; then | ||
ewarn "WARNING! You have enabled the gentoo-vm USE flag, making this JRE" | ||
ewarn "recognised by the system. This will almost certainly break things." | ||
else | ||
ewarn "The experimental gentoo-vm USE flag has not been enabled so this JRE" | ||
ewarn "will not be recognised by the system. For example, simply calling" | ||
ewarn "\"java\" will launch a different JVM. This is necessary until Gentoo" | ||
ewarn "fully supports Java 9. This JRE must therefore be invoked using its" | ||
ewarn "absolute location under ${EPREFIX}/opt/${P}." | ||
fi | ||
} | ||
|
||
pkg_postrm() { | ||
gnome2_icon_cache_update | ||
java-vm-2_pkg_postrm | ||
} |