diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-01-15 19:16:27 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-01-15 19:16:27 +0000 |
commit | c62f89bf6e62d533ef94681012e746a4277eb71a (patch) | |
tree | 12a7f00901122d3a27cb0983dfef4c6e8428c528 /dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild | |
parent | resolving bug 78104 (diff) | |
download | historical-c62f89bf6e62d533ef94681012e746a4277eb71a.tar.gz historical-c62f89bf6e62d533ef94681012e746a4277eb71a.tar.bz2 historical-c62f89bf6e62d533ef94681012e746a4277eb71a.zip |
Initial import. Package needed as a dependency of jxplorer. fixes bug #76419.
Diffstat (limited to 'dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild')
-rw-r--r-- | dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild b/dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild new file mode 100644 index 000000000000..d6ce53071947 --- /dev/null +++ b/dev-java/sun-dsml-bin/sun-dsml-bin-2.1.2_pre1.ebuild @@ -0,0 +1,65 @@ +# 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.1 2005/01/15 19:16:27 luckyduck Exp $ + +inherit java-pkg + +At="dsmlv2-1_2-ea1.zip" +DESCRIPTION="Java Naming and Directory Interface (JNDI) DSML Service Provider" +SRC_URI="${At}" +HOMEPAGE="http://java.sun.com/developer/earlyAccess/jndi/" +KEYWORDS="~x86 ~amd64" +LICENSE="sun-bcla-dsml" +SLOT="2" +DEPEND=">=app-arch/unzip-5.50-r1" +RDEPEND=">=virtual/jre-1.4" +IUSE="doc" +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 COPYRIGHT README-DSMLv2.txt + if use doc; then + java-pkg_dohtml -r docs/* + fi + java-pkg_dojar lib/*.jar +} |