diff options
author | Akinori Hattori <hattya@gentoo.org> | 2018-07-27 23:26:48 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2018-07-27 23:26:48 +0900 |
commit | 4c2aa02a2c8607a19091836a7fb808a8f9f8e926 (patch) | |
tree | 932bab4731f9f65ce76662d89d816c146fca778b /app-emacs/yatex/yatex-1.80.ebuild | |
parent | app-emacs/yatex: update to EAPI 6 (diff) | |
download | gentoo-4c2aa02a2c8607a19091836a7fb808a8f9f8e926.tar.gz gentoo-4c2aa02a2c8607a19091836a7fb808a8f9f8e926.tar.bz2 gentoo-4c2aa02a2c8607a19091836a7fb808a8f9f8e926.zip |
app-emacs/yatex: new upstream release
Closes: https://bugs.gentoo.org/630596
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-emacs/yatex/yatex-1.80.ebuild')
-rw-r--r-- | app-emacs/yatex/yatex-1.80.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app-emacs/yatex/yatex-1.80.ebuild b/app-emacs/yatex/yatex-1.80.ebuild new file mode 100644 index 000000000000..70503b9d1dff --- /dev/null +++ b/app-emacs/yatex/yatex-1.80.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit elisp + +DESCRIPTION="Yet Another TeX mode for Emacs" +HOMEPAGE="http://www.yatex.org/" +SRC_URI="http://www.${PN}.org/${P/-}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +SLOT="0" +LICENSE="BSD-2" +IUSE="l10n_ja" + +S="${WORKDIR}/${P/-}" + +ELISP_PATCHES="${PN}-1.76-direntry.patch + ${P}-texinfo-5.patch" +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + sed -i "/(help-dir/,/)))/c\ (help-dir \"${SITEETC}/${PN}\"))" ${PN}hlp.el + + elisp_src_prepare +} + +src_compile() { + cd docs + makeinfo {${PN},yahtml}e.tex || die + + if use l10n_ja; then + iconv -f WINDOWS-31J -t UTF-8 ${PN}j.tex > ${PN}-ja.texi || die + iconv -f WINDOWS-31J -t UTF-8 yahtmlj.tex > yahtml-ja.texi || die + makeinfo {${PN},yahtml}-ja.texi || die + fi +} + +src_install() { + elisp-install ${PN} *.el + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + + insinto ${SITEETC}/${PN} + doins help/YATEXHLP.eng + doinfo docs/{${PN},yahtml}.info* + dodoc install docs/*.eng + + if use l10n_ja; then + doins help/YATEXHLP.jp + doinfo docs/{${PN},yahtml}-ja.info* + dodoc 00readme ${PN}.new docs/{htmlqa,qanda,*.doc} + fi +} |