diff options
author | adam <adam> | 2014-12-30 17:23:45 +0000 |
---|---|---|
committer | adam <adam> | 2014-12-30 17:23:45 +0000 |
commit | 32c6ec341f7e5a423ba55140ea48b1314d92af9b (patch) | |
tree | fe37fdfbcecb0cdaa4254431105485590106ce7b /x11/qt5 | |
parent | 85104735d3278667b91543cf271e6c3d4fb873f4 (diff) | |
download | pkgsrc-32c6ec341f7e5a423ba55140ea48b1314d92af9b.tar.gz |
Changes 5.4.0:
Chromium-based browser engine Qt WebEngine
Qt WebView for showing web content using the native OS web engine on mobile
Full support on Qt for Windows Store Apps, including WinRT and Windows Phone 8.1
Improved Compliance with iOS 8 and Xcode 6
Improved OS X 10.10 ‘Yosemite’ support and new Mac AppStore signing
High-DPI support for Windows and OS X
Dynamic GL switching between OpenGL and ANGLE on Windows
Mix OpenGL and Qt Quick with QOpenGLWidget
Android Look-and-Feel for Qt Quick Controls
Qt Creator 3.3 with new Qt Quick Designer
Bluetooth now supports BlueZ5 with tech preview on Bluetooth LE
Diffstat (limited to 'x11/qt5')
-rw-r--r-- | x11/qt5/Makefile | 12 | ||||
-rw-r--r-- | x11/qt5/Makefile.common | 11 |
2 files changed, 15 insertions, 8 deletions
diff --git a/x11/qt5/Makefile b/x11/qt5/Makefile index be63d7f7bd3..7907699bcc1 100644 --- a/x11/qt5/Makefile +++ b/x11/qt5/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.4 2014/04/23 07:05:31 adam Exp $ +# $NetBSD: Makefile,v 1.5 2014/12/30 17:23:45 adam Exp $ DISTNAME= qt5-${QTVERSION} CATEGORIES= x11 MASTER_SITES= # none -COMMENT= "meta-package" forversion 5 of the QT GUI C++ toolkit +COMMENT= "meta-package" for version 5 of the QT GUI C++ toolkit META_PACKAGE= yes @@ -30,10 +30,14 @@ DEPENDS+= qt5-qtsvg-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qtsvg DEPENDS+= qt5-qttools-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qttools DEPENDS+= qt5-qttranslations-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qttranslations DEPENDS+= qt5-qtwebkit-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qtwebkit -DEPENDS+= qt5-qtx11extras-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qtx11extras DEPENDS+= qt5-qtxmlpatterns-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qtxmlpatterns DEPENDS+= qt5-sqlite3-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-sqlite3 #DEPENDS+= qt5-ibus-${QTVERSION}{,nb[0-9]*}:../../inputmethod/qt5-ibus -DEPENDS+= qt5-uim-[0-9]*:../../inputmethod/qt5-uim +#DEPENDS+= qt5-uim-[0-9]*:../../inputmethod/qt5-uim +.if ${OPSYS} == "Darwin" +DEPENDS+= qt5-qtmacextras-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qtmacextras +.else +DEPENDS+= qt5-qtx11extras-${QTVERSION}{,nb[0-9]*}:../../x11/qt5-qtx11extras +.endif .include "../../mk/bsd.pkg.mk" diff --git a/x11/qt5/Makefile.common b/x11/qt5/Makefile.common index 6aa2fd31e9d..16377d66f9d 100644 --- a/x11/qt5/Makefile.common +++ b/x11/qt5/Makefile.common @@ -1,15 +1,18 @@ -# $NetBSD: Makefile.common,v 1.3 2014/04/23 07:05:31 adam Exp $ +# $NetBSD: Makefile.common,v 1.4 2014/12/30 17:23:45 adam Exp $ # used by x11/qt5-qtbase/Makefile.common # used by inputmethod/qt5-uim/Makefile -QTDISTVER= 5.2.1 -QTVERSION= ${QTDISTVER:S/-rc/rc/} +QTVERSION= 5.4.0 .include "../../mk/bsd.prefs.mk" +CATEGORIES= x11 +MASTER_SITES= http://download.qt-project.org/official_releases/qt/${QTVERSION:R}/${QTVERSION}/submodules/ +EXTRACT_SUFX= .tar.xz +EXTRACT_USING= bsdtar + MAINTAINER?= ryoon@NetBSD.org HOMEPAGE= http://qt-project.org/ - LICENSE= gnu-lgpl-v2.1 AND gnu-gpl-v3 QTPREFIX= ${LOCALBASE}/qt5 |