forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdfannotextractor-0.1l-r1.ebuild
62 lines (49 loc) · 1.2 KB
/
pdfannotextractor-0.1l-r1.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit latex-package 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 ~arm64 ppc64 x86 ~x64-macos"
IUSE=""
CDEPEND="virtual/latex-base
dev-java/pdfbox:1.8
dev-java/fontbox:1.7"
DEPEND="${CDEPEND}
app-arch/unzip
>=virtual/jdk-1.6"
RDEPEND="${CDEPEND}
virtual/perl-Getopt-Long
dev-perl/File-Which
>=virtual/jre-1.6
!<=dev-texlive/texlive-latexextra-2010"
TEXMF=/usr/share/texmf-site
S="${WORKDIR}"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_GENTOO_CLASSPATH="
pdfbox-1.8
fontbox-1.7
"
PATCHES=(
"${FILESDIR}/javajars.patch"
"${FILESDIR}/PDFAnnotExtractor.java.patch"
"${FILESDIR}/StringVisitor.java.patch"
)
java_prepare() {
java-pkg_clean
epatch "${PATCHES[@]}"
}
src_compile() {
cd "${S}/source/latex/pax" || die
eant || die
}
src_install() {
newbin scripts/pax/pdfannotextractor.pl pdfannotextractor
java-pkg_dojar "${S}/source/latex/pax/pax.jar"
insinto ${TEXMF}
doins -r tex
dodoc doc/latex/pax/README
}