From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B56D8139694 for ; Sun, 9 Jul 2017 22:23:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E19E0214106; Sun, 9 Jul 2017 22:23:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BCDF0214106 for ; Sun, 9 Jul 2017 22:23:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F8D23418A5 for ; Sun, 9 Jul 2017 22:23:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B9077477 for ; Sun, 9 Jul 2017 22:23:06 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1499638967.d290eb156d3ff456cd6ac83ac141cb867f3929e6.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/microba/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/microba/microba-0.4.4.3-r1.ebuild X-VCS-Directories: dev-java/microba/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: d290eb156d3ff456cd6ac83ac141cb867f3929e6 X-VCS-Branch: master Date: Sun, 9 Jul 2017 22:23:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b53e4dc8-f1cd-4b74-9dbd-80c54dbf2a14 X-Archives-Hash: d1fc4c458320cf547413075dec12df9f commit: d290eb156d3ff456cd6ac83ac141cb867f3929e6 Author: James Le Cuirot gentoo org> AuthorDate: Sun Jul 9 22:22:15 2017 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun Jul 9 22:22:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d290eb15 dev-java/microba: Add resources (bug #586820), EAPI 6, clean up Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-java/microba/microba-0.4.4.3-r1.ebuild | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) 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 00000000000..a29ff3ded20 --- /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 +}