diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-03-22 18:58:41 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-03-22 18:58:41 +0000 |
commit | 60913835fedbc5e41d7f91c2fc1466fdb13c141d (patch) | |
tree | 4d5927a8af26fce93d222d9d0370441cfff7334d /dev-java/commons-jexl/commons-jexl-1.0.ebuild | |
parent | remove old ebuild (diff) | |
download | gentoo-2-60913835fedbc5e41d7f91c2fc1466fdb13c141d.tar.gz gentoo-2-60913835fedbc5e41d7f91c2fc1466fdb13c141d.tar.bz2 gentoo-2-60913835fedbc5e41d7f91c2fc1466fdb13c141d.zip |
Initial import. Ebuild based on the contribution by Vibhav Garg <vibhavgarg@gmail.com>. Fixes #70671
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-java/commons-jexl/commons-jexl-1.0.ebuild')
-rw-r--r-- | dev-java/commons-jexl/commons-jexl-1.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-java/commons-jexl/commons-jexl-1.0.ebuild b/dev-java/commons-jexl/commons-jexl-1.0.ebuild new file mode 100644 index 000000000000..0a788ad1f64c --- /dev/null +++ b/dev-java/commons-jexl/commons-jexl-1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-jexl/commons-jexl-1.0.ebuild,v 1.1 2005/03/22 18:58:41 luckyduck Exp $ + +inherit java-pkg eutils +DESCRIPTION="Expression language engine, can be embedded in applications and frameworks." +HOMEPAGE="http://jakarta.apache.org/commons/jexl" +SRC_URI="mirror://apache/java-repository/${PN}/distributions/${P}-src.tar.gz" +DEPEND="dev-java/ant + dev-java/commons-logging + jikes? ( >=dev-java/jikes-1.21 ) + junit? ( dev-java/ant >=dev-java/junit-3.8 >=virtual/jdk-1.4 ) + !junit? ( dev-java/ant-core >=virtual/jdk-1.3 )" +RDEPEND=">=virtual/jdk-1.3" +LICENSE="Apache-2.0" +SLOT="1.0" +KEYWORDS="~x86 ~amd64" +IUSE="doc jikes junit source" + +src_unpack() { + unpack ${A} + + cd ${S} + epatch ${FILESDIR}/${P}-gentoo.diff + + mkdir -p target/lib && cd target/lib + java-pkg_jar-from junit junit.jar + java-pkg_jar-from commons-logging + java-pkg_jar-from ant-core ant.jar + java-pkg_jar-from ant-core optional.jar ant-optional.jar +} + +src_compile() { + local antflags="jar" + use doc && antflags="${antflags} javadoc" + use jikes && antflags="${antflags} -Dbuild.compiler=jikes" + use junit && antflags="${antflags} test" + ant ${antflags} || die "compile problem" +} + +src_install() { + mv target/${P}*.jar ${PN}.jar + java-pkg_dojar ${PN}.jar + + if use doc; then + dodoc RELEASE-NOTES.txt + java-pkg_dohtml PROPOSAL.html STATUS.html usersguide.html + java-pkg_dohtml -r dist/docs/ + fi + use source && java-pkg_dosrc ${S}/src/java/* +} |