diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-25 21:03:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-10-25 21:03:11 +0000 |
commit | 4a2f8420beb19d53d28843eabb083c96280256f5 (patch) | |
tree | de487a76ee0360f984b39199257eef80726f8bc2 /x11-libs | |
parent | Cleanup source and respect user settings #243996. (diff) | |
download | gentoo-2-4a2f8420beb19d53d28843eabb083c96280256f5.tar.gz gentoo-2-4a2f8420beb19d53d28843eabb083c96280256f5.tar.bz2 gentoo-2-4a2f8420beb19d53d28843eabb083c96280256f5.zip |
Add -mminimal-toc to workaround ppc64 compiler issues #241900.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/qt-webkit/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/qt-webkit/qt-webkit-4.4.2.ebuild | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/x11-libs/qt-webkit/ChangeLog b/x11-libs/qt-webkit/ChangeLog index 84c0420c1e2d..063f2b16d2c7 100644 --- a/x11-libs/qt-webkit/ChangeLog +++ b/x11-libs/qt-webkit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/qt-webkit # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v 1.13 2008/09/19 17:58:23 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/ChangeLog,v 1.14 2008/10/25 21:03:11 vapier Exp $ + + 25 Oct 2008; Mike Frysinger <vapier@gentoo.org> qt-webkit-4.4.2.ebuild: + Add -mminimal-toc to workaround ppc64 compiler issues #241900. 19 Sep 2008; Ben de Groot <yngwin@gentoo.org> qt-webkit-4.4.2.ebuild: Add check for qt-core built with use ssl, to fix bug 236781 diff --git a/x11-libs/qt-webkit/qt-webkit-4.4.2.ebuild b/x11-libs/qt-webkit/qt-webkit-4.4.2.ebuild index 4432c0f7e72f..5b73fdfb9a84 100644 --- a/x11-libs/qt-webkit/qt-webkit-4.4.2.ebuild +++ b/x11-libs/qt-webkit/qt-webkit-4.4.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2008 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.4.2.ebuild,v 1.2 2008/09/19 17:58:23 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-webkit/qt-webkit-4.4.2.ebuild,v 1.3 2008/10/25 21:03:11 vapier Exp $ EAPI="1" -inherit qt4-build +inherit qt4-build flag-o-matic toolchain-funcs DESCRIPTION="The Webkit module for the Qt toolkit." HOMEPAGE="http://www.trolltech.com/" @@ -27,6 +27,12 @@ QCONFIG_DEFINE="QT_WEBKIT" QT4_BUILT_WITH_USE_CHECK="${QT4_BUILT_WITH_USE_CHECK} ~x11-libs/qt-core-${PV} ssl" +src_unpack() { + [[ $(tc-arch) == "ppc64" ]] && append-flags -mminimal-toc #241900 + + qt4-build_src_unpack +} + src_compile() { local myconf myconf="${myconf} -webkit" |