Qt 4.8.1 is the first patch release to the 4.8 series with over 200 functional improvements to the desktop and embedded platforms. The majority of the error corrections, made primarily by Digia, have been on desktop and embedded platforms with a large number of fixes with focus on QtCore, QtGUI and QtNetwork. These fixes benefit all desktop platforms. Qt 4.8.1 also includes Mac App Store support.
31 lines
922 B
Makefile
31 lines
922 B
Makefile
# $NetBSD: Makefile,v 1.25 2012/04/09 09:12:50 adam Exp $
|
|
|
|
.include "../../x11/qt4-libs/Makefile.common"
|
|
|
|
PKGNAME= qt4-tiff-${QTVERSION}
|
|
COMMENT= QT TIFF image format plugin
|
|
|
|
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/imageformats/tiff && env ${MAKE_ENV} ${GMAKE}
|
|
|
|
IMGFMTDIR= ${QTPREFIX}/plugins/imageformats
|
|
|
|
INSTALLATION_DIRS= ${IMGFMTDIR}
|
|
|
|
do-install:
|
|
${LIBTOOL} --mode=install ${INSTALL_LIB} ${WRKSRC}/plugins/imageformats/libqtiff.la \
|
|
${DESTDIR}${IMGFMTDIR}
|
|
|
|
# up to 4.3.2 a builtin libtiff is used
|
|
BUILDLINK_API_DEPENDS.qt4-libs+= qt4-libs>=4.3.2nb1
|
|
.include "../../x11/qt4-libs/buildlink3.mk"
|
|
.include "../../x11/qt4-tools/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|