blob: a28cee393b89175309c157f6440bcf3861d867fc (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Finnish wordform patterns for malaga"
HOMEPAGE="http://voikko.sf.net/"
SRC_URI="mirror://sourceforge/voikko/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc"
DEPEND=">=sci-misc/malaga-7.8
sys-apps/grep
sys-apps/sed"
RDEPEND="sci-misc/malaga"
src_compile() {
emake voikko || die "emake failed"
# emake sukija || die "emake failed"
}
src_install() {
emake DESTDIR="${D}"/usr/lib/suomi-malaga voikko-install || die "install failed"
dodoc ChangeLog README.fi README CONTRIBUTORS || die "docs missing"
}
|