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 2085D1384B4 for ; Sat, 5 Dec 2015 20:21:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B1F621C00B; Sat, 5 Dec 2015 20:21:09 +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 0165721C00B for ; Sat, 5 Dec 2015 20:21:08 +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 B8CE4340931 for ; Sat, 5 Dec 2015 20:21:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78F66A3F for ; Sat, 5 Dec 2015 20:21:04 +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: <1449346823.00b9c3878f387fa26b1575f3a0893c6bdac90d81.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/pdfannotextractor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/pdfannotextractor/pdfannotextractor-0.1l.ebuild X-VCS-Directories: dev-tex/pdfannotextractor/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 00b9c3878f387fa26b1575f3a0893c6bdac90d81 X-VCS-Branch: master Date: Sat, 5 Dec 2015 20:21:04 +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: 69daf539-1068-4a11-96f9-59682c197a97 X-Archives-Hash: ec83156baac0f4fa409f6b5ba045a099 commit: 00b9c3878f387fa26b1575f3a0893c6bdac90d81 Author: Patrice Clement gentoo org> AuthorDate: Sat Dec 5 20:20:23 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Dec 5 20:20:23 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00b9c387 Add back broken version to satisfy dependencies. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> .../pdfannotextractor-0.1l.ebuild | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/dev-tex/pdfannotextractor/pdfannotextractor-0.1l.ebuild b/dev-tex/pdfannotextractor/pdfannotextractor-0.1l.ebuild new file mode 100644 index 0000000..3691bb9 --- /dev/null +++ b/dev-tex/pdfannotextractor/pdfannotextractor-0.1l.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=3 + +inherit latex-package java-utils-2 java-pkg-2 java-ant-2 eutils + +DESCRIPTION="Extract annotations from pdf files" +HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/pax/" +SRC_URI="mirror://gentoo/${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x64-macos" +IUSE="" + +CDEPEND="virtual/latex-base + dev-java/pdfbox + dev-java/fontbox" +DEPEND="${CDEPEND} + app-arch/unzip + >=virtual/jdk-1.5" +RDEPEND="${CDEPEND} + virtual/perl-Getopt-Long + dev-perl/File-Which + >=virtual/jre-1.5 + !<=dev-texlive/texlive-latexextra-2010" + +TEXMF=/usr/share/texmf-site +S=${WORKDIR} + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="pdfbox fontbox" + +src_prepare() { + epatch "${FILESDIR}/javajars.patch" + java-pkg-2_src_prepare +} + +src_compile() { + cd "${S}/source/latex/pax" + eant || die +} + +src_install() { + newbin scripts/pax/pdfannotextractor.pl pdfannotextractor || die + java-pkg_dojar "${S}/source/latex/pax/pax.jar" || die + insinto ${TEXMF} + doins -r tex || die + dodoc doc/latex/pax/README || die +}