blob: eaea634e84e114f66efa4a5dc2e9b2376b40e11d (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.7 2009/09/28 14:34:06 fauli Exp $
EAPI="2"
inherit autotools eutils virtualx
MY_P="webkit-${PV}"
DESCRIPTION="Open source web browser engine"
HOMEPAGE="http://www.webkitgtk.org/"
SRC_URI="http://www.webkitgtk.org/${MY_P}.tar.gz"
LICENSE="LGPL-2 LGPL-2.1 BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
# geoclue
IUSE="coverage debug doc gnome-keyring +gstreamer pango"
# use sqlite, svg by default
RDEPEND="
dev-libs/libxml2
dev-libs/libxslt
media-libs/jpeg
media-libs/libpng
x11-libs/cairo
>=x11-libs/gtk+-2.10
>=gnome-base/gail-1.8
>=dev-libs/icu-3.8.1-r1
>=net-libs/libsoup-2.25.90
>=dev-db/sqlite-3
>=app-text/enchant-0.22
gnome-keyring? ( >=gnome-base/gnome-keyring-2.22.3-r2 )
gstreamer? (
media-libs/gstreamer:0.10
>=media-libs/gst-plugins-base-0.10.11:0.10 )
pango? ( x11-libs/pango )
!pango? (
media-libs/freetype:2
media-libs/fontconfig )
"
DEPEND="${RDEPEND}
sys-devel/flex
sys-devel/gettext
dev-util/gperf
dev-util/pkgconfig
dev-util/gtk-doc-am
doc? ( >=dev-util/gtk-doc-1.10 )"
S="${WORKDIR}/${MY_P}"
src_prepare() {
# Make it libtool-1 compatible
rm -v autotools/lt* autotools/libtool.m4 || die "removing libtool macros failed"
# Don't force -O2
sed -i 's/-O2//g' "${S}"/configure.ac || die "sed failed"
# Reduce the gnome-keyring requirement from 2.26 to 2.22.3:
# Upstream requires so new version only because earlier versions didn't install headers
# that can be included from C++ code. We now have fixes to the headers in our
# gnome-keyring-2.22.3-r2, so we can work with just that if we reduce req in configure.
epatch "${FILESDIR}/${P}-reduce-gnome-keyring-req.patch"
# Prevent maintainer mode from being triggered during make
AT_M4DIR=autotools eautoreconf
}
src_configure() {
# It doesn't compile on alpha without this in LDFLAGS
use alpha && append-ldflags "-Wl,--no-relax"
local myconf
myconf="
$(use_enable gnome-keyring gnomekeyring)
$(use_enable gstreamer video)
$(use_enable debug)
$(use_enable coverage)
--enable-filters
"
# USE-flag controlled font backend because upstream default is freetype
# Remove USE-flag once font-backend becomes pango upstream
if use pango; then
ewarn "You have enabled the incomplete pango backend"
ewarn "Please file any and all bugs *upstream*"
myconf="${myconf} --with-font-backend=pango"
else
myconf="${myconf} --with-font-backend=freetype"
fi
econf ${myconf}
}
src_test() {
Xemake -j1 check
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc WebKit/gtk/{NEWS,ChangeLog} || die "dodoc failed"
}
pkg_postinst() {
if use gstreamer; then
ewarn
ewarn "If ${PN} doesn't play some video format, please check your"
ewarn "USE flags on media-plugins/gst-plugins-meta"
fi
}
|