blob: 980f75837db2e6b6f15d69cceeada10572beea3e (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild,v 1.2 2005/05/04 21:58:04 luckyduck Exp $
inherit java-pkg
At="dsmlv2-1_2-ea1.zip"
DESCRIPTION="Java Naming and Directory Interface (JNDI) DSML Service Provider"
HOMEPAGE="http://java.sun.com/developer/earlyAccess/jndi/"
SRC_URI="${At}"
LICENSE="sun-bcla-dsml"
SLOT="2"
KEYWORDS="x86 amd64 ~ppc"
IUSE="doc"
DEPEND=">=app-arch/unzip-5.50-r1"
RDEPEND=">=virtual/jre-1.4"
RESTRICT="fetch"
S=${WORKDIR}
DOWNLOAD_URL="http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=22&PartDetailId=7022-jndi_dsml-2.0-ea-oth-JPR&SiteId=DSC&TransactionId=noreg"
pkg_nofetch() {
einfo " "
einfo " Due to license restrictions, we cannot fetch the"
einfo " distributables automagically."
einfo " "
einfo " 1. Visit ${HOMEPAGE}"
einfo " Direct link: ${DOWNLOAD_URL}"
einfo " 2. Download ${At}"
einfo " 3. Move file to ${DISTDIR}"
einfo " "
}
src_unpack() {
if [ ! -f "${DISTDIR}/${At}" ] ; then
echo " "
echo "!!! Missing ${DISTDIR}/${At}"
echo " "
einfo " "
einfo " Due to license restrictions, we cannot fetch the"
einfo " distributables automagically."
einfo " "
einfo " 1. Visit ${HOMEPAGE}"
einfo " 2. Download ${At}"
einfo " 3. Move file to ${DISTDIR}"
einfo " 4. Run emerge on this package again to complete"
einfo " "
die "User must manually download distfile"
fi
unzip -qq ${DISTDIR}/${At}
}
src_compile() {
einfo " This is a binary-only ebuild."
}
src_install() {
dodoc README-DSMLv2.txt
if use doc; then
java-pkg_dohtml -r docs/*
fi
java-pkg_dojar lib/*.jar
}
|