blob: f4269978c93d9c6cfca3db1fd582059b44a147d0 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-2.6.3.ebuild,v 1.6 2007/09/13 13:24:21 uberlord Exp $
inherit eutils gnome2 versionator autotools
MY_P="lib${P}"
MY_PN="lib${PN}"
MY_MAJ_PV="$(get_version_component_range 1-2)"
DESCRIPTION="a Gtk+ based HTML rendering library"
HOMEPAGE="http://www.gnome.org/"
SRC_URI="mirror://gnome/sources/${MY_PN}/${MY_MAJ_PV}/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1 GPL-2"
SLOT="2"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="accessibility test"
# gnome-vfs is only needed to run testgtkhtml (1/3 tests)
RDEPEND=">=x11-libs/gtk+-2
>=dev-libs/libxml2-2.4.16
test? ( >=gnome-base/gnome-vfs-2 )
accessibility? ( >=gnome-base/gail-1.3 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12.0"
G2CONF="${G2CONF} $(use_enable accessibility)"
DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README TODO docs/IDEAS"
MAKEOPTS="${MAKEOPTS} -j1"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
if use alpha; then
epatch ${FILESDIR}/${MY_PN}-2.2.0-alpha.patch || die
fi
# We need a full autoreconf on FreeBSD at least to fix libtool errors.
eautoreconf
}
|