blob: 54e884c71112cb380d2b4806f0f62b6e946bf4ee (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild,v 1.1 2005/10/30 10:05:27 usata Exp $
inherit elisp
IUSE=""
DESCRIPTION="Statistical Japanese input method using the Internet as a large corpus"
HOMEPAGE="http://www.sumibi.org/"
SRC_URI="mirror://sourceforge.jp/sumibi/17176/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86"
SLOT="0"
DEPEND=""
src_compile() {
cd client/elisp
elisp-comp *.el || die
}
src_install() {
cd client/elisp
elisp-install ${PN} *.el*
elisp-site-file-install ${FILESDIR}/50sumibi-gentoo.el
cd ${S}
dodoc README CREDITS CHANGELOG
}
|