# 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 # TODO # slot the following three jars to ensure building # this package doesn't break! # link the already installed junit jar to build from cd ${S}/lib; java-pkg_jar-from junit junit.jar junit-3.8.1.jar # link the already installed log4j jar to build from cd ${S}/lib; java-pkg_jar-from log4j log4j.jar log4j-1.2.8.jar # link the already installed commons-logging jar to build from cd ${S}/lib; java-pkg_jar-from commons-logging commons-logging.jar commons-logging-1.0.1.jar } 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 }