blob: 66950c2e87b8a0d5116a576ed3ea674f32491658 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/j2ssh/j2ssh-0.2.7-r1.ebuild,v 1.4 2004/10/22 11:03:36 absinthe Exp $
inherit java-pkg
DESCRIPTION="Java SSH API"
HOMEPAGE="http://sourceforge.net/projects/sshtools/"
SRC_URI="mirror://sourceforge/sshtools/j2ssh-${PV}-src.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="doc jikes"
KEYWORDS="x86 ~ppc ~amd64"
DEPEND=">=virtual/jdk-1.3
dev-java/ant
dev-java/commons-logging
>=dev-java/xerces-2.6.2-r1
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jdk-1.3"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}/lib
rm -f commons-logging.jar xercesImpl.jar xmlParserAPIs.jar
#use jce-jdk13-119.jar source not available and we need use based deps
java-pkg_jar-from commons-logging
java-pkg_jar-from xerces-2
}
src_compile() {
local antflags="build"
use doc && antflags="${antflags} javadoc"
use jikes && antflag="${antflags} -Dbuild.compiler=jikes"
ant ${antflags}
}
src_install() {
java-pkg_dojar dist/lib/*.jar
insinto /usr/share/${PN}
doins j2ssh.properties
use doc && java-pkg_dohtml -r docs/ && cp -R ${S}/examples ${D}/usr/share/${PN}
}
|