blob: f52394ea576a59c30bd90572c86b05fe469ae13e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $FreeBSD$
PORTNAME= qt5
DISTVERSION= ${QT5_VERSION}
CATEGORIES= devel
MASTER_SITES= # empty
DISTFILES= # empty
EXTRACT_ONLY= # empty
MAINTAINER= kde@FreeBSD.org
COMMENT= Cross-platform application and UI framework (metaport)
USE_QT5= clucene concurrent core dbus declarative designer \
graphicaleffects gui help imageformats multimedia \
network opengl printsupport qml quick script \
scripttools sql svg testlib webkit widgets xml \
xmlpatterns
NO_BUILD= yes
NO_MTREE= yes
OPTIONS_DEFINE= SQL_PLUGINS TOOLS
OPTIONS_DEFAULT=${OPTIONS_DEFINE}
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 buildtools linguist linguisttools \
pixeltool qdbus qdbusviewer qev qmake
.for opt in ${OPTIONS_DEFINE}
${opt}_USE:= ${${opt}_USE:S/^/QT5=/}
.endfor
.include <bsd.port.options.mk>
USE_QT5:= ${USE_QT5:S/$/_run/}
do-install:
@${DO_NADA}
.include <bsd.port.mk>
|