diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:27:44 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:27:44 +0000 |
commit | 5ef060f67202647386714423710b24997d7d21c0 (patch) | |
tree | aba71fc2f36f04119a9b1ff0d1d98e37d1c3f45b /x11-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-5ef060f67202647386714423710b24997d7d21c0.tar.gz gentoo-2-5ef060f67202647386714423710b24997d7d21c0.tar.bz2 gentoo-2-5ef060f67202647386714423710b24997d7d21c0.zip |
Version bump.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/qt-webkit/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-webkit/qt-webkit-4.8.2.ebuild | 87 |
2 files changed, 93 insertions, 1 deletions
diff --git a/x11-libs/qt-webkit/ChangeLog b/x11-libs/qt-webkit/ChangeLog index cc7ef1f9d22e..f74da782e5bb 100644 --- a/x11-libs/qt-webkit/ChangeLog +++ b/x11-libs/qt-webkit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-webkit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v 1.151 2012/05/20 13:35:18 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v 1.152 2012/05/22 15:27:44 pesa Exp $ + +*qt-webkit-4.8.2 (22 May 2012) + + 22 May 2012; Davide Pesavento <pesa@gentoo.org> +qt-webkit-4.8.2.ebuild: + Version bump. 20 May 2012; Davide Pesavento <pesa@gentoo.org> metadata.xml: Remove "jit" USE flag description from metadata, bug 416611. diff --git a/x11-libs/qt-webkit/qt-webkit-4.8.2.ebuild b/x11-libs/qt-webkit/qt-webkit-4.8.2.ebuild new file mode 100644 index 000000000000..be75f1029615 --- /dev/null +++ b/x11-libs/qt-webkit/qt-webkit-4.8.2.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2012 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.8.2.ebuild,v 1.1 2012/05/22 15:27:44 pesa Exp $ + +EAPI=4 + +inherit qt4-build flag-o-matic + +DESCRIPTION="The WebKit module for the Qt toolkit" +SLOT="4" +if [[ ${QT4_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +fi +IUSE="+gstreamer icu +jit" + +# For the libxml2[icu] blocker see bugs 407315 and 411091 +DEPEND=" + dev-db/sqlite:3 + x11-libs/libX11 + x11-libs/libXrender + ~x11-libs/qt-core-${PV}[aqua=,c++0x=,debug=,ssl,qpa=] + ~x11-libs/qt-gui-${PV}[aqua=,c++0x=,debug=,qpa=] + ~x11-libs/qt-xmlpatterns-${PV}[aqua=,c++0x=,debug=,qpa=] + gstreamer? ( + dev-libs/glib:2 + media-libs/gstreamer:0.10 + media-libs/gst-plugins-base:0.10 + !icu? ( !!dev-libs/libxml2[icu] ) + ) + icu? ( dev-libs/icu ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-4.8.0-c++0x-fix.patch" + "${FILESDIR}/${PN}-4.8.1+glib-2.31.patch" +) + +pkg_setup() { + QT4_TARGET_DIRECTORIES=" + src/3rdparty/webkit/Source/JavaScriptCore + src/3rdparty/webkit/Source/WebCore + src/3rdparty/webkit/Source/WebKit/qt + tools/designer/src/plugins/qwebview" + + QT4_EXTRACT_DIRECTORIES=" + include + src + tools" + + QCONFIG_ADD="webkit" + QCONFIG_DEFINE="QT_WEBKIT" + + qt4-build_pkg_setup +} + +src_prepare() { + use c++0x && append-cxxflags -fpermissive + + # Fix version number in generated pkgconfig file, bug 406443 + sed -i -e 's/^isEmpty(QT_BUILD_TREE)://' \ + src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro || die + + # Remove -Werror from CXXFLAGS + sed -i -e '/QMAKE_CXXFLAGS\s*+=/ s:-Werror::g' \ + src/3rdparty/webkit/Source/WebKit.pri || die + + if use icu; then + sed -i -e '/CONFIG\s*+=\s*text_breaking_with_icu/ s:^#\s*::' \ + src/3rdparty/webkit/Source/JavaScriptCore/JavaScriptCore.pri || die + fi + + qt4-build_src_prepare +} + +src_configure() { + myconf+=" + -webkit + -system-sqlite + $(qt_use icu) + $(qt_use jit javascript-jit) + $(use gstreamer || echo -DENABLE_VIDEO=0)" + + qt4-build_src_configure +} |