blob: 6ac92a0cfd881a6f826093402a3f4f7542315ddd (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/yatex-1.71.ebuild,v 1.10 2005/01/01 14:07:23 eradicator 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 ~sparc ppc"
SLOT="0"
LICENSE="as-is"
# virtual/emacs is from elisp
#DEPEND="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
iconv -f ISO-2022-JP -t EUC-JP yatexj > yatex-ja.info
iconv -f ISO-2022-JP -t EUC-JP 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
}
|