diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-10-18 19:19:03 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-10-18 19:19:03 +0000 |
commit | 935e586b3339aeae69f08e65e452e1cac328d555 (patch) | |
tree | e9f2e9f86eff09739f66c107fd7712a657b1aaac /dev-java/ibm-jre-bin | |
parent | bug 109686, use mirror://gentoo (diff) | |
download | gentoo-2-935e586b3339aeae69f08e65e452e1cac328d555.tar.gz gentoo-2-935e586b3339aeae69f08e65e452e1cac328d555.tar.bz2 gentoo-2-935e586b3339aeae69f08e65e452e1cac328d555.zip |
Respect the global USE=nsplugin instead of the local USE=browserplugin
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'dev-java/ibm-jre-bin')
-rw-r--r-- | dev-java/ibm-jre-bin/ChangeLog | 5 | ||||
-rw-r--r-- | dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/dev-java/ibm-jre-bin/ChangeLog b/dev-java/ibm-jre-bin/ChangeLog index d40715d77a02..6047fd3bee7c 100644 --- a/dev-java/ibm-jre-bin/ChangeLog +++ b/dev-java/ibm-jre-bin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-java/ibm-jre-bin # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/ibm-jre-bin/ChangeLog,v 1.20 2005/10/01 07:34:45 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/ibm-jre-bin/ChangeLog,v 1.21 2005/10/18 19:19:03 agriffis Exp $ + + 18 Oct 2005; Aron Griffis <agriffis@gentoo.org> ibm-jre-bin-1.4.2.ebuild: + Respect the global USE=nsplugin instead of the local USE=browserplugin 01 Oct 2005; Thomas Matthijs <axxo@gentoo.org> -ibm-jre-bin-1.4.1-r1.ebuild, ibm-jre-bin-1.4.2.ebuild: diff --git a/dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild b/dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild index b7c6f208def1..fe5587dd0fb1 100644 --- a/dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild +++ b/dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild,v 1.13 2005/10/01 07:34:45 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/ibm-jre-bin/ibm-jre-bin-1.4.2.ebuild,v 1.14 2005/10/18 19:19:03 agriffis Exp $ inherit java @@ -11,7 +11,7 @@ SRC_URI="ppc? ( IBMJava2-JRE-142.ppc.tgz ) ppc64? ( IBMJava2-JRE-142.ppc64.tgz ) x86? ( IBMJava2-JRE-142.tgz )" PROVIDE="virtual/jre" -IUSE="browserplugin mozilla" +IUSE="nsplugin mozilla" SLOT="1.4" LICENSE="IBM-J1.4" KEYWORDS="ppc ~x86 ppc64 -*" @@ -59,7 +59,7 @@ src_install() { > ${D}/etc/env.d/java/20${P} \ || die "unable to install environment file" - if ( use browserplugin || use mozilla ) && ! ( use ppc || use ppc64 ); then + if ( use nsplugin || use mozilla ) && ! ( use ppc || use ppc64 ); then local plugin="libjavaplugin_oji.so" if has_version '>=sys-devel/gcc-3' ; then plugin="libjavaplugin_ojigcc3.so" @@ -69,9 +69,9 @@ src_install() { } pkg_postinst() { - if ! use browserplugin && use mozilla; then + if ! use nsplugin && use mozilla; then ewarn ewarn "The 'mozilla' useflag to enable the java browser plugin for applets" - ewarn "has been renamed to 'browserplugin' please update your USE" + ewarn "has been renamed to 'nsplugin' please update your USE" fi } |