blob: b98fc82c5fd6fd4b296968e7d9b68dd7b065b4d9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-et/ispell-et-20030602.ebuild,v 1.7 2008/11/23 17:33:31 jer Exp $
inherit multilib
DESCRIPTION="Estonian dictionary for ispell"
HOMEPAGE="http://www.meso.ee/~jjpp/speller/"
SRC_URI="http://www.meso.ee/~jjpp/speller/estonian.aff
http://www.meso.ee/~jjpp/speller/estonian.dict"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
IUSE=""
DEPEND="app-text/ispell"
S=${WORKDIR}
src_unpack() {
cp "${DISTDIR}/estonian.dict" "${S}"
cp "${DISTDIR}/estonian.aff" "${S}"
}
src_compile() {
buildhash estonian.dict estonian.aff estonian.hash
}
src_install() {
insinto /usr/$(get_libdir)/ispell
doins estonian.aff estonian.hash || die
}
|