Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/pdfannotextractor: ChangeLog pdfannotextractor-0.1k.ebuild
Date: Wed, 27 Jul 2011 13:26:18
Message-Id: 20110727132607.9EEF62004B@flycatcher.gentoo.org
1 aballier 11/07/27 13:26:07
2
3 Modified: ChangeLog
4 Added: pdfannotextractor-0.1k.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-tex/pdfannotextractor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pdfannotextractor/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pdfannotextractor/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pdfannotextractor/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tex/pdfannotextractor/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 18 Mar 2011 19:49:24 -0000 1.3
24 +++ ChangeLog 27 Jul 2011 13:26:07 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-tex/pdfannotextractor
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/pdfannotextractor/ChangeLog,v 1.3 2011/03/18 19:49:24 tomka Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/pdfannotextractor/ChangeLog,v 1.4 2011/07/27 13:26:07 aballier Exp $
30 +
31 +*pdfannotextractor-0.1k (27 Jul 2011)
32 +
33 + 27 Jul 2011; Alexis Ballier <aballier@g.o>
34 + +pdfannotextractor-0.1k.ebuild:
35 + version bump
36
37 18 Mar 2011; Thomas Kahle <tomka@g.o> pdfannotextractor-0.1i.ebuild:
38 ~x86 per bug 355353
39
40
41
42 1.1 dev-tex/pdfannotextractor/pdfannotextractor-0.1k.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pdfannotextractor/pdfannotextractor-0.1k.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/pdfannotextractor/pdfannotextractor-0.1k.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pdfannotextractor-0.1k.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-tex/pdfannotextractor/pdfannotextractor-0.1k.ebuild,v 1.1 2011/07/27 13:26:07 aballier Exp $
52
53 EAPI=3
54
55 inherit latex-package java-utils-2 java-pkg-2 java-ant-2 eutils
56
57 DESCRIPTION="Extract annotations from pdf files"
58 HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/pax/"
59 SRC_URI="mirror://gentoo/${P}.zip"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE=""
65
66 CDEPEND="virtual/latex-base
67 dev-java/pdfbox
68 dev-java/fontbox"
69 DEPEND="${CDEPEND}
70 app-arch/unzip
71 >=virtual/jdk-1.5"
72 RDEPEND="${CDEPEND}
73 virtual/perl-Getopt-Long
74 dev-perl/File-Which
75 >=virtual/jre-1.5
76 !<=dev-texlive/texlive-latexextra-2010"
77
78 TEXMF=/usr/share/texmf-site
79 S=${WORKDIR}
80
81 JAVA_ANT_REWRITE_CLASSPATH="true"
82 EANT_GENTOO_CLASSPATH="pdfbox fontbox"
83
84 src_prepare() {
85 epatch "${FILESDIR}/javajars.patch"
86 java-pkg-2_src_prepare
87 }
88
89 src_compile() {
90 cd "${S}/source/latex/pax"
91 eant || die
92 }
93
94 src_install() {
95 newbin scripts/pax/pdfannotextractor.pl pdfannotextractor || die
96 java-pkg_dojar "${S}/source/latex/pax/pax.jar" || die
97 insinto ${TEXMF}
98 doins -r tex || die
99 dodoc doc/latex/pax/README || die
100 }