[kde-freebsd] [SVN Commit] area51/QT

2014-07-24 Thread Raphael Kubo da Costa
SVN commit 10197 by rakuco:

QT: Merge r362251 from ports.


r362251 | tijl | 2014-07-19 14:09:00 +0300 (Sat, 19 Jul 2014) | 4 lines

Remove libtool .la files from all Qt ports

Approvedy by:  kde (makc)





 M  +2 -1  Mk/bsd.qt.mk  
 M  +0 -1  databases/qt4-sql/pkg-plist  
 M  +0 -1  databases/qt5-sql/pkg-plist  
 M  +0 -1  devel/dbus-qt4/pkg-plist  
 M  +0 -1  devel/dbus-qt5/pkg-plist  
 M  +0 -1  devel/qt4-corelib/pkg-plist  
 M  +0 -1  devel/qt4-help/pkg-plist  
 M  +0 -1  devel/qt4-qt3support/pkg-plist  
 M  +0 -1  devel/qt4-script/pkg-plist  
 M  +0 -1  devel/qt4-scripttools/pkg-plist  
 M  +0 -1  devel/qt4-testlib/pkg-plist  
 AMdevel/qt4/files/extrapatch-libtool  
 M  +0 -1  devel/qt5-buildtools/pkg-plist  
 M  +0 -1  devel/qt5-concurrent/pkg-plist  
 M  +0 -1  devel/qt5-core/pkg-plist  
 M  +0 -2  devel/qt5-designer/pkg-plist  
 M  +0 -1  devel/qt5-help/pkg-plist  
 M  +0 -1  devel/qt5-qmldevtools/pkg-plist  
 M  +0 -1  devel/qt5-script/pkg-plist  
 M  +0 -1  devel/qt5-scripttools/pkg-plist  
 M  +0 -1  devel/qt5-testlib/pkg-plist  
 M  +0 -1  devel/qt5-uitools/pkg-plist  
 AMdevel/qt5/files/extrapatch-libtool  
 M  +0 -1  graphics/qt4-opengl/pkg-plist  
 M  +0 -1  graphics/qt4-svg/pkg-plist  
 M  +0 -1  graphics/qt5-opengl/pkg-plist  
 M  +0 -1  graphics/qt5-svg/pkg-plist  
 M  +0 -1  lang/qt5-qml/pkg-plist  
 M  +0 -1  multimedia/qt4-multimedia/pkg-plist  
 M  +0 -3  multimedia/qt5-multimedia/pkg-plist  
 M  +0 -1  net/qt4-network/pkg-plist  
 M  +0 -1  net/qt5-network/pkg-plist  
 M  +0 -1  print/qt5-printsupport/pkg-plist  
 M  +0 -1  textproc/clucene-qt4/pkg-plist  
 M  +0 -1  textproc/clucene-qt5/pkg-plist  
 M  +0 -1  textproc/qt4-xml/pkg-plist  
 M  +0 -1  textproc/qt4-xmlpatterns/pkg-plist  
 M  +0 -1  textproc/qt5-xml/pkg-plist  
 M  +0 -1  textproc/qt5-xmlpatterns/pkg-plist  
 M  +1 -2  www/webkit-qt4/Makefile  
 M  +0 -1  www/webkit-qt4/pkg-plist  
 M  +0 -2  www/webkit-qt5/pkg-plist  
 M  +0 -1  x11-toolkits/qt4-declarative/pkg-plist  
 M  +0 -1  x11-toolkits/qt4-gui/pkg-plist  
 M  +0 -1  x11-toolkits/qt5-declarative/pkg-plist  
 M  +0 -2  x11-toolkits/qt5-gui/pkg-plist  
 M  +0 -3  x11-toolkits/qt5-quick/pkg-plist  
 M  +0 -1  x11-toolkits/qt5-widgets/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2014-07-24 Thread Raphael Kubo da Costa
SVN commit 10198 by rakuco:

QT: Merge r362770 from ports.


r362770 | rakuco | 2014-07-24 11:37:55 +0300 (Thu, 24 Jul 2014) | 19 lines

Backport my patch to make Qt correctly detect clang's support for C++11 
features.

So far, Qt4 was basing its check for compiler support for C++11 features
(auto types, lambdas, rvalue references and others) on the values of
__GNUC__ and __GNUC_MINOR__. This works for GCC, but not for clang, whose
__GNUC_MINOR__ is stuck at 2. In practice, this meant Qt programs built
using clang were never able to use C++11 features which are conditionally
available in classes such as QList. This patch makes the detection more in
line with what Qt5 does (checks for GCC and clang are in separate sections
and are done differently).

I couldn't find cases of this negatively affecting any port so far, but it
is useful to have -- Akonadi's unit tests require C++11 support in Qt, for
example.

Only qt4-corelibs's PORTREVISION was bumped to make the new qglobal.h be
installed. Checks for these C++11 features are only present in headers of
other Qt4 ports, so there's no need to rebuild them.





 M  +2 -0  Mk/bsd.qt.mk  
 AMdevel/qt4/files/extrapatch-src-corelib-global-qglobal.h  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT/Mk

2014-07-24 Thread Raphael Kubo da Costa
SVN commit 10200 by rakuco:

QT: Merge r362837 from ports.


r362837 | rakuco | 2014-07-24 21:52:53 +0300 (Thu, 24 Jul 2014) | 4 lines

qt4: Do not apply the patch from r362770 if EXTRA_PATCHES is unset.

This unbreaks qmake4 and qt4-doc.






 M  +2 -1  bsd.qt.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/QT

2014-07-24 Thread Raphael Kubo da Costa
SVN commit 10199 by rakuco:

QT: Merge r362834 from ports.


r362834 | rakuco | 2014-07-24 20:35:09 +0300 (Thu, 24 Jul 2014) | 5 lines

Unbreak Qt4 ports that do not extract src/corelib after r362770.

The easiest solution is to just make them extract it (it's not a big
directory anyway). This can be reverted once 4.8.7 is released.





 M  +1 -0  databases/qt4-ibase-plugin/Makefile  
 M  +1 -0  databases/qt4-mysql-plugin/Makefile  
 M  +1 -0  databases/qt4-odbc-plugin/Makefile  
 M  +1 -0  databases/qt4-pgsql-plugin/Makefile  
 M  +1 -0  databases/qt4-sqlite-plugin/Makefile  
 M  +1 -0  databases/qt4-sqlite3-plugin/Makefile  
 M  +2 -1  misc/qt4-l10n/Makefile  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information