diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2004-09-21 19:36:44 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2004-09-21 19:36:44 +0000 |
commit | d38dc9d47cae102aaa68a0805fceb2b408a514a8 (patch) | |
tree | 04044de9712a7006fd00a6afff9f2d16d4a13838 /dev-java/jnlp-bin/jnlp-bin-1.2.ebuild | |
parent | added a fix for the new snapshot's broken ldd. fixes bug 64732. (Manifest rec... (diff) | |
download | gentoo-2-d38dc9d47cae102aaa68a0805fceb2b408a514a8.tar.gz gentoo-2-d38dc9d47cae102aaa68a0805fceb2b408a514a8.tar.bz2 gentoo-2-d38dc9d47cae102aaa68a0805fceb2b408a514a8.zip |
initial import, ebuild created by me, as a dep
Diffstat (limited to 'dev-java/jnlp-bin/jnlp-bin-1.2.ebuild')
-rw-r--r-- | dev-java/jnlp-bin/jnlp-bin-1.2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-java/jnlp-bin/jnlp-bin-1.2.ebuild b/dev-java/jnlp-bin/jnlp-bin-1.2.ebuild new file mode 100644 index 000000000000..39f5a2d9a4d9 --- /dev/null +++ b/dev-java/jnlp-bin/jnlp-bin-1.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jnlp-bin/jnlp-bin-1.2.ebuild,v 1.1 2004/09/21 19:33:58 axxo Exp $ + +inherit java-pkg + +DESCRIPTION="Java Network Launching Protocol (JNLP)" + +HOMEPAGE="http://java.sun.com/products/javawebstart/download-jnlp.html" +SRC_URI="javaws-1_2-dev.zip" +LICENSE="" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +#DEPEND="" +RDEPEND="virtual/jre" +RESTRICT="fetch" + +S=${WORKDIR} + +DOWNLOAD_URL="http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=22&PartDetailId=7026-jaws_dev_pack-1.2-oth-JPR&SiteId=JSC&TransactionId=noreg" + +pkg_nofetch() { + einfo "Please download ${A} and place it in ${DISTDIR}" + einfo "${DOWNLOAD_URL}" +} + +src_compile() { :; } + +src_install() { + java-pkg_dojar *.jar + dohtml -r . +} |