f6d1daed1b
This is a maintenance release which contains bug-fixes based on feedback and contributions since the Qt 4.7.1 release back in November. It also marks the official release of Qt Quick. Qt Quick is a new feature within Qt that makes it easy to create light-weight apps and UIs. It contains the new QML language, the Qt Declarative module, and new tooling in Qt Creator to easily build apps. PkgSrc: now builds with Clang.
30 lines
847 B
Makefile
30 lines
847 B
Makefile
# $NetBSD: Makefile,v 1.16 2011/03/03 05:50:05 adam Exp $
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../x11/qt4-libs/Makefile.common"
|
|
|
|
PKGNAME= qt4-mysql-${QTVERSION}
|
|
COMMENT= QT mysql driver
|
|
|
|
CONFIGURE_ARGS+= -I${QTDIR}/include
|
|
CONFIGURE_ARGS+= -L${QTDIR}/lib
|
|
|
|
BUILD_QT4= yes
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/src/tools/bootstrap && env ${MAKE_ENV} ${GMAKE}
|
|
cd ${WRKSRC}/src/tools/moc && env ${MAKE_ENV} ${GMAKE}
|
|
cd ${WRKSRC}/src/plugins/sqldrivers/mysql && env ${MAKE_ENV} ${GMAKE}
|
|
|
|
SQLDRVDIR= ${QTPREFIX}/plugins/sqldrivers
|
|
INSTALLATION_DIRS= ${SQLDRVDIR}
|
|
|
|
do-install:
|
|
${LIBTOOL} --mode=install ${INSTALL_LIB} ${WRKSRC}/plugins/sqldrivers/libqsqlmysql.la \
|
|
${DESTDIR}${SQLDRVDIR}
|
|
|
|
.include "../../x11/qt4-libs/buildlink3.mk"
|
|
.include "../../x11/qt4-tools/buildlink3.mk"
|
|
.include "../../mk/mysql.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|