diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2017-02-18 19:48:05 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2017-02-18 19:48:05 +0000 |
commit | f3c180c3431372077934f7658922b8a244419bdf (patch) | |
tree | 4d04227f02c7fda007ad74be01e1393168277b0b /devel/qmake5/files/patch-mkspecs__features__qt_functions.prf | |
parent | Upgrade from 2.2 to 2.3. (diff) |
Update Qt5 to 5.7.1, and unify the Qt4 and Qt5 ports some more
* Update Qt5 to 5.7.1
* Move Qt4 binaries to lib/qt4/bin
* Move Qt5 libraries to lib/qt5/lib
By moving the libraries we should finally be able to get rid of the inplace
upgrade bug (see ports bugs 194088, 195105 and 198720): when Qt5's libraries
were lying in /usr/local/lib, which would often get added by pkgconfig to the
linker paths via dependencies, the already installed libraries were linked
against, instead of the ones that were being built. This forced us to make
sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the
linker flags. With this change this should no longer be the case.
* Rename some ports to match the rest (foo-qtX -> qtX-foo)
* Depend on new port misc/qtchooser [see UPDATING & CHANGES]
There are several new Qt5 ports which all have been created by Marie Loise Nolden
<nolden@kde.org>. Thanks again.
PR: 216797
Exp-Run by: antoine
Reviewed by: rakuco, mat, groot_kde.org
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D9213
Diffstat (limited to 'devel/qmake5/files/patch-mkspecs__features__qt_functions.prf')
-rw-r--r-- | devel/qmake5/files/patch-mkspecs__features__qt_functions.prf | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf b/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf deleted file mode 100644 index 7a1529de8699..000000000000 --- a/devel/qmake5/files/patch-mkspecs__features__qt_functions.prf +++ /dev/null @@ -1,16 +0,0 @@ -To setup a tool, qtPrepareTool() doesn't fallback anymore (compared to Qt4) to -the build directory (/get paths), but relies instead on QT_TOOL.* variables set -before in the configure stage, which our split configuration doesn't generate. -With this patch, it's back to the previous behavior (which, by the way, has no -effect on anything but Qt builds). ---- ./mkspecs/features/qt_functions.prf.orig 2013-10-22 01:49:28.000000000 -0700 -+++ ./mkspecs/features/qt_functions.prf 2013-11-04 07:50:44.835414343 -0800 -@@ -193,7 +193,7 @@ - defineTest(qtPrepareTool) { - cmd = $$eval(QT_TOOL.$${2}.binary) - isEmpty(cmd) { -- cmd = $$[QT_HOST_BINS]/$$2 -+ cmd = $$[QT_HOST_BINS/get]/$$2 - exists($${cmd}.pl) { - cmd = perl -w $$system_path($${cmd}.pl) - } else: contains(QMAKE_HOST.os, Windows) { |