blob: b94f2d10e273e76a3deb10c172cb7371f2cb4f98 (
plain)
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/epubcheck/epubcheck-1.1.ebuild,v 1.2 2012/12/08 17:21:37 ulm Exp $
EAPI=4
inherit java-pkg-2 java-ant-2 eutils
DESCRIPTION="Tool to validate IDPF EPUB files"
HOMEPAGE="https://code.google.com/p/epubcheck/"
SRC_URI="https://${PN}.googlecode.com/files/${PN}-src-${PV}.zip"
LICENSE="MIT BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
COMMON_DEP="dev-java/jigsaw:0
dev-java/saxon:6.5"
RDEPEND=">=virtual/jre-1.5
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.5
app-arch/unzip
${COMMON_DEP}"
S="${WORKDIR}/${PN}"
src_prepare() {
rm -f lib/*.jar
java-pkg_jar-from --into lib/ jigsaw
java-pkg_jar-from --into lib/ saxon-6.5
cd lib/
ln -s $(java-config --tools)
}
src_compile() {
eant buildJar
}
src_test() {
java -cp "$(java-pkg_getjars jigsaw,saxon-6.5):dist/${P}.jar" \
com.adobe.epubcheck.autotest.AutoTest testdocs/general/tests.xml testdocs/general/ \
|| die "tests failed"
}
src_install() {
java-pkg_newjar dist/${P}.jar ${PN}.jar
java-pkg_dolauncher ${PN} --main com.adobe.epubcheck.tool.Checker
dodoc README.txt
}
|