blob: 6c9871c5feb293aa87dd9868233969ab686222a9 (
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
|
# Copyright 1999-2006 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.7.ebuild,v 1.1 2006/04/02 14:09:57 foser Exp $
inherit libtool eutils gnome2
DESCRIPTION="Gnome spellchecking component"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="static debug"
RDEPEND=">=gnome-base/libgnome-1.112.1
>=gnome-base/libbonoboui-1.112.1
>=gnome-base/libglade-1.99.9
>=gnome-base/libbonobo-2.0
>=gnome-base/orbit-2
>=x11-libs/gtk+-2.4
>=app-text/enchant-1.2.4"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext
>=sys-devel/autoconf-2.59"
DOCS="AUTHORS ChangeLog NEWS README"
pkg_setup() {
G2CONF="${G2CONF} $(use_enable static)"
}
src_unpack() {
unpack ${A}
cd ${S}
# 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}/${P}-enchant.patch
# replace gtkentry with gtkcombo widget
epatch ${FILESDIR}/${P}-combo.patch
epatch ${FILESDIR}/${P}-remove_gnome_h.patch
use debug && epatch ${FILESDIR}/${P}-debug.patch
einfo "Runnig aclocal"
aclocal || die "aclocal failed"
einfo "Running autoconf"
WANT_AUTOCONF=2.5 autoconf || die "autoconf failed"
einfo "Running automake"
WANT_AUTOMAKE=1.9 automake || die "automake failed"
einfo "Running libtoolize"
libtoolize --copy --force
}
|