mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
c2dd4d2e2d
The area51 repository features commits by Alonso Schaich, avilla, fluffy, jhale, makc and rakuco. Common changes: - Trim Makefile header - Convert to new option framework - Add/improve desktop entries - Remove upstreamed patches Mk/bsd.qt.mk: - Set QMAKESPEC at late stage (to fix potential problem if USE_GCC is used) [1] devel/qmake: - Fix crash due to off-by one error [2] multimedia/qt4-phonon*: - Deprecate in favour of multimedia/phonon* www/qt4-webkit: - Make dependence on GStreamer optional [3] devel/qtcreator: - Enable qml-designer in devel/qtcreator (requires privite Qt headers) [4] Reported by: avg via irc [1] Submitted by: avg via maillist [2] PR: ports/175644 [3] Submitted by: danfe [3] PR: ports/169809 [4] Reported by: tcb <tcberner at gmail.com> [4]
67 lines
1.4 KiB
Makefile
67 lines
1.4 KiB
Makefile
# Created by: Michael Nottebrock <lofi@kiste>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qt4
|
|
DISTVERSION= ${QT4_VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Multiplatform C++ application framework (metaport)
|
|
|
|
USE_QT4= accessible clucene corelib dbus declarative designer \
|
|
graphicssystems-opengl gui help iconengines \
|
|
imageformats inputmethods multimedia network opengl \
|
|
phonon phonon-gst qt3support qtestlib script \
|
|
scripttools sql svg webkit xml xmlpatterns
|
|
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= CODECS DOCS EXAMPLES NLS SQL_PLUGINS TOOLS
|
|
OPTIONS_DEFAULT=${OPTIONS_DEFINE}
|
|
|
|
CODECS_DESC= CN, JP, KR, TW codecs support
|
|
SQL_PLUGINS_DESC= Install database plugins for QtSql
|
|
TOOLS_DESC= Install Qt tools (qmake, moc, etc.)
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCODECS}
|
|
USE_QT4+= codecs-cn codecs-jp codecs-kr codecs-tw
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
USE_QT4+= doc
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
USE_QT4+= demo
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USE_QT4+= l10n
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQL_PLUGINS}
|
|
USE_QT4+= sql-ibase sql-mysql sql-odbc sql-pgsql sql-sqlite2 \
|
|
sql-sqlite3
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTOOLS}
|
|
USE_QT4+= assistant help-tools linguist makeqpf moc pixeltool \
|
|
porting qdbusviewer qdoc3 qmake qmlviewer qtconfig \
|
|
qvfb rcc uic uic3 xmlpatterns-tool
|
|
.endif
|
|
|
|
USE_QT4:= ${USE_QT4:C/$/_run/}
|
|
|
|
do-patch:
|
|
@${DO_NADA}
|
|
|
|
do-install:
|
|
@${DO_NADA}
|
|
|
|
.include <bsd.port.mk>
|