diff options
author | Ben de Groot <yngwin@gentoo.org> | 2010-04-09 22:26:07 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2010-04-09 22:26:07 +0000 |
commit | d29ce6bb3cd8f6ff59a844c3434b896858c25bc9 (patch) | |
tree | c3bf4bdc8ef179371fdb456e48fd5341dfd4cf80 /x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild | |
parent | Mask python3 for stable portage until python-3.x is marked stable. (diff) | |
download | gentoo-2-d29ce6bb3cd8f6ff59a844c3434b896858c25bc9.tar.gz gentoo-2-d29ce6bb3cd8f6ff59a844c3434b896858c25bc9.tar.bz2 gentoo-2-d29ce6bb3cd8f6ff59a844c3434b896858c25bc9.zip |
Adding security patches for bug #314193. Make dbus optional, fixes bug #292337.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild')
-rw-r--r-- | x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild b/x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild new file mode 100644 index 000000000000..3859ca2a9f29 --- /dev/null +++ b/x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.6.2-r1.ebuild,v 1.1 2010/04/09 22:26:07 yngwin Exp $ + +EAPI="2" +inherit qt4-build + +DESCRIPTION="The Webkit module for the Qt toolkit" +SLOT="4" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="dbus kde" + +DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,ssl] + ~x11-libs/qt-gui-${PV}[aqua=,dbus?,debug=] + ~x11-libs/qt-xmlpatterns-${PV}[aqua=,debug=] + dbus? ( ~x11-libs/qt-dbus-${PV}[aqua=,debug=] ) + !kde? ( || ( ~x11-libs/qt-phonon-${PV}:${SLOT}[aqua=,dbus=,debug=] + media-sound/phonon[aqua=] ) ) + kde? ( || ( media-sound/phonon[aqua=] ~x11-libs/qt-phonon-${PV}:${SLOT}[aqua=,dbus=,debug] ) )" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-4.6.0-solaris-strnstr.patch + "${FILESDIR}"/${PN}-4.5.3-cve-2010-0046-css-format-mem-corruption.patch + "${FILESDIR}"/${PN}-4.5.3-cve-2010-0049-freed-line-boxes-ltr-rtl.patch + "${FILESDIR}"/${PN}-4.5.3-cve-2010-0050-crash-misnested-style-tags.patch + "${FILESDIR}"/${PN}-4.5.3-cve-2010-0052-destroyed-input-cached.patch + "${FILESDIR}"/${P}-cve-2010-0051-lax-css-parsing-cross-domain-theft.patch + "${FILESDIR}"/${P}-cve-2010-0054-image-element-pointer-name-getter.patch +) + +pkg_setup() { + QT4_TARGET_DIRECTORIES=" + src/3rdparty/webkit/WebCore + tools/designer/src/plugins/qwebview" + QT4_EXTRACT_DIRECTORIES=" + include/ + src/ + tools/" + QCONFIG_ADD="webkit" + QCONFIG_DEFINE="QT_WEBKIT" + + qt4-build_pkg_setup +} + +src_prepare() { + [[ $(tc-arch) == "ppc64" ]] && append-flags -mminimal-toc #241900 + qt4-build_src_prepare +} + +src_configure() { + myconf="${myconf} -webkit $(qt_use dbus qdbus)" + qt4-build_src_configure +} |