mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
43a46c6993
Along with Qt4 the following ports are updated: PyQt4 ports to 4.8.1 devel/py-sip to 4.11.2 devel/qscintilla2 to 2.4.5 PyKDE3 to 3.16.7 PyQt3 tp 3.18.2-snapshot-20091119 New ports added: devel/qt4-declarative devel/py-qt4-declarative x11/qt4-graphicssystems-opengl This release has been contributed by: Thomas Abthorpe (tabthorpe) Max Brazhnikov (makc) Dima Panov (fluffy) Alberto Villa (avilla) We'd like to thank Martin Wilke (miwi) for exp-run.
65 lines
1.4 KiB
Makefile
65 lines
1.4 KiB
Makefile
# New ports collection makefile for: qt4
|
|
# Date created: 2007-01-25
|
|
# Whom: 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)
|
|
|
|
OPTIONS= CODECS "Enable support for CN, JP, KR, TW" off \
|
|
SQL_PLUGINS "Database connectivity plugins for QtSql" off \
|
|
TOOLS "Install Qt tools (qmake, moc, etc.)" off \
|
|
DEMO "Install demonstration and example programs" off
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= accessible assistant clucene corelib \
|
|
dbus declarative designer doc \
|
|
graphicssystems-opengl gui help \
|
|
iconengines imageformats inputmethods \
|
|
multimedia network opengl phonon phonon-gst \
|
|
qdbusviewer qt3support qtconfig qtestlib qvfb \
|
|
script scripttools sql svg webkit \
|
|
xml xmlpatterns xmlpatterns-tool
|
|
|
|
NO_BUILD= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
QT_COMPONENTS+= l10n
|
|
.endif
|
|
|
|
.if defined(WITH_TOOLS)
|
|
QT_COMPONENTS+= help-tools linguist makeqpf moc pixeltool \
|
|
porting qmake rcc uic uic3 qdoc3
|
|
.endif
|
|
|
|
.if defined(WITH_CODECS)
|
|
QT_COMPONENTS+= codecs-cn codecs-jp codecs-kr codecs-tw
|
|
.endif
|
|
|
|
.if defined(WITH_SQL_PLUGINS)
|
|
QT_COMPONENTS+= sql-mysql sql-odbc sql-pgsql sql-sqlite2 sql-sqlite3
|
|
.endif
|
|
|
|
.if defined(WITH_DEMO)
|
|
QT_COMPONENTS+= demo
|
|
.endif
|
|
|
|
do-patch: #empty
|
|
${DO_NADA}
|
|
|
|
do-install: #empty
|
|
${DO_NADA}
|
|
|
|
.include <bsd.port.mk>
|