blob: bfd82695b8ddf86b2741d77df4b1157dcbff38db (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/mindterm/mindterm-2.4.2.ebuild,v 1.2 2005/05/14 22:10:51 luckyduck Exp $
inherit eutils java-pkg
DESCRIPTION="A Java SSH Client"
HOMEPAGE="http://www.appgate.com/products/80_MindTerm/"
SRC_URI="http://www.appgate.com/products/80_MindTerm/110_MindTerm_Download/${P/-/_}-src.zip"
LICENSE="mindterm"
SLOT="0"
KEYWORDS="x86 ppc ~sparc ~alpha amd64"
IUSE="doc examples jikes"
RDEPEND="virtual/x11
>=virtual/jre-1.3"
DEPEND=">=virtual/jdk-1.3
app-arch/unzip
jikes? ( dev-java/jikes )"
S=${WORKDIR}/${P/-/_}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-buildxml.patch
}
src_compile() {
local antflags="mindterm.jar lite"
use doc && antflags="${antflags} doc"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "ant failed"
}
src_install() {
java-pkg_dojar *.jar
echo "#!/bin/sh" > ${PN}
echo "cp=\`java-config -p mindterm\`" >> ${PN}
echo "\`java-config -J\` -cp \${cp} com.mindbright.application.MindTerm \$*" >> ${PN}
into /usr
dobin ${PN}
dodoc README.txt
use doc && java-pkg_dohtml -r javadoc/*
if use examples; then
dodir /usr/share/doc/${PF}/examples
cp -r ${S}/examples/* ${D}/usr/share/doc/${PF}/examples
fi
}
|