blob: 934b6a0632cb5e490f8adab16b97592d8939b7e1 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild,v 1.2 2005/01/01 13:03:43 eradicator Exp $
DESCRIPTION="Wnn dictionary for librarian"
HOMEPAGE="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic/"
SRC_URI="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic/ldic-${PV}-wnn.txt"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="app-i18n/freewnn"
S=${WORKDIR}
src_unpack() {
return
}
src_compile() {
/usr/bin/Wnn4/atod lib.dic < ${DISTDIR}/${A} || die
}
src_install() {
insinto /usr/lib/wnn/ja_JP/dic/misc
doins lib.dic
}
pkg_postinst() {
einfo "lib.dic is installed in /usr/lib/wnn/ja_JP/dic/misc."
einfo "You have to edit your wnnenvrc or eggrc to use it."
}
|