blob: 8e5792a1cdc488f1f233ce0594b8a80223e6a58e (
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
|
# Copyright 1999-2004 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.5-r1.ebuild,v 1.11 2004/08/21 15:42:57 foser Exp $
inherit gnome.org gnome2 libtool eutils
DESCRIPTION="Gnome spellchecking component"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~x86 ~sparc ppc ~alpha ~hppa amd64"
IUSE=""
RDEPEND=">=gnome-base/libgnomeui-2.2
>=gnome-base/libbonoboui-2.0
>=gnome-base/libglade-2.0
>=gnome-base/libbonobo-2.0
>=gnome-base/orbit-2.0
>=app-text/enchant-1"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext
>=dev-lang/perl-5.6.0
>=sys-devel/autoconf-2.58"
DOCS="AUTHORS ChangeLog NEWS README"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-enchant.patch
WANT_AUTOCONF=2.5 autoconf || die "autoconf failed"
WANT_AUTOMAKE=1.4 automake || die "automake failed"
}
|