blob: b34e0d4ff21e3ffa02537374fe38aecd6b3d520b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/yatex-1.72.ebuild,v 1.4 2004/06/24 22:29:01 agriffis Exp $
inherit elisp eutils
IUSE="cjk"
DESCRIPTION="YaTeX: Yet Another TeX mode for Emacs"
HOMEPAGE="http://www.yatex.org/"
SRC_URI="http://www.yatex.org/${P/-/}.tar.gz"
KEYWORDS="x86 alpha"
SLOT="0"
LICENSE="as-is"
DEPEND="${RDEPEND}
cjk? ( app-i18n/nkf )"
RDEPEND="virtual/emacs"
S=${WORKDIR}/${P/-/}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
epatch ${FILESDIR}/${P}-yatexhlp-gentoo.diff
}
src_compile() {
# compilation b0rks on alpha, sparc and ppc
cd docs
mv yatexe yatex.info
mv yahtmle yahtml.info
if use cjk ; then
nkf -e yatexj > yatex-ja.info
nkf -e yahtmlj > yahtml-ja.info
fi
}
src_install() {
elisp-install ${PN} *.el
elisp-site-file-install ${FILESDIR}/50yatex-gentoo.el
elisp-install ${PN} help/YATEXHLP*
dodoc docs/*.eng
if use cjk ; then
dodoc 00readme install
dodoc docs/{htmlqa,qanda} docs/*.doc
fi
for i in docs/*.info; do
doinfo ${i}
done
}
|