blob: 8eec44193179d6a15515e4392f4120a1b0d4fcf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jlex/jlex-1.2.6.ebuild,v 1.5 2004/04/26 03:16:00 zx Exp $
inherit java-pkg
DESCRIPTION="JLex: a lexical analyzer generator for Java"
SRC_URI="mirror://gentoo/${PN}-${PV}.tar.bz2"
HOMEPAGE="http://www.cs.princeton.edu/~appel/modern/java/JLex/"
KEYWORDS="x86 ppc sparc"
LICENSE="jlex"
SLOT="0"
DEPEND="app-arch/zip"
RDEPEND=">=virtual/jdk-1.2"
IUSE="doc jikes"
src_compile() {
use jikes && jikes -q Main.java || javac -nowarn Main.java
}
src_install() {
dodoc LICENSE README Bugs
use doc && dohtml manual.html
use doc && dodoc sample.lex
mkdir JLex && mv *.class JLex/
zip -rq jlex.jar JLex/
java-pkg_doclass jlex.jar
}
|