Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.8.ebuild
Date: Sat, 30 May 2009 20:09:35
Message-Id: E1MAUs1-0003RA-HO@stork.gentoo.org
1 nirbheek 09/05/30 20:09:33
2
3 Modified: ChangeLog
4 Added: webkit-gtk-1.1.8.ebuild
5 Log:
6 Bump to 1.1.8, also fix bug 259061
7 (Portage version: 2.2_rc33/cvs/Linux i686)
8
9 Revision Changes Path
10 1.29 net-libs/webkit-gtk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 24 May 2009 13:56:31 -0000 1.28
23 +++ ChangeLog 30 May 2009 20:09:33 -0000 1.29
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/webkit-gtk
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.28 2009/05/24 13:56:31 nirbheek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.29 2009/05/30 20:09:33 nirbheek Exp $
29 +
30 +*webkit-gtk-1.1.8 (30 May 2009)
31 +
32 + 30 May 2009; Nirbheek Chauhan <nirbheek@g.o>
33 + +webkit-gtk-1.1.8.ebuild:
34 + Bump to 1.1.8, also fix bug 259061
35
36 24 May 2009; Nirbheek Chauhan <nirbheek@g.o>
37 webkit-gtk-1.1.7.ebuild:
38
39
40
41 1.1 net-libs/webkit-gtk/webkit-gtk-1.1.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: webkit-gtk-1.1.8.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.8.ebuild,v 1.1 2009/05/30 20:09:33 nirbheek Exp $
51
52 EAPI="2"
53
54 MY_P="webkit-${PV}"
55 DESCRIPTION="Open source web browser engine"
56 HOMEPAGE="http://www.webkitgtk.org/"
57 SRC_URI="http://www.webkitgtk.org/${MY_P}.tar.gz"
58
59 LICENSE="LGPL-2 LGPL-2.1 BSD"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
62 # geoclue
63 IUSE="coverage debug doc gnome-keyring +gstreamer pango"
64
65 # use sqlite, svg by default
66 RDEPEND="
67 dev-libs/libxml2
68 dev-libs/libxslt
69 media-libs/jpeg
70 media-libs/libpng
71 x11-libs/cairo
72
73 >=x11-libs/gtk+-2.10
74 >=dev-libs/icu-3.8.1-r1
75 >=net-libs/libsoup-2.25.90
76 >=dev-db/sqlite-3
77 >=app-text/enchant-0.22
78
79 gnome-keyring? ( >=gnome-base/gnome-keyring-2.26.0 )
80 gstreamer? (
81 media-libs/gstreamer:0.10
82 media-libs/gst-plugins-base:0.10 )
83 pango? ( x11-libs/pango )
84 !pango? (
85 media-libs/freetype:2
86 media-libs/fontconfig )
87 "
88 DEPEND="${RDEPEND}
89 sys-devel/gettext
90 dev-util/gperf
91 dev-util/pkgconfig
92 doc? ( >=dev-util/gtk-doc-1.10 )"
93
94 S="${WORKDIR}/${MY_P}"
95
96 src_prepare() {
97 sed -ie 's/-O2//g' "${S}"/configure* || die "sed failed"
98 }
99
100 src_configure() {
101 # It doesn't compile on alpha without this in LDFLAGS
102 use alpha && append-ldflags "-Wl,--no-relax"
103
104 local myconf
105
106 myconf="--enable-svg-filters
107 $(use_enable gnome-keyring gnomekeyring)
108 $(use_enable gstreamer video)
109 $(use_enable debug)
110 $(use_enable coverage)"
111
112 # USE-flag controlled font backend because upstream default is freetype
113 # Remove USE-flag once font-backend becomes pango upstream
114 if use pango; then
115 ewarn "You have enabled the incomplete pango backend"
116 ewarn "Please file any and all bugs *upstream*"
117 myconf="${myconf} --with-font-backend=pango"
118 else
119 myconf="${myconf} --with-font-backend=freetype"
120 fi
121
122 econf ${myconf}
123 }
124
125 src_install() {
126 emake DESTDIR="${D}" install || die "Install failed"
127 dodoc WebKit/gtk/{NEWS,ChangeLog} || die "dodoc failed"
128 }