blob: 66b2bf0bffc6dc97d7b9e25e5ab7d99911e1addf (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/gnome-spell-1.0.8-r3.ebuild,v 1.6 2010/08/18 21:10:53 maekke Exp $
inherit eutils gnome2 autotools
DESCRIPTION="Gnome spellchecking component"
HOMEPAGE="http://www.gnome.org/"
SRC_URI="${SRC_URI}
mirror://gentoo/${P}-isocodes-r1.patch.bz2"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="alpha amd64 arm ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=gnome-base/libgnome-2
>=gnome-base/libgnomeui-2
>=gnome-base/libglade-2
>=gnome-base/libbonobo-2
>=gnome-base/libbonoboui-2
>=gnome-base/orbit-2
>=x11-libs/gtk+-2.4
>=app-text/enchant-1.2.5
app-text/iso-codes"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext"
DOCS="AUTHORS ChangeLog NEWS README"
G2CONF="${G2CONF} --disable-static"
src_unpack() {
gnome2_src_unpack
# note that the combo and enchant patch are intertwined
# the enchant patch changes libgnomeui dep to libgnome
# made possible by the combo patch
# Marinus Schraal <foser@gentoo.org> - 02 Apr 2006
# Use enchant backend instead of aspell
epatch "${FILESDIR}/${PF}-enchant.patch"
# replace gtkentry with gtkcombo widget
epatch "${FILESDIR}/${PN}-1.0.7-combo.patch"
epatch "${FILESDIR}/${PN}-1.0.7-remove_gnome_h.patch"
# Use iso-codes instead of hardcoded locales list, bug #256564
epatch "${WORKDIR}/${P}-isocodes-r1.patch"
# Fix test error caused by previous patch.
echo "gnome-spell/spell-checker-language.c" >> po/POTFILES.in
intltoolize --force || die "intltoolize failed"
eautoreconf
}
|