Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jlex/
Date: Thu, 31 Mar 2016 22:40:55
Message-Id: 1459463218.d5d750443bfbc211d6166d187cf874eb1c417d56.monsieurp@gentoo
1 commit: d5d750443bfbc211d6166d187cf874eb1c417d56
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 22:08:18 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 22:26:58 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5d75044
7
8 dev-java/jlex: Clean up old.
9
10 Package-Manager: portage-2.2.26
11
12 dev-java/jlex/jlex-1.2.6-r1.ebuild | 40 --------------------------------------
13 1 file changed, 40 deletions(-)
14
15 diff --git a/dev-java/jlex/jlex-1.2.6-r1.ebuild b/dev-java/jlex/jlex-1.2.6-r1.ebuild
16 deleted file mode 100644
17 index f52e696..0000000
18 --- a/dev-java/jlex/jlex-1.2.6-r1.ebuild
19 +++ /dev/null
20 @@ -1,40 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -JAVA_PKG_IUSE="doc source"
26 -
27 -inherit java-pkg-2
28 -
29 -DESCRIPTION="JLex: a lexical analyzer generator for Java"
30 -SRC_URI="mirror://gentoo/${P}.tar.bz2"
31 -HOMEPAGE="http://www.cs.princeton.edu/~appel/modern/java/JLex/"
32 -KEYWORDS="amd64 x86"
33 -LICENSE="jlex"
34 -SLOT="0"
35 -DEPEND=">=virtual/jdk-1.4"
36 -RDEPEND=">=virtual/jre-1.4"
37 -IUSE=""
38 -
39 -src_compile() {
40 - ejavac -nowarn Main.java
41 -}
42 -
43 -src_install() {
44 - dodoc README Bugs
45 -
46 - if use doc ; then
47 - dohtml manual.html
48 - dodoc sample.lex
49 - fi
50 -
51 - mkdir JLex && mv *.class JLex/
52 - jar cf jlex.jar JLex/ || die "failed to jar"
53 - java-pkg_dojar jlex.jar
54 -
55 - if use source ; then
56 - rm JLex/*
57 - cp Main.java JLex
58 - java-pkg_dosrc JLex
59 - fi
60 -}