dev-java/wstx: Bump Java version to 6 and remove tons of unneeded deps

emma and xsdlib just plain aren't needed. stax and jaxp-virtual are
included in Java 6. ant-nodeps and ant-trax are dummy packages. We
should depend on ant-junit, not junit.

Also update the homepage as Codehaus is dead. This old version is
practically nowhere to be found except our mirrors.

Package-Manager: portage-2.2.20.1
This commit is contained in:
James Le Cuirot
2015-09-26 00:00:32 +01:00
parent 6c7457fd3a
commit 5dbef55fac

View File

@@ -0,0 +1,58 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Woodstox is a high-performance validating namespace-aware XML-processor"
HOMEPAGE="https://github.com/FasterXML/woodstox"
SRC_URI="mirror://gentoo/${PN}-src-${PV}.zip"
LICENSE="Apache-2.0"
SLOT="3.2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="test"
CDEPEND="dev-java/sax:0
dev-java/msv:0
dev-java/relaxng-datatype:0"
RDEPEND="${CDEPEND}
>=virtual/jre-1.6"
DEPEND="${CDEPEND}
>=virtual/jdk-1.6
app-arch/unzip
test? ( dev-java/ant-junit:0 )"
EANT_BUILD_TARGET="jars"
EANT_DOC_TARGET="javadoc"
# Don't need to make a folder
S="${WORKDIR}"
JAVA_ANT_REWRITE_CLASSPATH="true"
java_prepare() {
rm -v lib/msv/*.jar || die
rm -v lib/*.jar || die
# Get rid of a missing include.
epatch "${FILESDIR}"/${P}-build.xml.patch
}
EANT_GENTOO_CLASSPATH="sax,msv,relaxng-datatype"
src_test(){
java-pkg-2_src_test
}
src_install() {
java-pkg_newjar build/"${PN}"-api-"${PV}".jar "${PN}"-api.jar
java-pkg_newjar build/"${PN}"-asl-"${PV}".jar "${PN}".jar
use doc && java-pkg_dojavadoc build/javadoc
use source && java-pkg_dosrc src
}