1a4c9fc349
It provides many improvements over Qt 5.2.0 as well as packages Qt Creator 3.0.1. As a patch release, it does not add new features and remains binary compatible with Qt 5.2.0.
25 lines
650 B
Makefile
25 lines
650 B
Makefile
# $NetBSD: Makefile,v 1.6 2014/04/23 07:05:32 adam Exp $
|
|
|
|
PKGNAME= qt5-qtserialport-${QTVERSION}
|
|
COMMENT= Qt5 module for Serial Port
|
|
|
|
.include "../../x11/qt5-qtbase/Makefile.common"
|
|
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ARGS+= -I${QTDIR}/include -L${QTDIR}/lib
|
|
|
|
BUILD_DIRS= qtserialport
|
|
MAKE_ENV+= QTDIR=${QTDIR}
|
|
|
|
INSTALL_ENV+= INSTALL_ROOT=${DESTDIR}
|
|
INSTALLATION_DIRS+= lib/pkgconfig
|
|
|
|
post-install:
|
|
.for i in Qt5SerialPort.pc
|
|
${RM} -f ${DESTDIR}${PREFIX}/lib/pkgconfig/${i} && \
|
|
cd ${DESTDIR}${PREFIX}/lib/pkgconfig && \
|
|
ln -s ${QTPREFIX}/lib/pkgconfig/${i} ${i}
|
|
.endfor
|
|
|
|
.include "../../x11/qt5-qtbase/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|