blob: c633281e7b5cb552c0f4622c29d35ca36df03b57 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/migemo/migemo-0.40-r2.ebuild,v 1.1 2007/12/20 08:01:48 matsuu Exp $
inherit elisp
DESCRIPTION="Migemo is Japanese Incremental Search Tool"
HOMEPAGE="http://0xcc.net/migemo/"
SRC_URI="http://0xcc.net/migemo/stable/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="emacs"
DEPEND="app-emacs/apel
virtual/ruby
dev-ruby/ruby-romkan
dev-ruby/ruby-bsearch
app-dicts/migemo-dict"
SITEFILE=50${PN}-gentoo.el
src_unpack() {
unpack ${A}
cp /usr/share/migemo/migemo-dict "${S}"
}
src_compile() {
econf || die
# emake b0rks
emake -j1 || die
}
src_install() {
emake -j1 DESTDIR="${D}" install || die
rm "${D}"/usr/share/migemo/migemo-dict
if use emacs ; then
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
fi
dodoc AUTHORS ChangeLog INSTALL README
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|