diff options
author | Ben de Groot <yngwin@gentoo.org> | 2009-01-12 23:47:16 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2009-01-12 23:47:16 +0000 |
commit | 04e4247f10a31b3b406974d39224ae0e72636a86 (patch) | |
tree | 728e1542b8dee492e590bb148c9f5064f72800dd /eclass | |
parent | Whitespace fixes (diff) | |
download | historical-04e4247f10a31b3b406974d39224ae0e72636a86.tar.gz historical-04e4247f10a31b3b406974d39224ae0e72636a86.tar.bz2 historical-04e4247f10a31b3b406974d39224ae0e72636a86.zip |
Adding post-install warning about Qt4 plugins needing rebuilding
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 5fc652c66a26..35a0c9550a8b 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 2007-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.16 2008/09/18 22:07:50 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.17 2009/01/12 23:47:16 yngwin Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -303,6 +303,20 @@ qt4-build_pkg_postrm() { qt4-build_pkg_postinst() { generate_qconfigs + echo + ewarn "After a rebuild or upgrade of Qt, it can happen that Qt plugins (such as Qt" + ewarn "and KDE styles and widgets) can no longer be loaded. In this situation you" + ewarn "should recompile the packages providing these plugins. Also, make sure you" + ewarn "compile the Qt packages, and the packages that depend on it, with the same" + ewarn "GCC version and the same USE flag settings (especially the debug flag)." + ewarn + ewarn "Packages that typically need to be recompiled are kdelibs from KDE4, any" + ewarn "additional KDE4/Qt4 styles, qscintilla and PyQt4. Before filing a bug report," + ewarn "make sure all your Qt4 packages are up-to-date and built with the same" + ewarn "configuration." + ewarn + ewarn "For more information, see http://doc.trolltech.com/4.4/plugins-howto.html" + echo } skip_qmake_build_patch() { |