blob: 6038df8590e2d469f98eb9de480afaac5d63fdda (
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
34
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-de/ispell-de-20071211.ebuild,v 1.2 2008/11/01 11:56:19 pva Exp $
inherit multilib
MY_P=igerman98-${PV}
DESCRIPTION="German and Swiss dictionaries for ispell"
HOMEPAGE="http://j3e.de/ispell/igerman98/"
SRC_URI="http://j3e.de/ispell/igerman98/dict/${MY_P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
KEYWORDS="~ppc ~x86 ~sparc ~alpha ~mips ~hppa ~amd64"
DEPEND="app-text/ispell"
S=${WORKDIR}/${MY_P}
src_compile() {
for lang in de_DE de_AT de_CH; do
make ispell/${lang}{.aff,.hash}
done
}
src_install () {
insinto /usr/$(get_libdir)/ispell
for lang in de_DE de_AT de_CH; do
doins ispell/${lang}{.aff,.hash} || die
done
dodoc Documentation/*
}
|