blob: 1e8741f50f2b6204806a0a95ffeaf1e3b2615ce9 (
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
35
36
37
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Achime Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ispell-de/ispell-de-20011124.ebuild,v 1.1 2002/04/17 18:46:11 seemant Exp $
MY_P=igerman98-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A german dictionary for ispell"
SRC_URI="http://lisa.goe.net/~bjacke/igerman98/dict/${MY_P}.tar.bz2"
HOMEPAGE="http://lisa.goe.net/~bjacke/igerman98/dict"
DEPEND="app-text/ispell"
src_compile() {
make || die
make \
SQ=`pwd`/bin/sq.pl \
UNSQ=`pwd`/bin/unsq.pl \
german.hash swiss || die
}
src_install () {
make \
DESTDIR=${D} \
install swiss-install || die
insinto /usr/lib/ispell
doins german.aff german.hash
dodoc Documentation/*
}
|