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 300A2138010 for ; Tue, 25 Sep 2012 06:09:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B07BE0529; Tue, 25 Sep 2012 06:08:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4CF8DE0529 for ; Tue, 25 Sep 2012 06:08:34 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E39B33D70D for ; Tue, 25 Sep 2012 06:08:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1DC65E5444 for ; Tue, 25 Sep 2012 06:08:32 +0000 (UTC) From: "Guillaume Horel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guillaume Horel" Message-ID: <1348553222.c8b4b573bb88c08c6faa25f7d40c9161a5c04bf4.guillaume_horel@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-java/jlatexmath/ X-VCS-Repository: proj/sci X-VCS-Files: dev-java/jlatexmath/ChangeLog dev-java/jlatexmath/jlatexmath-1.0.0.ebuild X-VCS-Directories: dev-java/jlatexmath/ X-VCS-Committer: guillaume_horel X-VCS-Committer-Name: Guillaume Horel X-VCS-Revision: c8b4b573bb88c08c6faa25f7d40c9161a5c04bf4 X-VCS-Branch: master Date: Tue, 25 Sep 2012 06:08:32 +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: e397f6e3-cdf8-4163-a623-ce107c59ec8e X-Archives-Hash: 5aab0c17966ab13b131e3a001abca7fe commit: c8b4b573bb88c08c6faa25f7d40c9161a5c04bf4 Author: Guillaume Horel gmail com> AuthorDate: Tue Sep 25 05:44:02 2012 +0000 Commit: Guillaume Horel gmail com> CommitDate: Tue Sep 25 06:07:02 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c8b4b573 [dev-java/jlatexmath] version bump --- dev-java/jlatexmath/ChangeLog | 6 +++++ dev-java/jlatexmath/jlatexmath-1.0.0.ebuild | 32 +++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 0 deletions(-) diff --git a/dev-java/jlatexmath/ChangeLog b/dev-java/jlatexmath/ChangeLog index 27e0eac..f3a9f0a 100644 --- a/dev-java/jlatexmath/ChangeLog +++ b/dev-java/jlatexmath/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*jlatexmath-1.0.0 (25 Sep 2012) + + 25 Sep 2012; Guillaume Horel + +jlatexmath-1.0.0.ebuild: + version bump + 07 Jul 2012; Sébastien Fabbro -jlatexmath-0.8.7.ebuild, -jlatexmath-0.9.4.ebuild, jlatexmath-0.9.7.ebuild: dev-java/jlatexmath: do not compile examples, bug #421743 diff --git a/dev-java/jlatexmath/jlatexmath-1.0.0.ebuild b/dev-java/jlatexmath/jlatexmath-1.0.0.ebuild new file mode 100644 index 0000000..80245c7 --- /dev/null +++ b/dev-java/jlatexmath/jlatexmath-1.0.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="A Java API to render LaTeX" +SRC_URI="http://forge.scilab.org/index.php/p/${PN}/downloads/get/${PN}-src-${PV}.zip" +HOMEPAGE="http://forge.scilab.org/index.php/p/jlatexmath" + +IUSE="doc examples source" +DEPEND=">=virtual/jdk-1.5 + app-arch/unzip" +RDEPEND=">=virtual/jre-1.5" + +LICENSE="GPL-2" +SLOT="1" +KEYWORDS="~amd64 ~x86" + +EANT_BUILD_TARGET="buildJar" +EANT_DOC_TARGET="doc" + +src_install() { + java-pkg_newjar dist/${P}.jar ${PN}.jar + use doc && java-pkg_dojavadoc doc + use source && java-pkg_dosrc src/org + use examples && java-pkg_doexamples examples +}