blob: b588eb09e72616008b091e07e66595a676cbf672 (
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
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jlex/jlex-1.2.6-r1.ebuild,v 1.1 2007/01/30 10:31:00 fordfrog Exp $
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
source? ( app-arch/zip )"
RDEPEND=">=virtual/jre-1.4"
IUSE="doc source"
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
}
|