blob: 718efa949e594442b84b54243c0a4f573836a261 (
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
|
# Copyright 2002 Arcady Genkin <agenkin@thpoon.com>
# Distributed under the terms of the GNU General Public License, v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-ru/ispell-ru-0.99.5.9.ebuild,v 1.1 2002/12/03 07:15:39 seemant Exp $
MY_PV=${PV/.5./e}
S="${WORKDIR}"
DESCRIPTION="Alexander I. Lebedev's Russian dictionary for ispell."
HOMEPAGE="http://fmg-www.cs.ucla.edu/geoff/ispell-dictionaries.html#Russian-dicts"
SRC_URI="ftp://scon155.phys.msu.su/pub/russian/ispell/rus-ispell-${MY_PV}.tar.gz"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86"
DEPEND="app-text/ispell"
src_compile() {
make koi || die
}
src_install () {
insinto /usr/lib/ispell
doins russian.hash russian.aff
exeinto /usr/lib/ispell-ru
doexe sortkoi8 trans
dodoc README README.koi LICENSE
}
|