Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-webkit: qt-webkit-4.6.0-r1.ebuild ChangeLog qt-webkit-4.6.0.ebuild
Date: Fri, 25 Dec 2009 15:47:03
Message-Id: E1NOCNX-0004Md-Ia@stork.gentoo.org
1 abcd 09/12/25 15:46:59
2
3 Modified: ChangeLog
4 Added: qt-webkit-4.6.0-r1.ebuild
5 Removed: qt-webkit-4.6.0.ebuild
6 Log:
7 Add prefix support, revbump due to otherwise unresolvable USE deps
8 (Portage version: -svn/cvs/Linux i686)
9
10 Revision Changes Path
11 1.74 x11-libs/qt-webkit/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/ChangeLog?rev=1.74&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/ChangeLog?rev=1.74&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/ChangeLog?r1=1.73&r2=1.74
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v
20 retrieving revision 1.73
21 retrieving revision 1.74
22 diff -u -r1.73 -r1.74
23 --- ChangeLog 18 Dec 2009 15:25:11 -0000 1.73
24 +++ ChangeLog 25 Dec 2009 15:46:59 -0000 1.74
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/qt-webkit
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v 1.73 2009/12/18 15:25:11 yngwin Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v 1.74 2009/12/25 15:46:59 abcd Exp $
30 +
31 +*qt-webkit-4.6.0-r1 (25 Dec 2009)
32 +
33 + 25 Dec 2009; Jonathan Callen <abcd@g.o> -qt-webkit-4.6.0.ebuild,
34 + +qt-webkit-4.6.0-r1.ebuild, +files/qt-webkit-4.6.0-solaris-jsvalue.patch,
35 + +files/qt-webkit-4.6.0-solaris-strnstr.patch:
36 + Add prefix support, revbump due to otherwise unresolvable USE deps
37
38 18 Dec 2009; Ben de Groot <yngwin@g.o> qt-webkit-4.6.0.ebuild:
39 Add dependency on qt-xmlpatterns, bug 297291.
40
41
42
43 1.1 x11-libs/qt-webkit/qt-webkit-4.6.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.6.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.6.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qt-webkit-4.6.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.6.0-r1.ebuild,v 1.1 2009/12/25 15:46:59 abcd Exp $
53
54 EAPI="2"
55 inherit qt4-build
56
57 DESCRIPTION="The Webkit module for the Qt toolkit"
58 SLOT="4"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
60 IUSE="kde"
61
62 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,ssl]
63 ~x11-libs/qt-dbus-${PV}[aqua=,debug=]
64 ~x11-libs/qt-gui-${PV}[aqua=,dbus,debug=]
65 ~x11-libs/qt-xmlpatterns-${PV}[aqua=,debug=]
66 !kde? ( || ( ~x11-libs/qt-phonon-${PV}:${SLOT}[aqua=,dbus,debug=]
67 media-sound/phonon[aqua=] ) )
68 kde? ( media-sound/phonon[aqua=] )"
69 RDEPEND="${DEPEND}"
70
71 QT4_TARGET_DIRECTORIES="src/3rdparty/webkit/WebCore tools/designer/src/plugins/qwebview"
72 QT4_EXTRACT_DIRECTORIES="
73 include/
74 src/
75 tools/"
76 QCONFIG_ADD="webkit"
77 QCONFIG_DEFINE="QT_WEBKIT"
78
79 src_prepare() {
80 [[ $(tc-arch) == "ppc64" ]] && append-flags -mminimal-toc #241900
81 if use sparc; then
82 epatch "${FILESDIR}"/sparc-qt-webkit-sigbus.patch
83 fi
84 epatch "${FILESDIR}"/${P}-solaris-jsvalue.patch
85 epatch "${FILESDIR}"/${P}-solaris-strnstr.patch
86 qt4-build_src_prepare
87 }
88
89 src_configure() {
90 myconf="${myconf} -webkit"
91 qt4-build_src_configure
92 }