blob: 66428b5456c338c24206f763bed2e5425156a3fe (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jswat/jswat-1.7.1.ebuild,v 1.2 2003/05/24 18:07:29 absinthe Exp $
inherit java-pkg
S="${WORKDIR}/${PN}-${PV}"
DESCRIPTION="Extensible graphical Java debugger"
HOMEPAGE="http://www.bluemarsh.com/java/jswat"
SRC_URI="mirror://sourceforge/jswat/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="x86 sparc ppc"
DEPEND=""
RDEPEND=">=virtual/jdk-1.3"
IUSE="doc"
src_compile() {
einfo " This is a binary (bytecode) only ebuild."
}
src_install () {
# install jswat classes
java-pkg_dojar jswat.jar parser.jar
# prepare and install jswat script
dobin ${FILESDIR}/jswat
# install documents
dodoc AUTHORS.txt BUGS.txt HISTORY.txt LICENSE.txt TODO.txt
dohtml README.html
use doc && dohtml -r docs
}
|