summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2015-10-06 11:33:49 +0000
committerPatrice Clement <monsieurp@gentoo.org>2015-10-06 15:34:44 +0000
commitb571b9c899ea072cd1740fe7df6fc83fe97e1cae (patch)
treef2237a10984565a499d3001a79a18eda4916974a /dev-java/commons-jexl
parentdev-java/commons-jexl: Stable for amd64. Stable for ppc+x86 using the ALLARCH... (diff)
downloadgentoo-b571b9c899ea072cd1740fe7df6fc83fe97e1cae.tar.gz
gentoo-b571b9c899ea072cd1740fe7df6fc83fe97e1cae.tar.bz2
gentoo-b571b9c899ea072cd1740fe7df6fc83fe97e1cae.zip
dev-java/commons-jexl: Clean up old.
Package-Manager: portage-2.2.18 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/commons-jexl')
-rw-r--r--dev-java/commons-jexl/commons-jexl-1.1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-java/commons-jexl/commons-jexl-1.1.ebuild b/dev-java/commons-jexl/commons-jexl-1.1.ebuild
deleted file mode 100644
index 8f01544149cb..000000000000
--- a/dev-java/commons-jexl/commons-jexl-1.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit eutils 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/jakarta/commons/jexl/source/${P}-src.tar.gz"
-
-CDEPEND="dev-java/commons-logging
- =dev-java/junit-3*"
-
-RDEPEND=">=virtual/jre-1.4
- ${CDEPEND}"
-DEPEND=">=virtual/jdk-1.4
- test? ( dev-java/ant-junit )
- ${CDEPEND}"
-
-LICENSE="Apache-2.0"
-SLOT="1.0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-S="${WORKDIR}/${P}-src"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # https://issues.apache.org/jira/browse/JEXL-31
- epatch "${FILESDIR}/1.1-test-target.patch"
-
- mkdir -p target/lib && cd target/lib
- java-pkg_jar-from junit junit.jar
- java-pkg_jar-from commons-logging
-}
-
-src_test() {
- ANT_TASKS="ant-junit" eant test
-}
-
-src_install() {
- java-pkg_newjar target/${P}*.jar
-
- dodoc RELEASE-NOTES.txt || die
-
- use doc && java-pkg_dojavadoc dist/docs/api
- use source && java-pkg_dosrc "${S}"/src/java/*
-}