diff options
author | 2017-07-09 23:22:15 +0100 | |
---|---|---|
committer | 2017-07-09 23:22:47 +0100 | |
commit | d290eb156d3ff456cd6ac83ac141cb867f3929e6 (patch) | |
tree | e796bf28afc9652fd89e5ec7f560813b3f1ca473 /dev-java/microba | |
parent | gnome-extra/nautilus-sendto: Add missing newline to end of ebuild file (diff) | |
download | gentoo-d290eb156d3ff456cd6ac83ac141cb867f3929e6.tar.gz gentoo-d290eb156d3ff456cd6ac83ac141cb867f3929e6.tar.bz2 gentoo-d290eb156d3ff456cd6ac83ac141cb867f3929e6.zip |
dev-java/microba: Add resources (bug #586820), EAPI 6, clean up
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-java/microba')
-rw-r--r-- | dev-java/microba/microba-0.4.4.3-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-java/microba/microba-0.4.4.3-r1.ebuild b/dev-java/microba/microba-0.4.4.3-r1.ebuild new file mode 100644 index 000000000000..a29ff3ded207 --- /dev/null +++ b/dev-java/microba/microba-0.4.4.3-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Swing components for date operations and palettes" +HOMEPAGE="https://github.com/tdbear/microba" +SRC_URI="https://github.com/tdbear/${PN}/archive/${PV}.zip -> ${P}.zip" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +CP_DEPEND="dev-java/jgraph:0" + +RDEPEND="${CP_DEPEND} + >=virtual/jre-1.6" + +DEPEND="${CP_DEPEND} + >=virtual/jdk-1.6" + +S="${WORKDIR}/${P}" +JAVA_SRC_DIR="src/main/java" + +DOCS=( + change.log.txt + readme.txt + README.md +) + +src_compile() { + java-pkg-simple_src_compile + java-pkg_addres ${PN}.jar ${JAVA_SRC_DIR} +} + +src_install() { + default + java-pkg-simple_src_install +} |