summaryrefslogtreecommitdiff
path: root/graphics/lprof-devel
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2017-02-18 19:48:05 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2017-02-18 19:48:05 +0000
commitf3c180c3431372077934f7658922b8a244419bdf (patch)
tree4d04227f02c7fda007ad74be01e1393168277b0b /graphics/lprof-devel
parentUpgrade 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
Notes
Notes: svn path=/head/; revision=434380
Diffstat (limited to 'graphics/lprof-devel')
-rw-r--r--graphics/lprof-devel/Makefile5
-rw-r--r--graphics/lprof-devel/files/patch-src-lprofqt-config.cpp11
-rw-r--r--graphics/lprof-devel/files/patch-src_lprofqt_config.cpp20
3 files changed, 23 insertions, 13 deletions
diff --git a/graphics/lprof-devel/Makefile b/graphics/lprof-devel/Makefile
index 0941d0f7971d..b977def6a534 100644
--- a/graphics/lprof-devel/Makefile
+++ b/graphics/lprof-devel/Makefile
@@ -21,8 +21,6 @@ USE_XORG= x11 xext sm ice xxf86vm
USE_QT4= corelib gui qt3support svg assistantclient \
linguisttools_build qmake_build moc_build uic_build rcc_build
-CMAKE_ARGS= -DQTTRANS_LRELEASE_EXECUTABLE="${LOCALBASE}/bin/lrelease-qt4"
-
WRKSRC= ${WRKDIR}/${PORTNAME}
PORTDOCS= *
@@ -34,6 +32,9 @@ post-patch:
@${REINPLACE_CMD} -e '/asm\/types.h/ d' ${WRKSRC}/src/argyll/spectro/hidio.c
@${REINPLACE_CMD} -e '/DESTINATION/ s|data/|share/${PORTNAME}/data/|' \
${WRKSRC}/data/CMakeLists.txt ${WRKSRC}/src/CMakeLists.txt
+# Patch in the correct prefix of the Qt binaries into the sources.
+ @${REINPLACE_CMD} -e 's|%%QT_ARCHDIR%%|${QT_ARCHDIR}|g' \
+ ${WRKSRC}/src/lprofqt/config.cpp
post-install:
${INSTALL_DATA} ${WRKSRC}/data/icons/lprof.png ${STAGEDIR}${PREFIX}/share/pixmaps
diff --git a/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp b/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp
deleted file mode 100644
index 211328c71e0a..000000000000
--- a/graphics/lprof-devel/files/patch-src-lprofqt-config.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./src/lprofqt/config.cpp.orig 2008-03-09 01:31:11.000000000 +0300
-+++ ./src/lprofqt/config.cpp 2013-09-14 04:36:26.160226093 +0400
-@@ -206,7 +206,7 @@
- const QString assist = QString::fromLocal8Bit("assistant.app/Contents/MacOS/assistant");
- # else
- QChar pathSep = QChar::fromLatin1(':');
-- const QString assist = QString::fromLocal8Bit("assistant");
-+ const QString assist = QString::fromLocal8Bit("assistant-qt4");
- # endif /* __WIN32__ */
-
- QString Path = QString::fromLocal8Bit(getenv("PATH"));
diff --git a/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp b/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp
new file mode 100644
index 000000000000..7142449caa50
--- /dev/null
+++ b/graphics/lprof-devel/files/patch-src_lprofqt_config.cpp
@@ -0,0 +1,20 @@
+The function get_QTDIR reads the environment variable 'QTDIR'. Which is not set
+most of the time. So define a sensible fallback value, and return that one in
+this case.
+
+This should help the program find the assistant binary, without going over
+qtchooser (and requiring to set QT_SELECT).
+
+--- src/lprofqt/config.cpp.orig 2017-02-04 19:46:56 UTC
++++ src/lprofqt/config.cpp
+@@ -72,7 +72,9 @@ QString get_QTDIR()
+ {
+ // qDebug(QString::fromLocal8Bit("get_home_dir"));
+ const char* qtdir= "QTDIR";
+- return QString::fromLocal8Bit(getenv(qtdir));
++ const QString fallback = "%%QT_ARCHDIR%%";
++ QString env_qtdir = QString::fromLocal8Bit(getenv(qtdir));
++ return (env_qtdir.isEmpty() ? fallback : env_qtdir);
+ }
+
+ void init_env()