blob: ddb320b9ca066cb0b84a7da4b5db34295e45e2b7 (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/epiphany-3.6.1.ebuild,v 1.5 2013/02/02 23:13:52 ago Exp $
EAPI="5"
GCONF_DEBUG="yes"
inherit autotools eutils gnome2 pax-utils versionator virtualx
DESCRIPTION="GNOME webbrowser based on Webkit"
HOMEPAGE="http://projects.gnome.org/epiphany/"
# TODO: coverage
LICENSE="GPL-2"
SLOT="0"
IUSE="+introspection +jit +nss test"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="
>=app-crypt/gcr-3.5.5
>=app-text/iso-codes-0.35
>=dev-libs/glib-2.31.2:2
>=dev-libs/libxml2-2.6.12:2
>=dev-libs/libxslt-1.1.7
>=gnome-base/gnome-keyring-2.26.0
>=gnome-base/gsettings-desktop-schemas-0.0.1
>=net-dns/avahi-0.6.22[dbus]
>=net-libs/webkit-gtk-1.9.6:3[jit?,introspection?]
>=net-libs/libsoup-gnome-2.39.6:2.4
>=x11-libs/gtk+-3.5.2:3[introspection?]
>=x11-libs/libnotify-0.5.1:=
gnome-base/gnome-desktop:3=
dev-db/sqlite:3
x11-libs/libX11
x11-themes/gnome-icon-theme
x11-themes/gnome-icon-theme-symbolic
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
nss? ( dev-libs/nss )
"
# paxctl needed for bug #407085
# eautoreconf requires gnome-common-3.5.5
DEPEND="${RDEPEND}
introspection? ( jit? ( >=gnome-base/gnome-common-3.5.5 ) )
>=dev-util/gtk-doc-am-1
>=dev-util/intltool-0.50
sys-apps/paxctl
sys-devel/gettext
virtual/pkgconfig
"
src_prepare() {
# Fix testsuite
epatch "${FILESDIR}/${PN}-3.6.1-test-gwarning.patch"
sed -e '/\/do_migration_invalid/,+1 d' \
-i tests/ephy-migration-test.c || die
# Build-time segfaults under PaX with USE=introspection when building
# against webkit-gtk[introspection,jit]
if use introspection && use jit; then
epatch "${FILESDIR}/${PN}-3.3.90-paxctl-introspection.patch"
cp "${FILESDIR}/paxctl.sh" "${S}/" || die
eautoreconf
fi
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--enable-shared \
--disable-static \
--with-distributor-name=Gentoo \
$(use_enable introspection) \
$(use_enable nss) \
$(use_enable test tests)
}
src_compile() {
# needed to avoid "Command line `dbus-launch ...' exited with non-zero exit status 1"
unset DISPLAY
gnome2_src_compile
}
src_test() {
# FIXME: this should be handled at eclass level
"${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
use jit && pax-mark m $(list-paxables tests/test*) #415801
GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
}
src_install() {
DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README TODO"
gnome2_src_install
use jit && pax-mark m "${ED}usr/bin/epiphany"
}
|