app-emacs/yatex: drop old
authorAkinori Hattori <hattya@gentoo.org>
Fri, 27 Jul 2018 14:11:26 +0000 (23:11 +0900)
committerAkinori Hattori <hattya@gentoo.org>
Fri, 27 Jul 2018 14:11:26 +0000 (23:11 +0900)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

app-emacs/yatex/Manifest
app-emacs/yatex/yatex-1.76.ebuild [deleted file]

index 76a262aaf29b961398b7d487cd7a7c89d464c4d4..4f935daf50125580c54fa96f4c1474162b875eef 100644 (file)
@@ -1,2 +1 @@
-DIST yatex1.76.tar.gz 357552 BLAKE2B c829cf73d38fd0ea12bd9b831059fabae2d8cf6d7f111762a409770910aefc6f0617979e38ef0fb5c489d92c38c83832cf74e075f68a190c794aa15b5f0a696b SHA512 ff2afea1cb1b7e4bef223c13d4cc6b942b1d555959321e7cb97595dfe7ca3adbc9efa6db7d7d13cdd0bb5aa62eabc1d3383d07635b1dbbe5b15175bf99c4c416
 DIST yatex1.77.tar.gz 356721 BLAKE2B f923bc80ec32ee3d1654f15a99624251604c94af60738ad2f56b237d4385da0951bec32b32f297662540667da2648789a380b433332ce7e10f50f1d016c3b6d0 SHA512 d6b909b540b0966cfcd35a36ad7c9e8d8a821ca668ea9b0a4d1f3267a45397800769dd47ce64f5f8cbda65c274a7f415c8e86b6598a365ea41104684cf9df07f
diff --git a/app-emacs/yatex/yatex-1.76.ebuild b/app-emacs/yatex/yatex-1.76.ebuild
deleted file mode 100644 (file)
index 47cd7c4..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit elisp eutils
-
-DESCRIPTION="Yet Another TeX mode for Emacs"
-HOMEPAGE="http://www.yatex.org/"
-SRC_URI="http://www.yatex.org/${P/-/}.tar.gz"
-
-KEYWORDS="amd64 ppc ~ppc64 x86"
-SLOT="0"
-LICENSE="YaTeX"
-IUSE="l10n_ja"
-
-S="${WORKDIR}/${P/-/}"
-ELISP_PATCHES="${PN}-1.76-gentoo.patch
-       ${PN}-1.76-direntry.patch"
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-       # byte-compilation fails (as of 1.74): yatexlib.el requires fonts
-       # that are only available under X
-
-       cd docs
-       makeinfo yatexe.tex yahtmle.tex || die
-
-       if use l10n_ja; then
-               iconv -f WINDOWS-31J -t UTF-8 yatexj.tex >yatex-ja.texi || die
-               iconv -f WINDOWS-31J -t UTF-8 yahtmlj.tex >yahtml-ja.texi || die
-               makeinfo yatex-ja.texi yahtml-ja.texi || die
-       fi
-}
-
-src_install() {
-       elisp-install ${PN} *.el || die
-       elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-
-       insinto ${SITEETC}/${PN}
-       doins help/YATEXHLP.eng
-       doinfo docs/yatex.info* docs/yahtml.info*
-       dodoc docs/*.eng
-
-       if use l10n_ja; then
-               doins help/YATEXHLP.jp
-               doinfo docs/yatex-ja.info* docs/yahtml-ja.info*
-               dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc
-       fi
-}