commit:     0286a6e136388ba55f3607e309ff4532e0da94b7
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 28 08:41:38 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Jul 29 10:05:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0286a6e1

dev-tex/hevea: bump to 2.30

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-tex/hevea/Manifest          |  1 +
 dev-tex/hevea/hevea-2.30.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/dev-tex/hevea/Manifest b/dev-tex/hevea/Manifest
index 2208c00f32c..2eac8bf30db 100644
--- a/dev-tex/hevea/Manifest
+++ b/dev-tex/hevea/Manifest
@@ -1 +1,2 @@
 DIST hevea-2.29.tar.gz 969599 SHA256 
06bf0b01834a25358415c666a0a477effc12eeeb1da4da1eeefaca67b29af8c4 SHA512 
4ea2f3d60fd43d183712a868cb3894b38f6d9809ba7905d69123a7672faba0d6dfe73ad1379d7996ede98ceb645bba903e5b7550bdf92e7950ce69ba7f4f3994
 WHIRLPOOL 
e336c088d862442d3b44acaeec19064c69ecf2c6bb1c1e50822e383b03b90201d9eced19f234f3ea07de47c8cdfd0e9447cc276aac4f5a946285552c994a258e
+DIST hevea-2.30.tar.gz 965635 SHA256 
9e93deac8d2cc62a8d9eae2817094cdba81cabef264d009f3d434d85ab9a249c SHA512 
75c700e009070bff4845ccc6f984ade8068f90ea78630a2e6ab1d27618a225a4bbbb7c4aa07c08be03094ddad4aac5d0c9e83fa01d41ff501f5c1eed9f4428eb
 WHIRLPOOL 
d91e124108b0b10cfe37d342e78d668ce75522b09e2e385119eab9cb0b253cdf04d92b6b207363fdd4c0939dc4ab706ae9bbabdc8e46cda8353a43a0ee856e13

diff --git a/dev-tex/hevea/hevea-2.30.ebuild b/dev-tex/hevea/hevea-2.30.ebuild
new file mode 100644
index 00000000000..a09af4ace2c
--- /dev/null
+++ b/dev-tex/hevea/hevea-2.30.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils multilib
+
+IUSE="+ocamlopt"
+
+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"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
+RDEPEND="${DEPEND}
+       dev-texlive/texlive-latexextra"
+DEPEND="${DEPEND} dev-ml/ocamlbuild"
+
+src_compile() {
+       rm -f config.sh
+       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"
+       if use ocamlopt; then
+               emake PREFIX=/usr || die "Failed to build native code binaries"
+       else
+               emake PREFIX=/usr TARGET=byte || die "Failed to build bytecode 
binaries"
+       fi
+}
+
+src_install() {
+       if use ocamlopt; then
+               emake DESTDIR="${D}" PREFIX=/usr install || die "Install failed"
+       else
+               emake DESTDIR="${D}" PREFIX=/usr TARGET=byte install || die 
"Install failed"
+       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 [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
+               /usr/sbin/texmf-update
+       fi
+}
+
+pkg_postrm() {
+       if [ "$ROOT" = "/" ] && [ -x /usr/sbin/texmf-update ] ; then
+               /usr/sbin/texmf-update
+       fi
+}

Reply via email to