diff options
author | Wade Cline <wadecline@hotmail.com> | 2021-11-28 18:43:07 -0800 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-01-02 09:14:46 +0000 |
commit | e200c026b6df15a24440490151e4d70c9917944c (patch) | |
tree | 16c6507fcc77df10f335077c563de25a9faf7eb6 /dev-tex/latex2html/latex2html-2022.ebuild | |
parent | dev-db/sqlite: add 3.37.1 (diff) | |
download | gentoo-e200c026b6df15a24440490151e4d70c9917944c.tar.gz gentoo-e200c026b6df15a24440490151e4d70c9917944c.tar.bz2 gentoo-e200c026b6df15a24440490151e4d70c9917944c.zip |
dev-tex/latex2html: Add 2022
Closes: https://bugs.gentoo.org/827817
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Wade Cline <wadecline@hotmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-tex/latex2html/latex2html-2022.ebuild')
-rw-r--r-- | dev-tex/latex2html/latex2html-2022.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/dev-tex/latex2html/latex2html-2022.ebuild b/dev-tex/latex2html/latex2html-2022.ebuild new file mode 100644 index 000000000000..f377156d806f --- /dev/null +++ b/dev-tex/latex2html/latex2html-2022.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Convertor written in Perl that converts LaTeX documents to HTML" +HOMEPAGE="https://www.latex2html.org/" +SRC_URI="https://github.com/latex2html/latex2html/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="gif png svg" + +DEPEND=" + app-text/ghostscript-gpl + virtual/latex-base + >=media-libs/netpbm-10.86.24 + dev-lang/perl + gif? ( media-libs/giflib ) + png? ( media-libs/libpng:0 ) + svg? ( app-text/poppler[cairo] )" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-2021.2-respect-DESTDIR.patch +) + +src_prepare() { + default + + sed -i -e 's%@PERL@%'"${EPREFIX}"'/usr/bin/perl%g' wrapper/unix.pin || die +} + +src_configure() { + local myconf + + use gif || use png || myconf+=" --disable-images" + + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \ + --shlibdir="${EPREFIX}"/usr/$(get_libdir)/latex2html \ + --enable-pk \ + --enable-eps \ + --enable-reverse \ + --enable-pipes \ + --enable-paths \ + --enable-wrapper \ + --with-texpath="${EPREFIX}"/usr/share/texmf-site/tex/latex/html \ + --without-mktexlsr \ + $(use_enable gif) \ + $(use_enable png) \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install + + # make /usr/share/latex2html sticky + keepdir /usr/share/latex2html + + # clean the perl scripts up to remove references to the sandbox + local dir="${ED}/usr/$(get_libdir)/latex2html" + if use png || use gif; then + # pstoimg isn't built unless gif or png useflags are enabled + sed -i -e "s:${T}:/tmp:g" "${dir}"/pstoimg.pl || die + fi + + sed -i -e "s:${S}::g" "${dir}"/latex2html.pl || die + sed -i -e "s:${T}:/tmp:g" "${dir}"/cfgcache.pm || die + sed -i -e "s:${T}:/tmp:g" "${dir}"/l2hconf.pm || die + + dodoc BUGS Changes FAQ MANIFEST README.md TODO +} + +pkg_postinst() { + "${EROOT}"/usr/bin/mktexlsr +} + +pkg_postrm() { + "${EROOT}"/usr/bin/mktexlsr +} |