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/jpfcodegen/
Date: Fri, 02 Oct 2015 09:12:50
Message-Id: 1443776972.8d05db421045f94522a6eb805d3755ef67a993fa.monsieurp@gentoo
1 commit: 8d05db421045f94522a6eb805d3755ef67a993fa
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 2 08:58:12 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 09:09:32 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d05db42
7
8 dev-java/jpfcodegen: EAPI 5 bump.
9
10 Package-Manager: portage-2.2.18
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 dev-java/jpfcodegen/jpfcodegen-0.4-r1.ebuild | 36 ++++++++++++++++++++++++++++
14 1 file changed, 36 insertions(+)
15
16 diff --git a/dev-java/jpfcodegen/jpfcodegen-0.4-r1.ebuild b/dev-java/jpfcodegen/jpfcodegen-0.4-r1.ebuild
17 new file mode 100644
18 index 0000000..be5b3c1
19 --- /dev/null
20 +++ b/dev-java/jpfcodegen/jpfcodegen-0.4-r1.ebuild
21 @@ -0,0 +1,36 @@
22 +# Copyright 1999-2014 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=5
27 +
28 +inherit java-pkg-2 java-ant-2
29 +
30 +DESCRIPTION="Generator of classes for accessing the attributes and extensions of JPF plug-ins"
31 +HOMEPAGE="http://jabref.sourceforge.net/"
32 +
33 +SRC_URI="mirror://gentoo/${P}.tar.bz2"
34 +LICENSE="LGPL-3"
35 +
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc ~x86"
38 +IUSE=""
39 +
40 +CDEPEND="dev-java/velocity:0
41 + dev-java/jpf:1.5"
42 +DEPEND=">=virtual/jdk-1.6
43 + app-arch/unzip
44 + ${CDEPEND}"
45 +RDEPEND=">=virtual/jre-1.6
46 + ${CDEPEND}"
47 +
48 +# doc target is name="-javadoc" and would need a patch, on demand
49 +EANT_BUILD_TARGET="jars"
50 +EANT_GENTOO_CLASSPATH="jpf-1.5,velocity"
51 +JAVA_ANT_REWRITE_CLASSPATH="true"
52 +
53 +src_install() {
54 + java-pkg_newjar JPFCodeGenerator-${PV}.jar JPFCodeGenerator.jar
55 + java-pkg_newjar JPFCodeGenerator-${PV}-rt.jar JPFCodeGenerator-rt.jar
56 + dohtml index.html
57 +}