diff options
author | 2006-09-06 03:15:02 +0000 | |
---|---|---|
committer | 2006-09-06 03:15:02 +0000 | |
commit | 96ad92f524464aef799a8dfd2f6c169c7e6e2044 (patch) | |
tree | 7fa1c42d50d19978fc6981529a3ea0026c1ce10f /dev-java/java-config | |
parent | Stable on alpha wrt Bug #144120. (diff) | |
download | gentoo-2-96ad92f524464aef799a8dfd2f6c169c7e6e2044.tar.gz gentoo-2-96ad92f524464aef799a8dfd2f6c169c7e6e2044.tar.bz2 gentoo-2-96ad92f524464aef799a8dfd2f6c169c7e6e2044.zip |
Version bump with several important fixes. See bug #145653, bug #121885, and bug #117888. Pruned old version.
(Portage version: 2.1.1_rc1-r2)
Diffstat (limited to 'dev-java/java-config')
-rw-r--r-- | dev-java/java-config/ChangeLog | 9 | ||||
-rw-r--r-- | dev-java/java-config/files/digest-java-config-1.3.5 | 3 | ||||
-rw-r--r-- | dev-java/java-config/java-config-1.3.5.ebuild | 38 |
3 files changed, 49 insertions, 1 deletions
diff --git a/dev-java/java-config/ChangeLog b/dev-java/java-config/ChangeLog index 2a9f2ab1faa0..d17b6cb6519c 100644 --- a/dev-java/java-config/ChangeLog +++ b/dev-java/java-config/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-java/java-config # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/ChangeLog,v 1.110 2006/09/05 15:15:54 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/ChangeLog,v 1.111 2006/09/06 03:15:02 nichoj Exp $ + +*java-config-1.3.5 (06 Sep 2006) + + 06 Sep 2006; Joshua Nichols <nichoj@gentoo.org> -java-config-1.3.4.ebuild, + +java-config-1.3.5.ebuild: + Version bump with several important fixes. See bug #145653, bug #121885, and + bug #117888. Pruned old version. *java-config-1.3.4 (05 Sep 2006) diff --git a/dev-java/java-config/files/digest-java-config-1.3.5 b/dev-java/java-config/files/digest-java-config-1.3.5 new file mode 100644 index 000000000000..98ac8fc1c42a --- /dev/null +++ b/dev-java/java-config/files/digest-java-config-1.3.5 @@ -0,0 +1,3 @@ +MD5 901b1246328c2a7dfabfa97dbbdd090e java-config-1.3.5.tar.bz2 14958 +RMD160 92cdcdd12ef5f4bee5d2a170e426f2c2353be3d9 java-config-1.3.5.tar.bz2 14958 +SHA256 2e9e3ecdd3049b8b3f8783af49856083da7e8588807bbfb8fa31cc76e73ec605 java-config-1.3.5.tar.bz2 14958 diff --git a/dev-java/java-config/java-config-1.3.5.ebuild b/dev-java/java-config/java-config-1.3.5.ebuild new file mode 100644 index 000000000000..0c10fd4dcae9 --- /dev/null +++ b/dev-java/java-config/java-config-1.3.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-config/java-config-1.3.5.ebuild,v 1.1 2006/09/06 03:15:02 nichoj Exp $ + +inherit base distutils eutils + +DESCRIPTION="Java environment configuration tool" +HOMEPAGE="http://www.gentoo.org/proj/en/java/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="virtual/python + dev-java/java-config-wrapper" + +src_install() { + distutils_src_install + newbin java-config java-config-1 + doman java-config.1 + + doenvd 30java-finalclasspath +} + +pkg_postinst() { + einfo "The way Java is handled on Gentoo has been recently updated." + einfo "If you have not done so already, you should follow the" + einfo "instructions available at:" + einfo "\thttp://www.gentoo.org/proj/en/java/java-upgrade.xml" + echo + einfo "While we moving towards the new Java system, we require" + einfo "a 1.3 or 1.4 JDK to be installed to ensure backwards compatibility" + einfo "with the old system." + einfo "For more details about this, please see:" + einfo "\thttps://overlays.gentoo.org/proj/java/wiki/Why_We_Need_Java14" +} |