# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/xml-commons/xml-commons-1.0_beta2-r1.ebuild,v 1.1 2006/07/22 23:10:19 nelchael Exp $ inherit eutils java-pkg-2 java-ant-2 MY_PV=${PV/_beta/.b} MY_P=${PN}-${MY_PV} DESCRIPTION="Jakarta project for for XML bindings for java" HOMEPAGE="http://xml.apache.org/commons/" SRC_URI="mirror://apache/xml/commons/${MY_P}.tar.gz" # Resolver is under Apache-1.1 # SAX2 is public-domain # DOM documentation is under W3C-document # DOM software is under W3C # See ${S}/java/external for the license files LICENSE="Apache-1.1 public-domain W3C-document W3C" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="doc source" DEPEND=">=virtual/jdk-1.4 dev-java/ant-core source? ( app-arch/zip )" RDEPEND=">=virtual/jre-1.4" S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${PV}-jdk15.patch } src_compile() { local antflags="jar" use doc && antflags="${antflags} javadocs" cd ${S}/java eant -f resolver.xml ${antflags} || die "XML-Resolver Compile failed" eant -f which.xml ${antflags} || die "XML-Which Compile failed" } src_install() { java-pkg_dojar java/build/which.jar java-pkg_dojar java/build/resolver.jar java-pkg_dojar java/external/build/xml-apis.jar dodoc README.html use doc && java-pkg_dohtml -r java/build/docs/* use source && java-pkg_dosrc java/src/org }