mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
28 lines
833 B
Makefile
28 lines
833 B
Makefile
PORTNAME?= ${DB:tl}
|
|
DISTVERSION?= ${QT5_VERSION}
|
|
CATEGORIES?= databases
|
|
PKGNAMEPREFIX?= qt5-sqldrivers-
|
|
|
|
MAINTAINER?= kde@FreeBSD.org
|
|
COMMENT?= Qt ${DB_DESC} database plugin
|
|
|
|
USES+= compiler:c++11-lang qmake:no_env qt-dist:5,base
|
|
USE_QT+= core sql qmake_build buildtools_build
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=-no-gui -no-xcb
|
|
|
|
BUILD_WRKSRC?= ${WRKSRC}/src/plugins/sqldrivers/${DB:tl}
|
|
INSTALL_WRKSRC?=${BUILD_WRKSRC}
|
|
|
|
PLIST_FILES+= ${QT_CMAKEDIR_REL}/Qt5Sql/Qt5Sql_Q${DB}DriverPlugin.cmake \
|
|
${QT_PLUGINDIR_REL}/sqldrivers/libqsql${DB:tl:C/^sql//}.so \
|
|
%%DEBUG%%${QT_PLUGINDIR_REL}/sqldrivers/libqsql${DB:tl:C/^sql//}.so.debug
|
|
|
|
post-configure:
|
|
.for d in src/plugins/sqldrivers/${DB:tl}
|
|
${MKDIR} ${WRKSRC}/${d}
|
|
cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|