blob: 70c4a4d5a99c0ba8db43dd7d4c0ae1b4b14cbfc2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/infobus/infobus-1.2.ebuild,v 1.4 2003/08/24 03:00:38 strider Exp $
inherit java-pkg
At="ib12.zip"
S=${WORKDIR}
DESCRIPTION="InfoBus enables dynamic exchange of data between JavaBeans component architecture."
SRC_URI=""
HOMEPAGE="http://java.sun.com/products/javabeans/infobus/index.html"
KEYWORDS="x86 ppc sparc alpha mips hppa arm"
LICENSE="infobus"
SLOT="0"
DEPEND=">=app-arch/unzip-5.50-r1"
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() {
use doc && dohtml -r doc/
dohtml *.html
java-pkg_dojar infobus.jar
}
|