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 1BBE7139694 for ; Sat, 25 Mar 2017 17:44:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18FEDE0C5F; Sat, 25 Mar 2017 17:44:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E3FA7E0C5F for ; Sat, 25 Mar 2017 17:44:53 +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 949F234166B for ; Sat, 25 Mar 2017 17:44:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0501073C4 for ; Sat, 25 Mar 2017 17:44:51 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1490463842.52666da21e81a58901c1de2b836b096b05f9d80e.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/laf-plugin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild X-VCS-Directories: dev-java/laf-plugin/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 52666da21e81a58901c1de2b836b096b05f9d80e X-VCS-Branch: master Date: Sat, 25 Mar 2017 17:44:51 +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: 69151643-11c2-4910-bcde-0e76dbc56343 X-Archives-Hash: 986ec83a2063c1d58f8fab861288a1ab commit: 52666da21e81a58901c1de2b836b096b05f9d80e Author: Patrice Clement gentoo org> AuthorDate: Fri Mar 24 19:02:17 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Mar 25 17:44:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52666da2 dev-java/laf-plugin: EAPI 6 bump. This commit also add a SLOT to laf-plugin. Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild b/dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild new file mode 100644 index 00000000000..0c34f8779fc --- /dev/null +++ b/dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild @@ -0,0 +1,36 @@ +# 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="Look'n'feel Java library" +HOMEPAGE="http://laf-plugin.dev.java.net" +SRC_URI="https://repo1.maven.org/maven2/net/java/dev/${PN}/${PN}/${PV}/${P}-sources.jar -> ${P}.jar" +LICENSE="BSD" +SLOT="1" +KEYWORDS="~amd64 ~x86" + +CDEPEND="dev-java/nanoxml:0" + +DEPEND=" + ${CDEPEND} + >=virtual/jdk-1.6" + +RDEPEND=" + ${CDEPEND} + >=virtual/jre-1.6" + +JAVA_GENTOO_CLASSPATH="nanoxml" + +src_prepare() { + default + java-pkg_clean +} + +src_install() { + java-pkg-simple_src_install +}