blob: ac954b3bf72eeeceaaaf2b5954d2705cfed9974a (
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
76
77
78
79
80
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/epiphany-1.8.4.1-r1.ebuild,v 1.3 2006/07/04 13:14:40 allanonjl Exp $
inherit eutils gnome2 autotools
DESCRIPTION="GNOME webbrowser based on the mozilla rendering engine"
HOMEPAGE="http://www.gnome.org/projects/epiphany/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc sparc x86"
IUSE="dbus doc firefox python"
# Note that there is no libgnomeprint dep, while it is
# specified in configure.in . This could in some rare
# situations break portage dep resolution.
#
# Marinus <foser@gentoo.org> 14-9-2005
RDEPEND=">=dev-libs/glib-2.8
>=x11-libs/gtk+-2.8.3
>=dev-libs/libxml2-2.6.12
>=dev-libs/libxslt-1.1.7
>=gnome-base/libglade-2.3.1
>=gnome-base/gnome-vfs-2.9.2
>=gnome-base/libgnomeui-2.6
>=gnome-base/gnome-desktop-2.9.91
>=x11-libs/startup-notification-0.5
>=gnome-base/libgnomeprintui-2.4
>=gnome-base/libbonobo-2
>=gnome-base/orbit-2
>=gnome-base/gconf-2
>=app-text/iso-codes-0.35
sparc? ( >=www-client/mozilla-firefox-1.0.5 )
ia64? ( >=www-client/mozilla-firefox-1.0.5 )
!sparc? ( !ia64? (
!firefox? ( www-client/seamonkey )
) )
firefox? ( >=www-client/mozilla-firefox-1.0.5 )
dbus? ( >=sys-apps/dbus-0.34 )
python? (
>=dev-lang/python-2.3
>=dev-python/pygtk-2.7.1
>=dev-python/gnome-python-2.6 )
x11-themes/gnome-icon-theme
>=gnome-base/gnome-common-2.8.0"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=dev-util/pkgconfig-0.9
>=dev-util/intltool-0.29
>=app-text/gnome-doc-utils-0.3.2
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS COPYING.README ChangeLog* HACKING MAINTAINERS NEWS README TODO"
MAKEOPTS="${MAKEOPTS} -j1"
pkg_setup() {
G2CONF="--disable-scrollkeeper \
$(use_enable dbus) \
$(use_enable python)"
if use firefox || use sparc || use ia64; then
G2CONF="${G2CONF} --with-mozilla=firefox"
else
G2CONF="${G2CONF} --with-mozilla=seamonkey"
fi
}
src_unpack() {
gnome2_src_unpack
# include fix
epatch ${FILESDIR}/${PN}-1.8.4.1-seamonkey.patch
AT_M4DIR="m4" eautoreconf
}
|