diff options
Diffstat (limited to 'dev-java/jrexx/jrexx-1.1.1-r1.ebuild')
-rw-r--r-- | dev-java/jrexx/jrexx-1.1.1-r1.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-java/jrexx/jrexx-1.1.1-r1.ebuild b/dev-java/jrexx/jrexx-1.1.1-r1.ebuild deleted file mode 100644 index 49d9e84db2d..00000000000 --- a/dev-java/jrexx/jrexx-1.1.1-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit java-pkg-2 - -DESCRIPTION="Regular expression API for textual pattern matching based on the finite state automaton theory" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip" -HOMEPAGE="http://www.karneim.com/jrexx/" -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -RDEPEND=">=virtual/jre-1.4" -DEPEND=">=virtual/jdk-1.4 - app-arch/unzip - source? ( app-arch/zip )" -IUSE="doc source" -JAVA_PKG_FILTER_COMPILER="jikes" -S=${WORKDIR} - -src_compile() { - mkdir build - - cd src - ejavac -nowarn -d "${S}"/build $(find . -name "*.java") \ - || die "Failed to compile ${i}" - - if use doc ; then - mkdir "${S}"/javadoc - javadoc -encoding ISO8859_1 -d "${S}"/javadoc $(find * -type d | tr '/' '.') \ - || die "failed to build javadocs" - fi - - cd .. - jar cf ${PN}.jar -C build com || die "failed to create jar" -} - -src_install() { - java-pkg_dojar ${PN}.jar - use doc && java-pkg_dojavadoc javadoc - use source && java-pkg_dosrc src/* -} |