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_p35417.ebuild webkit-gtk-0_p34382.ebuild webkit-gtk-0_p34469.ebuild
Date: Wed, 30 Jul 2008 16:54:49
Message-Id: E1KOEwo-0004G4-Bx@stork.gentoo.org
1 jokey 08/07/30 16:54:46
2
3 Modified: ChangeLog
4 Added: webkit-gtk-0_p35417.ebuild
5 Removed: webkit-gtk-0_p34382.ebuild
6 webkit-gtk-0_p34469.ebuild
7 Log:
8 Version bump, drop hildon use flag as there's no ebuild for that framework yet, bug #229021 for reference. Thanks to Brian Johnson
9 (Portage version: 2.2_rc4/cvs/Linux 2.6.26-gentoo i686)
10
11 Revision Changes Path
12 1.7 net-libs/webkit-gtk/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 6 Jul 2008 12:27:15 -0000 1.6
25 +++ ChangeLog 30 Jul 2008 16:54:45 -0000 1.7
26 @@ -1,6 +1,14 @@
27 # ChangeLog for net-libs/webkit-gtk
28 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.6 2008/07/06 12:27:15 hanno Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.7 2008/07/30 16:54:45 jokey Exp $
31 +
32 +*webkit-gtk-0_p35417 (30 Jul 2008)
33 +
34 + 30 Jul 2008; Markus Ullmann <jokey@g.o>
35 + -webkit-gtk-0_p34382.ebuild, -webkit-gtk-0_p34469.ebuild,
36 + +webkit-gtk-0_p35417.ebuild:
37 + Version bump, drop hildon use flag as there's no ebuild for that framework
38 + yet, bug #229021 for reference. Thanks to Brian Johnson
39
40 *webkit-gtk-0_p35024 (06 Jul 2008)
41
42
43
44
45 1.1 net-libs/webkit-gtk/webkit-gtk-0_p35417.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-0_p35417.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-0_p35417.ebuild?rev=1.1&content-type=text/plain
49
50 Index: webkit-gtk-0_p35417.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-0_p35417.ebuild,v 1.1 2008/07/30 16:54:45 jokey Exp $
55
56 inherit autotools
57
58 MY_P="WebKit-r${PV/0\_p}"
59 DESCRIPTION="Open source web browser engine"
60 HOMEPAGE="http://www.webkit.org/"
61 SRC_URI="http://nightly.webkit.org/files/trunk/src/${MY_P}.tar.bz2"
62
63 LICENSE="LGPL-2 LGPL-2.1 BSD"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="coverage debug gstreamer hildon pango soup sqlite svg xslt"
67
68 RDEPEND=">=x11-libs/gtk+-2.8
69 dev-libs/icu
70 >=net-misc/curl-7.15
71 media-libs/jpeg
72 media-libs/libpng
73 dev-libs/libxml2
74 sqlite? ( >=dev-db/sqlite-3 )
75 gstreamer? (
76 >=media-libs/gst-plugins-base-0.10
77 >=gnome-base/gnome-vfs-2.0
78 )
79 soup? ( >=net-libs/libsoup-2.23.1 )
80 xslt? ( dev-libs/libxslt )
81 pango? ( x11-libs/pango )"
82
83 DEPEND="${RDEPEND}
84 dev-util/gperf
85 dev-util/pkgconfig
86 virtual/perl-Text-Balanced"
87
88 S="${WORKDIR}/${MY_P}"
89
90 src_unpack() {
91 unpack ${A}
92 cd "${S}"
93
94 eautoreconf
95 }
96
97 src_compile() {
98 local myconf
99 use pango && myconf="${myconf} --with-font-backend=pango"
100 use soup && myconf="${myconf} --with-http-backend=soup"
101
102 econf \
103 $(use_enable sqlite database) \
104 $(use_enable sqlite icon-database) \
105 $(use_enable sqlite dom-storage) \
106 $(use_enable sqlite offline-web-applications) \
107 $(use_enable gstreamer video) \
108 $(use_enable svg) \
109 $(use_enable debug) \
110 $(use_enable xslt) \
111 $(use_enable coverage) \
112 ${myconf} \
113 || die "configure failed"
114
115 emake || die "emake failed"
116 }
117
118 src_install() {
119 emake DESTDIR="${D}" install || die "Install failed"
120 }