blob: 1931856519f85359e42e99a44db060fae8832073 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="Verify .epub eBook format"
HOMEPAGE="https://www.w3.org/publishing/epubcheck/"
SRC_URI="https://github.com/w3c/epubcheck/archive/refs/tags/v${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND=">=virtual/jdk-1.5
>=dev-java/ant-1.6"
RDEPEND=">=virtual/jre-1.5"
DESTDIR="/"
src_unpack() {
unpack ${A}
}
src_compile() {
BITS="32"
if use amd64; then
BITS="64"
fi
ant -f build.xml || die "emake failed"
}
src_test() {
emake check || die "emake check failed"
}
src_install() {
mkdir -pv "${D}opt/${P}"
cp -pr bin dist "${D}opt/${P}" || die "install failed"
dodoc README.txt COPYING.txt jing_license.txt || die
}
pkg_postinst() {
elog "epubcheck is installed in /opt/${P}/"
elog "Run: java -jar /opt/${P}/dist/${P}.jar book.epub to check the format of book.epub"
}
pkg_config() {
eerror "This ebuild does not have a config function."
}
|