diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-08-03 08:30:12 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-08-03 08:30:12 +0000 |
commit | 5e6d8ef1e2cc9dde7527e90519fbdba3641dd46a (patch) | |
tree | b738cad534d2ae757a23dafa16cef4e173c688cc /dev-tex | |
parent | Version bump, wrt bug #454710. EAPI 5, add epatch_user, do not install crap f... (diff) | |
download | gentoo-2-5e6d8ef1e2cc9dde7527e90519fbdba3641dd46a.tar.gz gentoo-2-5e6d8ef1e2cc9dde7527e90519fbdba3641dd46a.tar.bz2 gentoo-2-5e6d8ef1e2cc9dde7527e90519fbdba3641dd46a.zip |
version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/hevea/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tex/hevea/hevea-2.25.ebuild | 58 |
2 files changed, 64 insertions, 1 deletions
diff --git a/dev-tex/hevea/ChangeLog b/dev-tex/hevea/ChangeLog index 8afb36a3604c..0f0edbf436ed 100644 --- a/dev-tex/hevea/ChangeLog +++ b/dev-tex/hevea/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tex/hevea # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.55 2015/03/16 13:52:53 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/ChangeLog,v 1.56 2015/08/03 08:30:12 aballier Exp $ + +*hevea-2.25 (03 Aug 2015) + + 03 Aug 2015; Alexis Ballier <aballier@gentoo.org> +hevea-2.25.ebuild: + version bump *hevea-2.23 (16 Mar 2015) diff --git a/dev-tex/hevea/hevea-2.25.ebuild b/dev-tex/hevea/hevea-2.25.ebuild new file mode 100644 index 000000000000..3a3710fbbd34 --- /dev/null +++ b/dev-tex/hevea/hevea-2.25.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/hevea/hevea-2.25.ebuild,v 1.1 2015/08/03 08:30:12 aballier Exp $ + +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 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]" +RDEPEND="${DEPEND} + dev-texlive/texlive-latexextra" + +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 +} |