blob: b1ab3f705113a7d8fc70a8eb3e06c0ed3dd62136 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/skktools/skktools-1.1.ebuild,v 1.3 2004/06/21 17:24:54 usata Exp $
inherit elisp-common
DESCRIPTION="SKK utilities to manage dictionaries"
HOMEPAGE="http://openlab.jp/skk/"
SRC_URI="http://openlab.ring.gr.jp/skk/tools/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="ruby emacs"
DEPEND="virtual/glibc
>=dev-libs/glib-2"
src_install() {
einstall || die
use ruby && dobin saihenkan.rb
use emacs && elisp-site-file-install skk-xml.el
insinto /usr/share/skk
doins unannotation.awk
dodoc ChangeLog README READMEs/*
}
|