summaryrefslogtreecommitdiff
blob: c983e459f45bb26ce74532dea6fde4bcc6ad26c1 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

MY_P=${PN}-voikko-${PV}

DESCRIPTION="Tmispell is interface between ispell OO.o Finnish spellcheckers.
(This is a voikko patched version)"
SRC_URI="http://www.hunspell-fi.org/files/${MY_P}.tar.gz"
HOMEPAGE="http://www.hut.fi/~ptvirtan/programs/tmispell.html"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"

DEPEND=">=app-text/ispell-3.2.06-r7
	!app-dicts/ispell-fi
	app-text/voikko
	>=dev-libs/glib-2.0.0
	nls? ( sys-devel/gettext )
	sys-apps/coreutils
	sys-apps/sed
	sys-devel/bison
	sys-apps/miscfiles
	>=sys-libs/ncurses-5.2"
RDEPEND=">=app-text/ispell-3.2.06-r7
	app-text/voikko
	>=dev-libs/glib-2.0.0
	nls? ( sys-devel/gettext )"

S="${WORKDIR}/${MY_P}"

src_compile() {
	econf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "install failed"
	dodoc AUTHORS ChangeLog LUEMINUT NEWS NEWS.fi README tmispell.conf.example
	if [[ -d "${ROOT}/usr/lib/ispell" ]] ; then
		dodir /usr/lib/ispell
		touch "${D}/usr/lib/ispell/suomi.hash" "${D}/usr/lib/ispell/suomi.aff"
		touch "${D}/usr/lib/ispell/finnish.hash" "${D}/usr/lib/ispell/finnish.aff"
	elif [[ -d "${ROOT}/usr/share/ispell" ]] ; then
		dodir /usr/share/ispell
		touch "${D}/usr/share/ispell/suomi.hash" "${D}/usr/share/ispell/suomi.aff"
		touch "${D}/usr/share/ispell/finnish.hash" "${D}/usr/share/ispell/suomi.aff"
	fi
	insinto /etc/
	newins "${FILESDIR}/tmispell.conf.gentoo" tmispell.conf
	sed -i "s:/usr/bin:${ROOT}/usr/bin:g" "${D}/etc/tmispell.conf"
	dosym /usr/bin/tmispell /usr/bin/ispell
}