blob: 52f19eed3c835be3a9972d1738565bef413e4e90 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-net/commons-net-1.4.1.ebuild,v 1.2 2006/06/07 20:31:31 nichoj Exp $
inherit eutils java-pkg
MY_P="${P}-src"
DESCRIPTION="The purpose of the library is to provide fundamental protocol access, not higher-level abstractions."
HOMEPAGE="http://jakarta.apache.org/commons/net/"
SRC_URI="mirror://apache/jakarta/commons/net/source/${MY_P}.tar.gz"
RDEPEND=">=virtual/jre-1.3
>=dev-java/jakarta-oro-2.0"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-core-1.5.4
jikes? ( dev-java/jikes )
source? ( app-arch/zip )
${RDEPEND}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc ~amd64 ~ppc64"
# disabling unit tests:
# http://issues.apache.org/bugzilla/show_bug.cgi?id=37985
IUSE="doc examples jikes source" # junit
src_unpack() {
unpack ${A}
cd ${S}
mkdir -p target/lib
cd target/lib
java-pkg_jar-from jakarta-oro-2.0 jakarta-oro.jar oro.jar
cd ${S}
# always disable tests
sed -i 's/depends="compile,test"/depends="compile"/' build.xml || die "Failed to disable junit"
}
src_compile() {
local antflags="jar -Dnoget=true"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
ant ${antflags} || die "died on ant"
}
src_install() {
java-pkg_newjar target/${P}.jar ${PN}.jar
use doc && java-pkg_dohtml -r dist/docs/
if use examples; then
dodir /usr/share/doc/${PF}/examples
cp -r src/java/examples/* ${D}/usr/share/doc/${PF}/examples
fi
use source && java-pkg_dosrc src/java/org
}
|