blob: e84c83fbe11717e4d2aa6c200fef02fde94477c3 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.9.ebuild,v 1.10 2008/07/26 10:59:17 armin76 Exp $
inherit eutils multilib autotools
DESCRIPTION="Hunspell spell checker - an improved replacement for myspell in OOo."
SUBREL=""
SRC_URI="mirror://sourceforge/${PN}/${P}${SUBREL}.tar.gz"
HOMEPAGE="http://hunspell.sourceforge.net/"
SLOT="0"
LICENSE="MPL-1.1 GPL-2 LGPL-2.1"
IUSE="ncurses readline"
KEYWORDS="alpha amd64 ~hppa ia64 ppc ~ppc64 sparc x86"
DEPEND="readline? ( sys-libs/readline )
ncurses? ( sys-libs/ncurses )
sys-devel/gettext"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's:tail +:tail -n +:' "${S}"/tests/test.sh ||\
die "Failed to fix-up tail for POSIX compliance"
# Upstream package creates executables 'example', 'munch'
# and 'unmunch' which are too generic to be placed in
# /usr/bin - this patch prefixes them with 'hunspell-'.
# It modifies a Makefile.am file, hence autoreconf.
epatch "${FILESDIR}"/hunspell-1.1.5-renameexes.patch
eautoreconf -f
}
src_compile() {
# I wanted to put the include files in /usr/include/hunspell
# but this means the openoffice build won't find them.
econf \
$(use_with readline readline) \
$(use_with ncurses ui) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO license.hunspell || die "installing docs failed"
# hunspell is derived from myspell
dodoc AUTHORS.myspell README.myspell license.myspell || die "installing myspell docs failed"
# Upstream install has a few problems - rather than try to figure out
# what's broken in the build system, just fix things up manually.
# These are included by hunspell.hxx, but aren't installed by the install
# script.
insinto /usr/include/hunspell/
doins license.myspell license.hunspell config.h
# These are in the wrong place.
mv "${D}"/usr/include/munch.h "${D}"/usr/include/hunspell/munch.h
mv "${D}"/usr/include/unmunch.h "${D}"/usr/include/hunspell/unmunch.h
# Libraries include the version in their name, so make a sensible
# default symlink. They should probably be libhunspell.so.1.1 etc.
dodir /usr/$(get_libdir)
cd "${D}"/usr/$(get_libdir)
ln -s libhunspell-1.1.so.0.0.0 libhunspell.so
}
pkg_postinst() {
elog "To use this package you will also need a dictionary."
elog "Hunspell uses myspell format dictionaries; find them"
elog "in the app-dicts category as myspell-<LANG>."
}
|