mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
39ced03cc1
According to upstream, this is the last planned Qt4 release. A list of changes since 4.8.6 can be found here: <http://download.qt.io/official_releases/qt/4.8/4.8.7/changes-4.8.7> Porting notes and changes: - Remove several patches that have been upstreamed. - Make Uses/qmake.mk pass the contents of LIBS to the qmake environment. [1] - Repurpose devel/qt4/files/extrapatch-src-corelib-global-qglobal.h now the original patch is part of the release (curiously enough, the original patch was never actually used, as the ?= assignment in r362837 after r362770 was never possible). This works around the way compiler support for C++11 features is detected in Qt 4.8.7: while it originally only uses the compiler to determine if something is supported or not, the initializer lists feature also depends on the C++ standard library being used. It's a problem in FreeBSD 9.x, where USES=compiler:c++0x or USES=compiler:c++11-lang means we will use clang to build a port but use libstdc++ from base (GCC 4.2). The latter obviously does not support initializer lists, and the build fails because Qt tries to include headers that do not exist (<initializer_list>). Since detecting libstdc++'s version is not trivial (we need to include a non-lightweight header like cstdio and then check for __GLIBCXX__), we just enable Q_COMPILER_INITIALIZER_LISTS support only when libc++ is used (there should be no reason for someone to be using clang with GCC 4.8's libstdc++, for example). x11/kdelibs4's FindQt4.cmake had to include a backported change from the upstream FindQt4.cmake in CMake itself to use a C++ compiler to detect flags like Q_WS_X11, otherwise the inclusion of <ciso646> in qglobal.h makes the build fail. This patch contains changes by me, makc@ and alonso@. PR: 202552 [1] PR: 202808 [exp-run] Submitted by: pawel@ [1]
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# Created by: Michael Nottebrock <lofi@kiste>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qt4
|
|
DISTVERSION= ${QT4_VERSION}
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Cross-platform application and UI framework (metaport)
|
|
|
|
USE_QT4= accessible clucene corelib dbus declarative designer \
|
|
graphicssystems-opengl gui help iconengines \
|
|
imageformats inputmethods multimedia network opengl \
|
|
phonon qt3support qtestlib script scripttools sql \
|
|
svg webkit xml xmlpatterns
|
|
USE_QT4:= ${USE_QT4:S/$/_run/}
|
|
USES= metaport
|
|
|
|
OPTIONS_DEFINE= CODECS DOCS EXAMPLES GSTREAMER NLS SQL_PLUGINS TOOLS
|
|
OPTIONS_DEFAULT=${OPTIONS_DEFINE}
|
|
|
|
CODECS_DESC= CN, JP, KR, TW codecs support
|
|
CODECS_USE= codecs-cn codecs-jp codecs-kr codecs-tw
|
|
|
|
DOCS_USE= doc
|
|
|
|
EXAMPLES_USE= demo
|
|
|
|
GSTREAMER_USE= phonon-gst
|
|
|
|
NLS_USE= l10n
|
|
|
|
SQL_PLUGINS_DESC= Install database plugins for QtSql
|
|
SQL_PLUGINS_USE=sql-ibase sql-mysql sql-odbc sql-pgsql sql-sqlite2 \
|
|
sql-sqlite3
|
|
|
|
TOOLS_DESC= Install Qt tools (qmake, moc, etc.)
|
|
TOOLS_USE= assistant help-tools linguist linguisttools makeqpf \
|
|
moc pixeltool \
|
|
porting qdbusviewer qdoc3 qmake qmlviewer qtconfig \
|
|
qvfb rcc uic uic3 xmlpatterns-tool
|
|
|
|
.for opt in ${OPTIONS_DEFINE}
|
|
${opt}_USE:= ${${opt}_USE:S/^/QT4=/:S/$/_run/}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|