Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/hevea/
Date: Wed, 18 Oct 2017 10:06:55
Message-Id: 1508321204.a236e647782bed2c575a28da4b9443b4296742b9.aballier@gentoo
1 commit: a236e647782bed2c575a28da4b9443b4296742b9
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 18 10:05:52 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 18 10:06:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a236e647
7
8 dev-tex/hevea: bump to 2.31
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 dev-tex/hevea/Manifest | 1 +
13 dev-tex/hevea/hevea-2.31.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 59 insertions(+)
15
16 diff --git a/dev-tex/hevea/Manifest b/dev-tex/hevea/Manifest
17 index 2eac8bf30db..7eac3c34461 100644
18 --- a/dev-tex/hevea/Manifest
19 +++ b/dev-tex/hevea/Manifest
20 @@ -1,2 +1,3 @@
21 DIST hevea-2.29.tar.gz 969599 SHA256 06bf0b01834a25358415c666a0a477effc12eeeb1da4da1eeefaca67b29af8c4 SHA512 4ea2f3d60fd43d183712a868cb3894b38f6d9809ba7905d69123a7672faba0d6dfe73ad1379d7996ede98ceb645bba903e5b7550bdf92e7950ce69ba7f4f3994 WHIRLPOOL e336c088d862442d3b44acaeec19064c69ecf2c6bb1c1e50822e383b03b90201d9eced19f234f3ea07de47c8cdfd0e9447cc276aac4f5a946285552c994a258e
22 DIST hevea-2.30.tar.gz 965635 SHA256 9e93deac8d2cc62a8d9eae2817094cdba81cabef264d009f3d434d85ab9a249c SHA512 75c700e009070bff4845ccc6f984ade8068f90ea78630a2e6ab1d27618a225a4bbbb7c4aa07c08be03094ddad4aac5d0c9e83fa01d41ff501f5c1eed9f4428eb WHIRLPOOL d91e124108b0b10cfe37d342e78d668ce75522b09e2e385119eab9cb0b253cdf04d92b6b207363fdd4c0939dc4ab706ae9bbabdc8e46cda8353a43a0ee856e13
23 +DIST hevea-2.31.tar.gz 965678 SHA256 fbd7ad20aff45e557f5835f99a53d29a1753657cf2c004f26de83345b1b5b997 SHA512 4b66030f69b8b60750f8e62a9d81240b0ba399af8af69df10b33742e10d23fe7aef3e7782265fac9705f27715e5964debd47b9da7a394f70fda947b5fcd2d6ea WHIRLPOOL 35983a87e6210bab40198bbbafd64d44164daa462de5418b68b6e29e18cbb836b100e78177343c52da6e5df16367343effc9220c13bf855d651ad69c7aa6d350
24
25 diff --git a/dev-tex/hevea/hevea-2.31.ebuild b/dev-tex/hevea/hevea-2.31.ebuild
26 new file mode 100644
27 index 00000000000..a09af4ace2c
28 --- /dev/null
29 +++ b/dev-tex/hevea/hevea-2.31.ebuild
30 @@ -0,0 +1,58 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +
36 +inherit eutils multilib
37 +
38 +IUSE="+ocamlopt"
39 +
40 +DESCRIPTION="HeVeA is a quite complete and fast LaTeX to HTML translator"
41 +HOMEPAGE="http://hevea.inria.fr/"
42 +SRC_URI="http://hevea.inria.fr/distri/${P}.tar.gz"
43 +
44 +LICENSE="QPL"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
47 +
48 +DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
49 +RDEPEND="${DEPEND}
50 + dev-texlive/texlive-latexextra"
51 +DEPEND="${DEPEND} dev-ml/ocamlbuild"
52 +
53 +src_compile() {
54 + rm -f config.sh
55 + emake PREFIX=/usr DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)/hevea" LATEXLIBDIR="/usr/share/texmf-site/tex/latex/hevea" config.sh || die "Failed to create config.sh"
56 + if use ocamlopt; then
57 + emake PREFIX=/usr || die "Failed to build native code binaries"
58 + else
59 + emake PREFIX=/usr TARGET=byte || die "Failed to build bytecode binaries"
60 + fi
61 +}
62 +
63 +src_install() {
64 + if use ocamlopt; then
65 + emake DESTDIR="${D}" PREFIX=/usr install || die "Install failed"
66 + else
67 + emake DESTDIR="${D}" PREFIX=/usr TARGET=byte install || die "Install failed"
68 + fi
69 +
70 + dodoc README CHANGES
71 +}
72 +
73 +# If texmf-update is present this means we have a latex install; update it so
74 +# that hevea.sty can be found
75 +# Do not (r)depend on latex though because hevea does not need it itself
76 +# If latex is installed later, it will see hevea.sty
77 +
78 +pkg_postinst() {
79 + if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
80 + /usr/sbin/texmf-update
81 + fi
82 +}
83 +
84 +pkg_postrm() {
85 + if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
86 + /usr/sbin/texmf-update
87 + fi
88 +}