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/commons-jexl/commons-jexl-2.1.1.ebuild

58 lines
1.6 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-jexl/commons-jexl-2.1.1.ebuild,v 1.3 2015/04/02 18:30:02 mr_bones_ Exp $
EAPI="5"
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Expression language engine, can be embedded in applications and frameworks"
HOMEPAGE="http://commons.apache.org/jexl/"
SRC_URI="mirror://apache/commons/jexl/source/${P}-src.tar.gz"
CDEPEND="dev-java/commons-logging:0"
RDEPEND=">=virtual/jre-1.5
${CDEPEND}"
DEPEND=">=virtual/jdk-1.5
>=dev-java/javacc-5
test? ( dev-java/ant-junit:0 )
${CDEPEND}"
LICENSE="Apache-2.0"
SLOT="2"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${P}-src"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_GENTOO_CLASSPATH="commons-logging"
java_prepare() {
cp "${FILESDIR}"/${PV}-build.xml build.xml || die
# these two calls is what the "jjtree-javacc" goal in the pom.xml does
jjtree -OUTPUT_DIRECTORY="${S}/src/main/java/org/apache/commons/jexl2/parser/" \
src/main/java/org/apache/commons/jexl2/parser/Parser.jjt \
|| die "Code generation via jjtree failed"
javacc -OUTPUT_DIRECTORY="${S}/src/main/java/org/apache/commons/jexl2/parser/" \
src/main/java/org/apache/commons/jexl2/parser/Parser.jj \
|| die "Parser.java code generation via javacc failed"
}
src_install() {
java-pkg_dojar target/${PN}.jar
dodoc RELEASE-NOTES.txt NOTICE.txt
use doc && java-pkg_dojavadoc "${S}"/target/site/apidocs
use source && java-pkg_dosrc "${S}"/src/main/java/*
}
src_test() {
java-pkg-2_src_test
}