summaryrefslogtreecommitdiff
blob: 49f7c857569b18567dc85cb539a72e99c643e733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 1999-2004 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.5.0.ebuild,v 1.3 2004/06/24 22:31:51 agriffis Exp $

SRC_URI="j2sdk-1_5_0-beta-doc.zip"
DESCRIPTION="Javadoc for Java SDK version 1.5.0 Beta 1"
HOMEPAGE="http://java.sun.com/j2se/1.5.0/download.jsp"
LICENSE="sun-j2sl"
SLOT="1.5.0"
KEYWORDS="~x86 ~amd64 -ppc -sparc -alpha -mips -hppa"
DEPEND=">=app-arch/unzip-5.50-r1"
RESTRICT="fetch"

S="${WORKDIR}/docs"

pkg_nofetch() {
	einfo "Please download ${SRC_URI} from ${HOMEPAGE} and move it to ${DISTDIR}"
}

src_install(){
	dohtml index.html

	local dirs="api guide images relnotes tooldocs"
	for i in $dirs ; do
		cp -r $i ${D}/usr/share/doc/${P}/html
	done
}