blob: f8e24d6451a8682078144c41cb9059c0440ea505 (
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
29
30
31
32
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.5 2004/11/03 11:32:28 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="MPL-1.1"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="app-arch/unzip"
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
java-pkg_dohtml -r .
}
|