Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/microba/
Date: Sun, 09 Jul 2017 22:23:12
Message-Id: 1499638967.d290eb156d3ff456cd6ac83ac141cb867f3929e6.chewi@gentoo
1 commit: d290eb156d3ff456cd6ac83ac141cb867f3929e6
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 9 22:22:15 2017 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 9 22:22:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d290eb15
7
8 dev-java/microba: Add resources (bug #586820), EAPI 6, clean up
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-java/microba/microba-0.4.4.3-r1.ebuild | 42 ++++++++++++++++++++++++++++++
13 1 file changed, 42 insertions(+)
14
15 diff --git a/dev-java/microba/microba-0.4.4.3-r1.ebuild b/dev-java/microba/microba-0.4.4.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..a29ff3ded20
18 --- /dev/null
19 +++ b/dev-java/microba/microba-0.4.4.3-r1.ebuild
20 @@ -0,0 +1,42 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +JAVA_PKG_IUSE="doc source"
27 +
28 +inherit java-pkg-2 java-pkg-simple
29 +
30 +DESCRIPTION="Swing components for date operations and palettes"
31 +HOMEPAGE="https://github.com/tdbear/microba"
32 +SRC_URI="https://github.com/tdbear/${PN}/archive/${PV}.zip -> ${P}.zip"
33 +LICENSE="BSD"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +CP_DEPEND="dev-java/jgraph:0"
38 +
39 +RDEPEND="${CP_DEPEND}
40 + >=virtual/jre-1.6"
41 +
42 +DEPEND="${CP_DEPEND}
43 + >=virtual/jdk-1.6"
44 +
45 +S="${WORKDIR}/${P}"
46 +JAVA_SRC_DIR="src/main/java"
47 +
48 +DOCS=(
49 + change.log.txt
50 + readme.txt
51 + README.md
52 +)
53 +
54 +src_compile() {
55 + java-pkg-simple_src_compile
56 + java-pkg_addres ${PN}.jar ${JAVA_SRC_DIR}
57 +}
58 +
59 +src_install() {
60 + default
61 + java-pkg-simple_src_install
62 +}