You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emacs/yatex/yatex-1.76.ebuild

53 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/yatex-1.76.ebuild,v 1.2 2012/09/26 05:18:08 ulm Exp $
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="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
SLOT="0"
LICENSE="YaTeX"
IUSE="linguas_ja"
S=${WORKDIR}/${P/-/}
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.76-gentoo.patch"
}
src_compile() {
# byte-compilation fails (as of 1.74): yatexlib.el requires fonts
# that are only available under X
cd docs
cp yatexe yatex.info || die
cp yahtmle yahtml.info || die
if use linguas_ja; then
iconv -f ISO-2022-JP -t EUC-JP yatexj > yatex-ja.info || die
iconv -f ISO-2022-JP -t EUC-JP yahtmlj > yahtml-ja.info || 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/*.info
dodoc docs/*.eng
if use linguas_ja; then
doins help/YATEXHLP.jp
dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc
fi
}