# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/oracle-jdk-bin/oracle-jdk-bin-1.7.0.3.ebuild,v 1.2 2012/02/18 15:06:51 phajdan.jr Exp $ EAPI="4" inherit java-vm-2 eutils prefix versionator # This URIs need to be updated when bumping! JDK_URI="http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html" JCE_URI="http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html" UPDATE="$(get_version_component_range 4)" MY_PV="$(get_version_component_range 2)u${UPDATE}" S_PV="$(get_version_component_range 1-3)_0${UPDATE}" X86_AT="jdk-${MY_PV}-linux-i586.tar.gz" AMD64_AT="jdk-${MY_PV}-linux-x64.tar.gz" SOL_X86_AT="jdk-${MY_PV}-solaris-i586.tar.gz" SOL_AMD64_AT="jdk-${MY_PV}-solaris-x64.tar.gz" SOL_SPARC_AT="jdk-${MY_PV}-solaris-sparc.tar.gz" SOL_SPARCv9_AT="jdk-${MY_PV}-solaris-sparcv9.tar.gz" X86_DEMOS="jdk-${MY_PV}-linux-i586-demos.tar.gz" AMD64_DEMOS="jdk-${MY_PV}-linux-x64-demos.tar.gz" SOL_X86_DEMOS="jdk-${MY_PV}-solaris-i586-demos.tar.gz" SOL_AMD64_DEMOS="jdk-${MY_PV}-solaris-x64-demos.tar.gz" SOL_SPARC_DEMOS="jdk-${MY_PV}-solaris-sparc-demos.tar.gz" SOL_SPARCv9_DEMOS="jdk-${MY_PV}-solaris-sparcv9-demos.tar.gz" JCE_DIR="UnlimitedJCEPolicy" JCE_FILE="${JCE_DIR}JDK7.zip" DESCRIPTION="Oracle's Java SE Development Kit" HOMEPAGE="http://www.oracle.com/technetwork/java/javase/" SRC_URI=" x86? ( ${X86_AT} examples? ( ${X86_DEMOS} ) ) amd64? ( ${AMD64_AT} examples? ( ${AMD64_DEMOS} ) ) x86-solaris? ( ${SOL_X86_AT} examples? ( ${SOL_X86_DEMOS} ) ) x64-solaris? ( ${SOL_X86_AT} ${SOL_AMD64_AT} examples? ( ${SOL_X86_DEMOS} ${SOL_AMD64_DEMOS} ) ) sparc-solaris? ( ${SOL_SPARC_AT} examples? ( ${SOL_SPARC_DEMOS} ) ) sparc64-solaris? ( ${SOL_SPARC_AT} ${SOL_SPARCv9_AT} examples? ( ${SOL_SPARC_DEMOS} ${SOL_SPARCv9_DEMOS} ) ) jce? ( ${JCE_FILE} )" LICENSE="Oracle-BCLA-JavaSE" SLOT="1.7" KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="X alsa derby doc examples jce nsplugin +source" RESTRICT="fetch strip" RDEPEND=" X? ( x11-libs/libXext x11-libs/libXi x11-libs/libXrender x11-libs/libXtst x11-libs/libX11 ) alsa? ( media-libs/alsa-lib ) doc? ( dev-java/java-sdk-docs:1.7 ) !prefix? ( sys-libs/glibc )" DEPEND=" jce? ( app-arch/unzip )" S="${WORKDIR}/jdk${S_PV}" QA_TEXTRELS_x86=" opt/${P}/jre/lib/i386/client/libjvm.so opt/${P}/jre/lib/i386/server/libjvm.so" pkg_nofetch() { if use x86; then AT=${X86_AT} elif use amd64; then AT=${AMD64_AT} elif use x86-solaris; then AT=${SOL_X86_AT} elif use x64-solaris; then AT="${SOL_X86_AT} and ${SOL_AMD64_AT}" elif use sparc-solaris; then AT=${SOL_SPARC_AT} elif use sparc64-solaris; then AT="${SOL_SPARC_AT} and ${SOL_SPARCv9_AT}" fi if use x86; then DEMOS=${X86_DEMOS} elif use amd64; then DEMOS=${AMD64_DEMOS} elif use x86-solaris; then DEMOS=${SOL_X86_DEMOS} elif use x64-solaris; then DEMOS="${SOL_X86_DEMOS} and ${SOL_AMD64_DEMOS}" elif use sparc-solaris; then DEMOS=${SOL_SPARC_AT} elif use sparc64-solaris; then DEMOS="${SOL_SPARC_AT_DEMOS} and ${SOL_SPARCv9_DEMOS}" fi einfo "Please download ${AT} from:" einfo "${JDK_URI}" einfo "and move it to ${DISTDIR}" if use examples; then einfo "Also download ${DEMOS} from:" einfo "${JDK_URI}" einfo "and move it to ${DISTDIR}" fi if use jce; then einfo "Also download ${JCE_FILE} from:" einfo "${JCE_URI}" einfo "and move it to ${DISTDIR}" fi } src_prepare() { if use jce; then mv "${WORKDIR}"/${JCE_DIR} "${S}"/jre/lib/security/ || die fi } src_compile() { # This needs to be done before CDS - #215225 java-vm_set-pax-markings "${S}" # see bug #207282 einfo "Creating the Class Data Sharing archives" if use x86; then bin/java -client -Xshare:dump || die fi bin/java -server -Xshare:dump || die # Create files used as storage for system preferences. mkdir jre/.systemPrefs || die touch jre/.systemPrefs/.system.lock || die touch jre/.systemPrefs/.systemRootModFile || die } src_install() { # We should not need the ancient plugin for Firefox 2 anymore, plus it has # writable executable segments if use x86; then rm -vf {,jre/}lib/i386/libjavaplugin_oji.so \ {,jre/}lib/i386/libjavaplugin_nscp*.so rm -vrf jre/plugin/i386 fi # Without nsplugin flag, also remove the new plugin local arch=${ARCH}; use x86 && arch=i386; if ! use nsplugin; then rm -vf {,jre/}lib/${arch}/libnpjp2.so \ {,jre/}lib/${arch}/libjavaplugin_jni.so fi dodir /opt/${P} cp -pPR bin include jre lib man "${ED}"/opt/${P} || die if use derby; then cp -pPR db "${ED}"/opt/${P} || die fi if use examples; then cp -pPR demo sample "${ED}"/opt/${P} || die fi # Remove empty dirs we might have copied rmdir -v $(find "${D}" -type d -empty) || die dodoc COPYRIGHT dohtml README.html if use jce; then dodir /opt/${P}/jre/lib/security/strong-jce mv "${ED}"/opt/${P}/jre/lib/security/US_export_policy.jar \ "${ED}"/opt/${P}/jre/lib/security/strong-jce || die mv "${ED}"/opt/${P}/jre/lib/security/local_policy.jar \ "${ED}"/opt/${P}/jre/lib/security/strong-jce || die dosym /opt/${P}/jre/lib/security/${JCE_DIR}/US_export_policy.jar \ /opt/${P}/jre/lib/security/US_export_policy.jar dosym /opt/${P}/jre/lib/security/${JCE_DIR}/local_policy.jar \ /opt/${P}/jre/lib/security/local_policy.jar fi if use nsplugin; then install_mozilla_plugin /opt/${P}/jre/lib/${arch}/libnpjp2.so fi if use source; then cp src.zip "${ED}"/opt/${P} || die fi # Install desktop file for the Java Control Panel. # Using ${PN}-${SLOT} to prevent file collision with jre and or other slots. # make_desktop_entry can't be used as ${P} would end up in filename. newicon jre/lib/desktop/icons/hicolor/48x48/apps/sun-jcontrol.png \ sun-jcontrol-${PN}-${SLOT}.png || die sed -e "s#Name=.*#Name=Java Control Panel for Oracle JDK ${SLOT}#" \ -e "s#Exec=.*#Exec=/opt/${P}/jre/bin/jcontrol#" \ -e "s#Icon=.*#Icon=sun-jcontrol-${PN}-${SLOT}.png#" \ jre/lib/desktop/applications/sun_java.desktop > \ "${T}"/jcontrol-${PN}-${SLOT}.desktop || die domenu "${T}"/jcontrol-${PN}-${SLOT}.desktop # bug #56444 cp "${FILESDIR}"/fontconfig.Gentoo.properties "${T}"/fontconfig.properties || die eprefixify "${T}"/fontconfig.properties insinto /opt/${P}/jre/lib/ doins "${T}"/fontconfig.properties set_java_env java-vm_revdep-mask java-vm_sandbox-predict /dev/random /proc/self/coredump_filter }