summaryrefslogtreecommitdiff
blob: c8e7cd51bac984ef4d7989b915e2e4862b5c010a (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="5"

JAVA_PKG_IUSE="source doc examples"

inherit eutils java-pkg-2 java-ant-2

DESCRIPTION="Java implementation of the SSH protocol"
HOMEPAGE="https://sourceforge.net/projects/sshtools/ http://www.sshtools.com/"
SRC_URI="mirror://sourceforge/sshtools/${P}-src.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

CDEPEND="dev-java/commons-logging:0
	dev-java/ant-core:0"

RDEPEND="${CDEPEND}
	>=virtual/jre-1.5"
DEPEND="${CDEPEND}
	>=virtual/jdk-1.5"

S="${WORKDIR}/${PN}"

JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_BUILD_TARGET="build"
EANT_GENTOO_CLASSPATH="commons-logging,ant-core"

src_prepare() {
	epatch "${FILESDIR}/${PV}-no-versioned-jars.patch"
	epatch "${FILESDIR}/${PV}-extras.patch"
}

src_install() {
	java-pkg_dojar "${S}"/dist/lib/*.jar

	use doc && java-pkg_dojavadoc docs/
	use source && java-pkg_dosrc "${S}"/src/com
	use examples && java-pkg_doexamples "${S}"/examples/
}