blob: 49daef4025d5b9127849b4fe5859412b17390af7 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/skktools/skktools-1.2-r1.ebuild,v 1.2 2007/09/20 18:20:19 dertobi123 Exp $
inherit elisp-common eutils
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="~amd64 ppc ~x86"
IUSE="ruby emacs"
DEPEND="virtual/libc
>=dev-libs/glib-2"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-CVE-2007-3916.patch
}
src_install() {
make DESTDIR=${D} install || 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/*
}
|