diff options
author | Dylan Carlson <absinthe@gentoo.org> | 2003-05-15 03:11:55 +0000 |
---|---|---|
committer | Dylan Carlson <absinthe@gentoo.org> | 2003-05-15 03:11:55 +0000 |
commit | 369ffe5e39a92ba72e8ca272b5e9cdc9f9506e36 (patch) | |
tree | 2a040fdf952b82ef7fa177f76f97837c31f24f77 /dev-java/jaf | |
parent | Initial import. (diff) | |
download | historical-369ffe5e39a92ba72e8ca272b5e9cdc9f9506e36.tar.gz historical-369ffe5e39a92ba72e8ca272b5e9cdc9f9506e36.tar.bz2 historical-369ffe5e39a92ba72e8ca272b5e9cdc9f9506e36.zip |
Initial import.
Diffstat (limited to 'dev-java/jaf')
-rw-r--r-- | dev-java/jaf/Manifest | 3 | ||||
-rw-r--r-- | dev-java/jaf/files/digest-jaf-1.0.2 | 0 | ||||
-rw-r--r-- | dev-java/jaf/jaf-1.0.2.ebuild | 47 |
3 files changed, 49 insertions, 1 deletions
diff --git a/dev-java/jaf/Manifest b/dev-java/jaf/Manifest index 8418ccced345..b1c4ac131064 100644 --- a/dev-java/jaf/Manifest +++ b/dev-java/jaf/Manifest @@ -1,2 +1,3 @@ -MD5 aab5a4eacddfb4d12c4db4cb1402ef94 jaf-1.0.2.ebuild 1214 +MD5 0a3a1b1db51e5531fe691e6400de4704 jaf-1.0.2.ebuild 1212 +MD5 8e722503125f8120fc0e6070eca03eb3 ChangeLog 322 MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-jaf-1.0.2 0 diff --git a/dev-java/jaf/files/digest-jaf-1.0.2 b/dev-java/jaf/files/digest-jaf-1.0.2 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/dev-java/jaf/files/digest-jaf-1.0.2 diff --git a/dev-java/jaf/jaf-1.0.2.ebuild b/dev-java/jaf/jaf-1.0.2.ebuild new file mode 100644 index 000000000000..5de76cd17a29 --- /dev/null +++ b/dev-java/jaf/jaf-1.0.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jaf/jaf-1.0.2.ebuild,v 1.1 2003/05/15 03:10:03 absinthe Exp $ + +inherit java-pkg + +At="${PN}-1_0_2.zip" +S=${WORKDIR}/${P} +DESCRIPTION="Sun's JavaBeans Activation Framework (JAF)" +SRC_URI="" +HOMEPAGE="http://java.sun.com/products/javabeans/glasgow/jaf.html" +KEYWORDS="x86 ppc sparc alpha mips hppa arm" +LICENSE="sun-bcla" +SLOT="0" +DEPEND="" +RDEPEND=">=virtual/jdk-1.2" +IUSE="doc" + +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 RELNOTES.jar README.txt LICENSE.txt + use doc && dohtml -r docs/ + java-pkg_dojar activation.jar +} + |