# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/qat/qat-2.7.1-r1.ebuild,v 1.8 2006/10/05 18:11:29 gustavoz Exp $ inherit java-pkg DESCRIPTION="Quality Assurance Tester - A distributed test harnass." SRC_URI="mirror://sourceforge/qat/qat-${PV}-src.zip" HOMEPAGE="http://qat.sourceforge.net" LICENSE="sun-csl" SLOT="0" KEYWORDS="x86 ppc amd64" IUSE="doc examples jikes" RDEPEND=">=virtual/jre-1.3 dev-java/jlfgr dev-java/junit" DEPEND=">=virtual/jdk-1.3 ${RDEPEND} dev-java/ant-core app-arch/unzip jikes? ( dev-java/jikes )" S=${WORKDIR} src_unpack() { unpack ${A} cd ${S}/external/jlfgr/ java-pkg_jar-from jlfgr jlfgr.jar jlfgr-1_0.jar cd ${S}/external/junit3.8.1/ java-pkg_jar-from junit } src_compile() { local antflags="jar" use jikes && antflags="${antflags} -Dbuild.compiler=jikes" ant ${antflags} || die "failed to build" } src_install() { java-pkg_newjar build/jar/${P}.jar ${PN}.jar echo "#!/bin/sh" > ${PN} echo "java -classpath \$(java-config -p qat,junit,jlfgr) QAT" >> ${PN} dobin ${PN} use doc && java-pkg_dohtml -r doc/* && java-pkg_dohtml -r specification/* if use examples; then dodir /usr/share/doc/${PF}/examples cp -R examples/* ${D}/usr/share/doc/${PF}/examples fi }