2007-02-05 21:56:24 +01:00
|
|
|
# New ports collection makefile for: qt4
|
|
|
|
# Date created: 2007-01-25
|
|
|
|
# Whom: Michael Nottebrock <lofi@kiste>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= qt4
|
2007-07-16 12:12:15 +02:00
|
|
|
PORTVERSION= ${QT4_VERSION}
|
2010-03-28 08:47:48 +02:00
|
|
|
PORTREVISION= 2
|
2007-02-05 21:56:24 +01:00
|
|
|
CATEGORIES= devel
|
2010-01-21 22:13:21 +01:00
|
|
|
MASTER_SITES= # empty
|
|
|
|
DISTFILES= # none
|
|
|
|
EXTRACT_ONLY= # empty
|
2007-02-05 21:56:24 +01:00
|
|
|
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
|
|
COMMENT= Multiplatform C++ application framework (metaport)
|
|
|
|
|
2010-01-21 22:13:21 +01:00
|
|
|
OPTIONS= CODECS "Enable support for CN, JP, KR, TW" off \
|
|
|
|
PHONON "Phonon support" off \
|
2008-08-05 13:44:35 +02:00
|
|
|
QTCONFIG "Qt configuration (depends on PHONON)" off \
|
2010-01-21 22:13:21 +01:00
|
|
|
SQL_PLUGINS "Database connectivity plugins for QtSql" off \
|
|
|
|
TOOLS "Install Qt tools (qmake, moc, etc.)" off \
|
|
|
|
DEMO "Install demonstration and example programs" off
|
2007-02-05 21:56:24 +01:00
|
|
|
|
2008-08-05 13:44:35 +02:00
|
|
|
USE_QT_VER= 4
|
|
|
|
QT_COMPONENTS= accessible assistant assistant-adp assistantclient \
|
2010-01-21 22:13:21 +01:00
|
|
|
clucene corelib dbus designer doc help gui iconengines \
|
|
|
|
imageformats inputmethods multimedia network opengl \
|
|
|
|
qdbusviewer qt3support qtestlib qvfb script scripttools \
|
|
|
|
sql svg webkit xml xmlpatterns xmlpatterns-tool
|
2007-02-05 21:56:24 +01:00
|
|
|
|
|
|
|
NO_BUILD= yes
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
2008-08-05 13:44:35 +02:00
|
|
|
|
2009-01-13 21:34:49 +01:00
|
|
|
.if !defined(WITHOUT_NLS)
|
2010-01-21 22:13:21 +01:00
|
|
|
QT_COMPONENTS+= l10n
|
2009-01-13 21:34:49 +01:00
|
|
|
.endif
|
|
|
|
|
2008-08-05 13:44:35 +02:00
|
|
|
.if defined(WITH_TOOLS)
|
|
|
|
QT_COMPONENTS+= help-tools linguist makeqpf moc pixeltool \
|
2009-08-29 09:34:17 +02:00
|
|
|
porting qmake rcc uic uic3 qdoc3
|
2008-08-05 13:44:35 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_QTCONFIG)
|
|
|
|
QT_COMPONENTS+= qtconfig
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_PHONON)
|
|
|
|
QT_COMPONENTS+= phonon phonon-gst
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_CODECS)
|
|
|
|
QT_COMPONENTS+= codecs-cn codecs-jp codecs-kr codecs-tw
|
|
|
|
.endif
|
2007-02-05 21:56:24 +01:00
|
|
|
|
|
|
|
.if defined(WITH_SQL_PLUGINS)
|
2010-01-21 22:13:21 +01:00
|
|
|
QT_COMPONENTS+= sql-mysql sql-odbc sql-pgsql sql-sqlite2 sql-sqlite3
|
2007-02-05 21:56:24 +01:00
|
|
|
.endif
|
|
|
|
|
2010-01-21 22:13:21 +01:00
|
|
|
.if defined(WITH_DEMO)
|
|
|
|
QT_COMPONENTS+= demo
|
|
|
|
.endif
|
|
|
|
|
|
|
|
do-patch: #empty
|
|
|
|
${DO_NADA}
|
|
|
|
|
2007-02-05 21:56:24 +01:00
|
|
|
do-install: #empty
|
|
|
|
${DO_NADA}
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|