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/xpp3/xpp3-1.1.4c-r1.ebuild

49 lines
1.3 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xpp3/xpp3-1.1.4c-r1.ebuild,v 1.13 2013/01/12 10:22:42 ulm Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
MY_PV=${PV/m/.M}
MY_P=${PN}-${MY_PV}
DESCRIPTION="An implementation of XMLPULL V1 API."
HOMEPAGE="http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html"
SRC_URI="http://www.extreme.indiana.edu/dist/java-repository/${PN}/distributions/${MY_P}_src.zip"
LICENSE="Apache-1.1 IBM JDOM LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
test? ( dev-java/ant-junit )"
RDEPEND=">=virtual/jre-1.4"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
rm -v *.jar || die
epatch "${FILESDIR}/${P}-build.xml.patch"
}
src_test() {
ANT_TASKS="ant-junit" \
eant -Dgentoo.classpath=$(java-pkg_getjars junit) junit_main
}
src_install() {
java-pkg_newjar build/${MY_P}.jar ${PN}.jar
dohtml doc/*.html || die
dodoc doc/*.txt || die
use doc && java-pkg_dojavadoc doc/api_impl
use source && java-pkg_dosrc src/java/*
}