49 lines
1.4 KiB
Bash
49 lines
1.4 KiB
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
inherit versionator
|
|
|
|
DOWNLOAD_URL="http://www.oracle.com/technetwork/java/javase/documentation/jdk8-doc-downloads-2133158.html"
|
|
|
|
[[ "$(get_version_component_range 4)" == 0 ]] \
|
|
|| MY_PV_EXT="u$(get_version_component_range 4)"
|
|
|
|
MY_PV="$(get_version_component_range 2)${MY_PV_EXT}"
|
|
ORIG_NAME="jdk-${MY_PV}-docs-all.zip"
|
|
|
|
DESCRIPTION="Oracle's documentation bundle (including API) for Java SE"
|
|
HOMEPAGE="http://download.oracle.com/javase/8/docs/"
|
|
SRC_URI="${ORIG_NAME}"
|
|
LICENSE="oracle-java-documentation-8"
|
|
SLOT="1.8"
|
|
KEYWORDS="amd64 ~arm ~ppc64 x86 ~amd64-linux ~x86-linux"
|
|
RESTRICT="fetch"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
|
|
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 "https://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
|
|
}
|