diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-java/icedtea-web/icedtea-web-1.5.1-r1.ebuild | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-java/icedtea-web/icedtea-web-1.5.1-r1.ebuild')
-rw-r--r-- | dev-java/icedtea-web/icedtea-web-1.5.1-r1.ebuild | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/dev-java/icedtea-web/icedtea-web-1.5.1-r1.ebuild b/dev-java/icedtea-web/icedtea-web-1.5.1-r1.ebuild new file mode 100644 index 000000000000..dadc7bf4f2b0 --- /dev/null +++ b/dev-java/icedtea-web/icedtea-web-1.5.1-r1.ebuild @@ -0,0 +1,114 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ +# Build written by Andrew John Hughes (ahughes@redhat.com) + +EAPI="5" + +inherit autotools eutils readme.gentoo java-pkg-2 java-vm-2 + +DESCRIPTION="FOSS Java browser plugin and Web Start implementation" +HOMEPAGE="http://icedtea.classpath.org" +SRC_URI="http://icedtea.classpath.org/download/source/${P}.tar.gz" + +LICENSE="GPL-2 GPL-2-with-linking-exception LGPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ppc x86" + +IUSE="doc +icedtea7 javascript +nsplugin tagsoup test" + +COMMON_DEP=" + icedtea7? ( || ( + dev-java/icedtea:7 dev-java/icedtea-bin:7 + ) ) + !icedtea7? ( || ( + dev-java/icedtea:7 dev-java/icedtea-bin:7 + dev-java/icedtea:6 dev-java/icedtea-bin:6 + ) ) + app-eselect/eselect-java + tagsoup? ( dev-java/tagsoup ) + nsplugin? ( + >=dev-libs/glib-2.16 + )" +RDEPEND="${COMMON_DEP}" +# Need system junit 4.8+. Bug #389795 +DEPEND="${COMMON_DEP} + virtual/pkgconfig + app-arch/zip + javascript? ( dev-java/rhino:1.6 ) + nsplugin? ( net-misc/npapi-sdk ) + test? ( >=dev-java/junit-4.8:4 )" + +# http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2010-December/011221.html +pkg_setup() { + JAVA_PKG_WANT_BUILD_VM="icedtea-7 icedtea-bin-7" + if ! use icedtea7; then + JAVA_PKG_WANT_BUILD_VM="${JAVA_PKG_WANT_BUILD_VM} icedtea-6 icedtea-bin-6" + fi + JAVA_PKG_WANT_SOURCE="1.6" + JAVA_PKG_WANT_TARGET="1.6" + + java-pkg-2_pkg_setup + java-vm-2_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.5-respect-ldflags.patch # bug #356645 + eautoreconf +} + +src_configure() { + local tagsoup_jar + local config + + # bug #527962 + use tagsoup && tagsoup_jar="$(java-pkg_getjars tagsoup)" + + config=( + # javaws is managed by eselect java-vm and symlinked to by icedtea so + # move it out of the way and symlink itweb-settings back to bin + --bindir="${EPREFIX}"/usr/libexec/${PN} + --with-jdk-home="${JAVA_HOME}" + $(use_enable doc docs) + $(use_enable nsplugin plugin) + $(use_with javascript rhino) + $(use_with tagsoup tagsoup ${tagsoup_jar}) + ) + + unset JAVA_HOME JDK_HOME CLASSPATH JAVAC JAVACFLAGS + econf "${config[@]}" +} + +src_compile() { + default +} + +src_install() { + default + + if use nsplugin; then + install_mozilla_plugin "/usr/$(get_libdir)/IcedTeaPlugin.so" + fi + + mkdir -p "${ED}"/usr/bin || die + dosym /usr/libexec/${PN}/itweb-settings /usr/bin/itweb-settings || die + + # Should we patch system default lookup instead? + mkdir -p "${ED}"/etc/.java/deployment/ || die + echo "deployment.jre.dir=/etc/java-config-2/current-icedtea-web-vm" \ + > "${ED}"/etc/.java/deployment/deployment.properties || die + + readme.gentoo_create_doc +} + +pkg_postinst() { + VMHANDLE="icedtea-web@${GENTOO_VM}" java-vm_check-nsplugin + java_mozilla_clean_ + readme.gentoo_print_elog +} + +pkg_prerm() { + # override the java-vm-2 eclass check for removing a system VM, as it + # doesn't make sense here. + :; +} |