diff options
author | Chris Aniszczyk <zx@gentoo.org> | 2004-04-11 21:03:44 +0000 |
---|---|---|
committer | Chris Aniszczyk <zx@gentoo.org> | 2004-04-11 21:03:44 +0000 |
commit | 5f2d688576e93a3c3768e81d1cc0478252979f03 (patch) | |
tree | c60d1c4d8612f217d069f9ed92d2c58f050c48d8 /dev-java/javahelp/javahelp-2.0.01.ebuild | |
parent | Removing ancient version (diff) | |
download | historical-5f2d688576e93a3c3768e81d1cc0478252979f03.tar.gz historical-5f2d688576e93a3c3768e81d1cc0478252979f03.tar.bz2 historical-5f2d688576e93a3c3768e81d1cc0478252979f03.zip |
Initial Import. Closes #47548
Diffstat (limited to 'dev-java/javahelp/javahelp-2.0.01.ebuild')
-rw-r--r-- | dev-java/javahelp/javahelp-2.0.01.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-java/javahelp/javahelp-2.0.01.ebuild b/dev-java/javahelp/javahelp-2.0.01.ebuild new file mode 100644 index 000000000000..29281fccfea3 --- /dev/null +++ b/dev-java/javahelp/javahelp-2.0.01.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/javahelp/javahelp-2.0.01.ebuild,v 1.1 2004/04/11 21:03:44 zx Exp $ + +inherit java-pkg + +DESCRIPTION="JavaHelp software is a full-featured, platform-independent, extensible help system that enables you to incorporate online help in applets, components, applications, operating systems, and devices." +HOMEPAGE="http://java.sun.com/products/javahelp/" +LICENSE="sun-j2sl" +SLOT="0" +KEYWORDS="~x86" +DEPEND=">=app-arch/unzip-5.50-r1" +RDEPEND=">=virtual/jdk-1.3" +RESTRICT="fetch" +SRC_URI="javahelp-2_0_01.zip" +IUSE="doc" + +S="${WORKDIR}/jh2.0" + +pkg_nofetch() { + einfo "Please download ${SRC_URI} from ${HOMEPAGE} and move it to ${DISTDIR}" +} + +src_compile() { :; } + +src_install(){ + java-pkg_dojar javahelp/lib/jh.jar + cp -R ${S}/javahelp/lib ${D}/usr/share/${PN} + cp -R ${S}/javahelp/bin ${D}/usr/share/${PN}/bin + + use doc && cp -R ${S}/demos ${D}/usr/share/${PN} && dohtml -r doc + dodoc README +} + |