mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
ecda38b0a5
Proudly brought to you by the KDE on FreeBSD team, with commits by makc@, Schaich Alonso and yours truly. Besides the tons of upstream fixes, we have mkspecs for GCC 4.9 and clang33 (from ports), staging support in the Makefiles and dependency fixes related to pkg-config. Many thanks to the people who helped test the ports using our area51 repository, and also to the people who provided patches and bug reports via GNATS! PR: ports/180615 ports/181921 ports/182049
68 lines
1.4 KiB
Makefile
68 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.)
|
|
|
|
NO_MTREE= yes
|
|
.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>
|