blob: 3f97bcd98da7a38e58d0be66b53ce2d7e99b02d2 (
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
|
# Copyright 1999-2005 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.2 2005/07/08 13:34:12 dholm Exp $
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="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="app-text/ispell"
RDEPEND=""
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/lib/ispell
doins estonian.aff estonian.hash
}
|