diff options
author | 2013-01-19 12:21:55 +0000 | |
---|---|---|
committer | 2013-01-19 12:21:55 +0000 | |
commit | 6a8698f654ff345f79d1b28b8661da6d3bad7b35 (patch) | |
tree | cc4cfe2f053738d0c99bd098b41ae74cd8b3f0a4 /dev-java/java-sdk-docs | |
parent | [bump] virtual/perl-IO-Compress-2.60.0 (diff) | |
download | gentoo-2-6a8698f654ff345f79d1b28b8661da6d3bad7b35.tar.gz gentoo-2-6a8698f654ff345f79d1b28b8661da6d3bad7b35.tar.bz2 gentoo-2-6a8698f654ff345f79d1b28b8661da6d3bad7b35.zip |
Bump, bug #67266
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 3C5CF75A)
Diffstat (limited to 'dev-java/java-sdk-docs')
-rw-r--r-- | dev-java/java-sdk-docs/ChangeLog | 10 | ||||
-rw-r--r-- | dev-java/java-sdk-docs/java-sdk-docs-1.7.0.11.ebuild | 41 |
2 files changed, 49 insertions, 2 deletions
diff --git a/dev-java/java-sdk-docs/ChangeLog b/dev-java/java-sdk-docs/ChangeLog index 592a7c749984..5f7f6260cd47 100644 --- a/dev-java/java-sdk-docs/ChangeLog +++ b/dev-java/java-sdk-docs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-java/java-sdk-docs -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v 1.86 2012/08/23 20:31:41 caster Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v 1.87 2013/01/19 12:21:55 sera Exp $ + +*java-sdk-docs-1.7.0.11 (19 Jan 2013) + + 19 Jan 2013; Ralph Sennhauser <sera@gentoo.org> + +java-sdk-docs-1.7.0.11.ebuild: + Bump, bug #67266 *java-sdk-docs-1.7.0.6 (23 Aug 2012) diff --git a/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.11.ebuild b/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.11.ebuild new file mode 100644 index 000000000000..68286dee18de --- /dev/null +++ b/dev-java/java-sdk-docs/java-sdk-docs-1.7.0.11.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 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.11.ebuild,v 1.1 2013/01/19 12:21:55 sera Exp $ + +ORIG_NAME="jdk-7u11-apidocs.zip" +SRC_URI="${ORIG_NAME}" + +DESCRIPTION="Oracle's documentation bundle (including API) for Java SE" +HOMEPAGE="http://download.oracle.com/javase/7/docs/" +LICENSE="oracle-java-documentation-7" +SLOT="1.7" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" +DEPEND="app-arch/unzip" +RDEPEND="" +RESTRICT="fetch" + +DOWNLOAD_URL="http://www.oracle.com/technetwork/java/javase/documentation/java-se-7-doc-download-435117.html" +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 +} |