blob: eaade25df23142182cf7e2932b9f83768037e566 (
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-2008 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.3 2008/08/28 08:34:45 ulm Exp $
inherit elisp
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"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
SITEFILE=50${PN}-gentoo.el
src_compile() {
cd client/elisp
elisp-compile *.el || die "elisp-compile failed"
}
src_install() {
cd client/elisp
elisp-install ${PN} *.{el,elc} || die "elisp-install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
|| die "elisp-site-file-install failed"
cd "${S}"
dodoc README CREDITS CHANGELOG
}
|