diff options
author | 2014-05-28 19:07:30 +0000 | |
---|---|---|
committer | 2014-05-28 19:07:30 +0000 | |
commit | 0008e18b919d33d6914cd47f3d5871bd34d71bf1 (patch) | |
tree | 97b475b4ddb8eff9f0d6137927b194d02bcf2569 /dev-java | |
parent | Version bump to 1.7.0.60; fixes bug #511714, reported by Robert Forsman. (diff) | |
download | gentoo-2-0008e18b919d33d6914cd47f3d5871bd34d71bf1.tar.gz gentoo-2-0008e18b919d33d6914cd47f3d5871bd34d71bf1.tar.bz2 gentoo-2-0008e18b919d33d6914cd47f3d5871bd34d71bf1.zip |
Version bump to 1.7.0.60; fixes bug #511714, reported by Robert Forsman.
(Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/java-sdk-docs/ChangeLog | 7 | ||||
-rw-r--r-- | dev-java/java-sdk-docs/java-sdk-docs-1.7.0.60.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/dev-java/java-sdk-docs/ChangeLog b/dev-java/java-sdk-docs/ChangeLog index e53f3b3f5885..ef58e401d1b8 100644 --- a/dev-java/java-sdk-docs/ChangeLog +++ b/dev-java/java-sdk-docs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-java/java-sdk-docs # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v 1.102 2014/05/23 13:26:21 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v 1.103 2014/05/28 19:07:30 tomwij Exp $ + +*java-sdk-docs-1.7.0.60 (28 May 2014) + + 28 May 2014; Tom Wijsman <TomWij@gentoo.org> +java-sdk-docs-1.7.0.60.ebuild: + Version bump to 1.7.0.60; fixes bug #511714, reported by Robert Forsman. 23 May 2014; Manuel Rüger <mrueg@gentoo.org> java-sdk-docs-1.7.0.55.ebuild: Add ~arm keyword. diff --git a/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.60.ebuild b/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.60.ebuild new file mode 100644 index 000000000000..f574de9e78cb --- /dev/null +++ b/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.60.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.60.ebuild,v 1.1 2014/05/28 19:07:30 tomwij Exp $ + +EAPI=5 + +inherit versionator + +DOWNLOAD_URL="http://www.oracle.com/technetwork/java/javase/documentation/java-se-7-doc-download-435117.html" +ORIG_NAME="jdk-7u$(get_version_component_range 4)-apidocs.zip" + +DESCRIPTION="Oracle's documentation bundle (including API) for Java SE" +HOMEPAGE="http://download.oracle.com/javase/7/docs/" +SRC_URI="${ORIG_NAME}" + +LICENSE="oracle-java-documentation-7" +SLOT="1.7" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="app-arch/unzip" + +RESTRICT="fetch" + +S="${WORKDIR}/docs" + +pkg_nofetch() { + einfo "Please download ${ORIG_NAME} from " + einfo "${DOWNLOAD_URL}" + einfo "(agree to the license) and place it in ${DISTDIR}" + + einfo "If you find the file on the download page replaced with a higher" + einfo "version, please report to the bug 67266 (link below)." + einfo "If emerge fails because of a checksum error it is possible that" + einfo "the upstream release changed without renaming. Try downloading the file" + einfo "again (or a newer revision if available). Otherwise report this to" + einfo "http://bugs.gentoo.org/67266 and we will make a new revision." +} + +src_install(){ + insinto /usr/share/doc/${P}/html + doins index.html + + for i in *; do + [[ -d $i ]] && doins -r $i + done +} |