You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/saxpath/saxpath-1.0-r2.ebuild

58 lines
1.3 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="A Simple API for XPath"
HOMEPAGE="http://saxpath.sourceforge.net/"
SRC_URI="mirror://sourceforge/saxpath/${P}.tar.gz"
LICENSE="JDOM"
SLOT="0"
KEYWORDS="amd64 ~arm ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
RDEPEND=">=virtual/jre-1.4"
# doc needs ant-trax
# test needs ant-junit
DEPEND=">=virtual/jdk-1.4
doc? ( dev-java/ant-trax )
test? ( dev-java/ant-junit )"
S=${WORKDIR}/${P}-FCS
src_unpack() {
unpack ${A}
cd "${S}"
rm -v *.jar lib/*.jar || die
mkdir src/conf
cp "${FILESDIR}/MANIFEST.MF" src/conf
use test && java-ant_rewrite-classpath
use doc && ANT_TASKS="ant-trax"
}
EANT_BUILD_TARGET="package"
EANT_DOC_TARGET="doc javadoc"
src_test() {
ANT_TASKS="ant-junit" eant -Dgentoo.classpath="$(java-pkg_getjar --build-only junit junit.jar)" \
test
}
src_install() {
java-pkg_dojar build/saxpath.jar
if use doc; then
# installs things other than javadoc too
mv build/doc/javadoc build/doc/apidocs || die
java-pkg_dohtml -r build/doc/*
dosym /usr/share/doc/${PF}/html/{apidocs,api} || die
fi
use source && java-pkg_dosrc src/java/main/*
}