From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B871E1388C0 for ; Sat, 20 Feb 2016 01:14:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4318421C005; Sat, 20 Feb 2016 01:14:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8E9521C001 for ; Sat, 20 Feb 2016 01:14:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F871340E9D for ; Sat, 20 Feb 2016 01:14:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5482116C5 for ; Sat, 20 Feb 2016 01:14:48 +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: <1455930732.9501622c9a48ea74cd6d68fba788e5688838059a.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/hoteqn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/hoteqn/hoteqn-4.0.0-r1.ebuild X-VCS-Directories: dev-java/hoteqn/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 9501622c9a48ea74cd6d68fba788e5688838059a X-VCS-Branch: master Date: Sat, 20 Feb 2016 01:14:48 +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: 7655dd43-a846-4b9a-8300-d16d30430c5b X-Archives-Hash: a171692ca795b573c6b05fb0692a64dd commit: 9501622c9a48ea74cd6d68fba788e5688838059a Author: Patrice Clement gentoo org> AuthorDate: Sat Feb 20 00:36:35 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Feb 20 01:12:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9501622c dev-java/hoteqn: EAPI 5 bump. Switch to java-pkg-simple. Package-Manager: portage-2.2.26 dev-java/hoteqn/hoteqn-4.0.0-r1.ebuild | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/dev-java/hoteqn/hoteqn-4.0.0-r1.ebuild b/dev-java/hoteqn/hoteqn-4.0.0-r1.ebuild new file mode 100644 index 0000000..7d69aae --- /dev/null +++ b/dev-java/hoteqn/hoteqn-4.0.0-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Java applet to view and display LaTeX mathematical equations" +HOMEPAGE="http://www.atp.ruhr-uni-bochum.de/VCLab/software/HotEqn/HotEqn.html" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-3" +SLOT=0 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND=" + >=virtual/jre-1.6" + +DEPEND=" + app-arch/unzip + >=virtual/jdk-1.6" + +JAVA_ENCODING="ISO-8859-1" + +S="${WORKDIR}/${P}" + +java_prepare() { + rm -v mHotEqn.java || die +} + +src_compile() { + java-pkg-simple_src_compile + java-pkg_addres "${PN}.jar" classes/ -name "*.gif" +}