blob: 5e4eac5eee52c0f07a186c07f36431753283bc49 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/tamago/tamago-4.0.6.ebuild,v 1.11 2004/06/24 22:25:02 agriffis Exp $
inherit elisp
DESCRIPTION="Emacs Backend for Sj3 Ver.2, FreeWnn, Wnn6 and Canna"
HOMEPAGE="http://www.m17n.org/tamago/"
SRC_URI="ftp://ftp.m17n.org/pub/tamago/${P}.tar.gz
http://cgi18.plala.or.jp/nyy/canna/canna-20011204.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha"
IUSE=""
DEPEND="virtual/emacs
app-arch/gzip"
RDEPEND="virtual/emacs
canna? ( app-i18n/canna )"
SITEFILE=50tamago-gentoo.el
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
zcat ${DISTDIR}/canna-20011204.diff.gz > canna-20011204.diff
cat ${FILESDIR}/tamago-4.0.6-canna-gentoo.patch | patch
patch -p1 < canna-20011204.diff
}
src_compile() {
./configure --prefix=/usr || die
emake || die
}
src_install() {
dodir ${SITELISP}/${PN}
emake prefix=${D}/usr \
infodir=${D}/usr/share/info \
elispdir=${D}/${SITELISP}/${PN} \
etcdir=${D}/usr/share/${PN} install || die
elisp-site-file-install ${FILESDIR}/${SITEFILE} || die
dodoc README.ja.txt AUTHORS PROBLEMS TODO ChangeLog
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|