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