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/jlex/jlex-1.2.6-r1.ebuild

41 lines
768 B

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2
DESCRIPTION="JLex: a lexical analyzer generator for Java"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
HOMEPAGE="http://www.cs.princeton.edu/~appel/modern/java/JLex/"
KEYWORDS="amd64 ppc x86"
LICENSE="jlex"
SLOT="0"
DEPEND=">=virtual/jdk-1.4"
RDEPEND=">=virtual/jre-1.4"
IUSE=""
src_compile() {
ejavac -nowarn Main.java
}
src_install() {
dodoc README Bugs
if use doc ; then
dohtml manual.html
dodoc sample.lex
fi
mkdir JLex && mv *.class JLex/
jar cf jlex.jar JLex/ || die "failed to jar"
java-pkg_dojar jlex.jar
if use source ; then
rm JLex/*
cp Main.java JLex
java-pkg_dosrc JLex
fi
}