blob: 16812a6bf7ac3288398e11117833b302b8981a73 (
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
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="HeVeA is a quite complete and fast LaTeX to HTML translator"
HOMEPAGE="http://hevea.inria.fr/"
SRC_URI="http://hevea.inria.fr/distri/${P}.tar.gz"
LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"
IUSE="+ocamlopt"
DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt=]"
RDEPEND="
${DEPEND}
dev-texlive/texlive-latexextra
"
BDEPEND="dev-ml/ocamlbuild"
# bug #734350
QA_FLAGS_IGNORED=(
/usr/bin/bibhva
/usr/bin/hevea
/usr/bin/esponja
/usr/bin/hacha
)
src_compile() {
rm -f config.sh || die
emake PREFIX=/usr DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)/hevea" LATEXLIBDIR="/usr/share/texmf-site/tex/latex/hevea" config.sh
if use ocamlopt; then
emake PREFIX=/usr
else
emake PREFIX=/usr TARGET=byte
fi
}
src_install() {
if use ocamlopt; then
emake DESTDIR="${ED}" PREFIX=/usr install
else
emake DESTDIR="${ED}" PREFIX=/usr TARGET=byte install
fi
dodoc README CHANGES
}
# If texmf-update is present this means we have a latex install; update it so
# that hevea.sty can be found
# Do not (r)depend on latex though because hevea does not need it itself
# If latex is installed later, it will see hevea.sty
pkg_postinst() {
if [[ -z "${ROOT}" ]] && [[ -x "${EPREFIX}"/usr/sbin/texmf-update ]] ; then
"${EPREFIX}"/usr/sbin/texmf-update
fi
}
pkg_postrm() {
if [[ -z "${ROOT}" ]] && [[ -x "${EPREFIX}"/usr/sbin/texmf-update ]] ; then
"${EPREFIX}"/usr/sbin/texmf-update
fi
}
|