blob: 84539e515bf89afe64bf41b012ba88bbb74ab18b (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/epiphany-2.28.2.ebuild,v 1.4 2010/05/29 17:40:46 armin76 Exp $
EAPI="2"
inherit gnome2
DESCRIPTION="GNOME webbrowser based on Webkit"
HOMEPAGE="http://www.gnome.org/projects/epiphany/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
IUSE="avahi doc networkmanager +nss test"
# introspection
# TODO: add seed support
# not mature enough
# introspection? ( >=dev-libs/gobject-introspection-0.6.2 )
RDEPEND=">=dev-libs/glib-2.19.7
>=x11-libs/gtk+-2.16
>=dev-libs/libxml2-2.6.12
>=dev-libs/libxslt-1.1.7
>=x11-libs/startup-notification-0.5
>=x11-libs/libnotify-0.4
>=dev-libs/dbus-glib-0.71
>=gnome-base/gconf-2
>=app-text/iso-codes-0.35
>=net-libs/webkit-gtk-1.1.15
>=net-libs/libsoup-gnome-2.27.91
>=gnome-base/gnome-keyring-2.26.0
x11-libs/libICE
x11-libs/libSM
nss? ( dev-libs/nss )
avahi? ( >=net-dns/avahi-0.6.22 )
networkmanager? ( net-misc/networkmanager )
x11-themes/gnome-icon-theme"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=dev-util/pkgconfig-0.9
>=dev-util/intltool-0.40
>=app-text/gnome-doc-utils-0.3.2
gnome-base/gnome-common
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README TODO"
pkg_setup() {
G2CONF="${G2CONF}
--disable-introspection
--disable-scrollkeeper
--disable-maintainer-mode
--with-distributor-name=Gentoo
$(use_enable avahi zeroconf)
$(use_enable networkmanager network-manager)
$(use_enable nss)
$(use_enable test tests)"
# $(use_enable introspection)
}
|