blob: f11a48be13e5277ecfa2cc802f7c70f30165df35 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_PN="lib${P}"
DESCRIPTION="Free Finnish spellchecking and hyphenation library"
HOMEPAGE="http://www.lemi.fi/voikko/"
SRC_URI="http://www.hunspell-fi.org/files/${MY_PN}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="sci-misc/malaga
sci-misc/suomi-malaga
virtual/libiconv"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${MY_PN}
src_compile() {
econf --with-dictionary-path=${ROOT}/usr/lib/suomi-malaga/ \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README TODO
}
|