blob: 03f8af4db4001c1a674162a95e311b5d9665bdfe (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-nl/ispell-nl-1.00.ebuild,v 1.3 2008/11/01 10:06:02 pva Exp $
inherit multilib
DESCRIPTION="A dutch (spelling 2005) dictionary for ispell"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
HOMEPAGE="http://opentaal.nl"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE=""
KEYWORDS="amd64 x86"
DEPEND="app-text/ispell"
src_compile() {
/usr/bin/buildhash -s "${S}/words-nl.ispell" "${S}/dutch.aff" \
"${S}/dutch.hash" || die "buildhash failed"
}
src_install () {
insinto /usr/$(get_libdir)/ispell
doins dutch.aff dutch.hash || die
}
|