blob: 10f1cd8c9be284697765b1fdc9786941c98e7d62 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/poi/poi-2.5.ebuild,v 1.1 2004/07/22 14:47:24 axxo Exp $
inherit java-pkg eutils
DESCRIPTION="Java API To Access Microsoft Format Files"
HOMEPAGE="http://jakarta.apache.org/poi/"
SRC_URI="mirror://apache/jakarta/poi/release/src/${PN}-src-${PV}-final-20040302.tar.gz"
IUSE="jikes junit"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~ppc"
DEPEND=">=virtual/jdk-1.2
>=dev-java/ant-1.4"
RDEPEND=">=virtual/jdk-1.2
dev-java/junit
dev-java/xerces
dev-java/jdepend
dev-java/xalan
dev-java/commons-logging
dev-java/log4j
dev-java/commons-beanutils
dev-java/commons-collections
dev-java/commons-lang
jikes? ( dev-java/jikes )
"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd ${S}
use jikes && epatch ${FILESDIR}/${P}-jikes-fix.patch
}
src_compile() {
local antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use junit && antflags="${antflags} test"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar build/dist/*.jar
}
|