Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-0_p42162.ebuild
Date: Sun, 05 Apr 2009 15:33:08
Message-Id: E1LqULJ-0001ID-P9@stork.gentoo.org
1 jokey 09/04/05 15:33:05
2
3 Modified: ChangeLog
4 Added: webkit-gtk-0_p42162.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 net-libs/webkit-gtk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 20 Mar 2009 23:26:44 -0000 1.22
23 +++ ChangeLog 5 Apr 2009 15:33:05 -0000 1.23
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.22 2009/03/20 23:26:44 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.23 2009/04/05 15:33:05 jokey Exp $
29 +
30 +*webkit-gtk-0_p42162 (05 Apr 2009)
31 +
32 + 05 Apr 2009; Markus Ullmann <jokey@g.o>
33 + +webkit-gtk-0_p42162.ebuild:
34 + Version bump
35
36 20 Mar 2009; Markus Meier <maekke@g.o> webkit-gtk-0_p40220.ebuild:
37 amd64/x86 stable, bug #246816
38
39
40
41 1.1 net-libs/webkit-gtk/webkit-gtk-0_p42162.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-0_p42162.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-0_p42162.ebuild?rev=1.1&content-type=text/plain
45
46 Index: webkit-gtk-0_p42162.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-0_p42162.ebuild,v 1.1 2009/04/05 15:33:05 jokey Exp $
51
52 EAPI=2
53
54 inherit autotools flag-o-matic
55
56 MY_P="WebKit-r${PV/0\_p}"
57 DESCRIPTION="Open source web browser engine"
58 HOMEPAGE="http://www.webkit.org/"
59 SRC_URI="http://nightly.webkit.org/files/trunk/src/${MY_P}.tar.bz2"
60
61 LICENSE="LGPL-2 LGPL-2.1 BSD"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 -ia64 ~ppc -sparc ~x86"
64 IUSE="coverage debug gstreamer pango soup +sqlite svg xslt"
65
66 RDEPEND=">=x11-libs/gtk+-2.8
67 >=dev-libs/icu-3.8.1-r1
68 >=net-misc/curl-7.15
69 media-libs/jpeg
70 media-libs/libpng
71 dev-libs/libxml2
72 sqlite? ( >=dev-db/sqlite-3 )
73 gstreamer? (
74 >=media-libs/gst-plugins-base-0.10
75 )
76 soup? ( >=net-libs/libsoup-2.26 )
77 xslt? ( dev-libs/libxslt )
78 pango? ( x11-libs/pango )"
79
80 DEPEND="${RDEPEND}
81 >=sys-devel/flex-2.5.33
82 dev-util/gperf
83 dev-util/pkgconfig
84 virtual/perl-Text-Balanced
85 dev-util/gtk-doc"
86
87 S="${WORKDIR}/${MY_P}"
88
89 src_prepare() {
90 AT_M4DIR=./autotools
91 gtkdocize
92 eautoreconf
93 }
94
95 src_configure() {
96 # It doesn't compile on alpha without this LDFLAGS
97 use alpha && append-ldflags "-Wl,--no-relax"
98
99 local myconf
100 use pango && myconf="${myconf} --with-font-backend=pango"
101 use soup && myconf="${myconf} --with-http-backend=soup"
102
103 econf \
104 $(use_enable sqlite database) \
105 $(use_enable sqlite icon-database) \
106 $(use_enable sqlite dom-storage) \
107 $(use_enable sqlite offline-web-applications) \
108 $(use_enable gstreamer video) \
109 $(use_enable svg) \
110 $(use_enable debug) \
111 $(use_enable xslt) \
112 $(use_enable coverage) \
113 $(use_enable doc gtk-doc) \
114 ${myconf} \
115 || die "configure failed"
116 }
117
118 src_install() {
119 emake DESTDIR="${D}" install || die "Install failed"
120 }