From 0217a3db9d77563d903a7df3c60fc99008ca2022 Mon Sep 17 00:00:00 2001 From: Mikle Kolyada Date: Fri, 25 Oct 2019 13:42:53 +0300 Subject: [PATCH] app-text/jadetex: port to EAPI=7 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Mikle Kolyada --- app-text/jadetex/jadetex-3.13-r8.ebuild | 63 +++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 app-text/jadetex/jadetex-3.13-r8.ebuild diff --git a/app-text/jadetex/jadetex-3.13-r8.ebuild b/app-text/jadetex/jadetex-3.13-r8.ebuild new file mode 100644 index 000000000000..b071fec8afd4 --- /dev/null +++ b/app-text/jadetex/jadetex-3.13-r8.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit latex-package texlive-common + +DESCRIPTION="TeX macros used by Jade TeX output" +HOMEPAGE="http://jadetex.sourceforge.net/" +SRC_URI="mirror://sourceforge/jadetex/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +RESTRICT="test" + +DEPEND=">=app-text/openjade-1.3.1 + dev-texlive/texlive-fontsrecommended + dev-texlive/texlive-plaingeneric" + +src_compile() { + fmt_call="$(has_version '>=app-text/texlive-core-2019' \ + && echo "fmtutil-user" || echo "fmtutil")" + VARTEXFONTS="${T}/fonts" emake + VARTEXFONTS="${T}/fonts" TEXMFHOME="${S}" env -u TEXINPUTS \ + $fmt_call --cnffile "${FILESDIR}/format.jadetex.cnf" --fmtdir "${S}/texmf-var/web2c" --all\ + || die "failed to build format" +} + +src_install() { + # Runtime files + insinto /usr/share/texmf-site/tex/jadetex + doins dsssl.def jadetex.ltx jadetex.cfg {pdf,}jadetex.ini *.sty + + insinto /var/lib/texmf + doins -r texmf-var + + etexlinks "${FILESDIR}/format.jadetex.cnf" + + # Doc/manpages + dodoc ChangeLog* + doman *.1 + dodoc -r . + + # Support for our latex setup + insinto /etc/texmf/texmf.d + doins "${FILESDIR}/80jadetex.cnf" + insinto /etc/texmf/fmtutil.d + doins "${FILESDIR}/format.jadetex.cnf" +} + +pkg_postinst() { + etexmf-update + elog + elog "If jadetex fails with \"TeX capacity exceeded, sorry [save size=5000]\"," + elog "increase save_size in /etc/texmf/texmf.d/80jadetex.cnf and." + elog "remerge jadetex. See bug #21501." + elog +} + +pkg_postrm() { + etexmf-update +} -- 2.26.2