# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/crimson/crimson-1.1.3-r1.ebuild,v 1.7 2007/05/03 12:04:06 armin76 Exp $ JAVA_PKG_IUSE="doc examples source" inherit java-pkg-2 java-ant-2 DESCRIPTION="Apache Crimson XML 1.0 parser" HOMEPAGE="http://xml.apache.org/crimson/" SRC_URI="http://xml.apache.org/dist/crimson/${P}-src.tar.gz" LICENSE="Apache-1.1" SLOT="1" KEYWORDS="amd64 ppc ~ppc64 x86" IUSE="" DEPEND="|| ( =virtual/jdk-1.4* =virtual/jdk-1.3* )" RDEPEND=">=virtual/jre-1.3" src_compile() { eant jars $(use_doc docs) } src_install() { java-pkg_dojar build/${PN}.jar dodoc ChangeLog || die dohtml docs/README.html || die if use doc; then java-pkg_dojavadoc build/docs/api java-pkg_dohtml -r -A class,java,xml build/examples fi if use examples; then dodir /usr/share/doc/${PF}/examples cp -r examples/* ${D}/usr/share/doc/${PF}/examples fi use source && java-pkg_dosrc src/javax src/org }