blob: c133f4a7effd4ae43fa06c5deeea544dcc775ad0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-ru/ispell-ru-0.99.7.ebuild,v 1.11 2005/03/23 16:11:51 seemant Exp $
#MY_PV=$(echo ${PV} | sed 's/\.\([0-9]\)$/f\1/')
MY_PV=${PV%*.*}f${PV##*.}
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"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="ppc x86 sparc alpha mips hppa"
DEPEND="app-text/ispell"
src_compile() {
make YO=1 || die
}
src_install () {
insinto /usr/lib/ispell
doins russian.hash russian.aff
dodoc README README.koi LICENSE
}
|