blob: 89554e31a07450f531a56c08dd685dcfc432974a (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jcifs/jcifs-1.1.5.ebuild,v 1.3 2005/05/14 21:55:34 luckyduck Exp $
inherit eutils java-pkg
DESCRIPTION="Library that implements the CIFS/SMB networking protocol in Java"
SRC_URI="http://jcifs.samba.org/src/${P}.tgz"
HOMEPAGE="http://jcifs.samba.org/"
LICENSE="LGPL-2.1"
SLOT="1.1"
KEYWORDS="x86 amd64 ~ppc"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.4
jikes? ( >=dev-java/jikes-1.21 )
>=dev-java/ant-core-1.4"
RDEPEND=">=virtual/jre-1.4
=dev-java/servletapi-2.3*"
S=${WORKDIR}/${P/-/_}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/build-xml.patch
java-pkg_jar-from servletapi-2.3
}
src_compile() {
local antflags="jar"
if use jikes; then
antflags="${antflags} -Dbuild.compiler=jikes"
fi
ant ${antflags} || die "failed to build"
}
src_install() {
java-pkg_dojar ${PN}.jar
if use doc; then
java-pkg_dohtml -r docs/api docs/*.html
fi
}
|