summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMirko Vogt2016-08-27 21:13:32 +0000
committerMirko Vogt2016-08-29 18:04:38 +0000
commit1e221209b9669a6f3172bdcf05b1066b43e42f26 (patch)
treef9c2555939e1d43714a7bbd3481db88ec4079dcf
parentd4d2a3d5eaaa45a266c5563fdaff81213d6f52fd (diff)
downloadvideo-1e221209b9669a6f3172bdcf05b1066b43e42f26.tar.gz
package `QtQuick2`
-rw-r--r--frameworks/qt5quick2/Makefile238
-rw-r--r--frameworks/qt5quick2/patches/000-do-not-build-hosttools.patch40
2 files changed, 278 insertions, 0 deletions
diff --git a/frameworks/qt5quick2/Makefile b/frameworks/qt5quick2/Makefile
new file mode 100644
index 0000000..5a7c42b
--- /dev/null
+++ b/frameworks/qt5quick2/Makefile
@@ -0,0 +1,238 @@
+#
+# Copyright (C) 2015 OpenWrt
+# Author: Mirko Vogt <mirko@openwrt.org>
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=qt5quick2
+PKG_VERSION:=5.7.0
+PKG_RELEASE:=1
+PKG_MD5SUM:=0d9e461aa54dba4793253fa2eb501f9b
+
+PKG_SYS_NAME:=qtdeclarative-opensource-src-$(PKG_VERSION)
+PKG_SOURCE:=$(PKG_SYS_NAME).tar.xz
+PKG_SOURCE_URL:=http://download.qt-project.org/official_releases/qt/$(basename $(PKG_VERSION))/$(PKG_VERSION)/submodules
+
+PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_SYS_NAME)
+PKG_BUILD_PARALLEL:=1
+PKG_BUILD_DEPENDS:=qt5base
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/nls.mk
+-include $(STAGING_DIR)/host/mk/qmake.mk
+
+define Package/qt5quick2/Default
+ SECTION:=video-frameworks
+ CATEGORY:=Video
+ SUBMENU:=Frameworks and Toolkits
+ TITLE:=Qt5quick2
+ DEPENDS+=qt5quick2
+ URL:=http://qt.io
+ MAINTAINER:=Mirko Vogt <mirko@openwrt.org>
+endef
+
+define Package/qt5quick2
+ $(call Package/qt5quick2/Default)
+ DEPENDS:=
+ MENU:=1
+endef
+
+define Package/qt5quick2-qml
+ $(call Package/qt5quick2/Default)
+ TITLE+=qml
+ DEPENDS+=+qt5base-network
+endef
+
+define Package/qt5quick2-quick
+ $(call Package/qt5quick2/Default)
+ TITLE+=quick
+ DEPENDS+=+qt5quick2-qml +qt5base-gui +qt5quick2-2d-sw-renderer-GLstubs
+endef
+
+define Package/qt5quick2-test
+ $(call Package/qt5quick2/Default)
+ TITLE+=test
+ DEPENDS+=+qt5quick2-quick +qt5base-gui +qt5base-widgets +qt5base-test
+endef
+
+define Package/qt5quick2-particles
+ $(call Package/qt5quick2/Default)
+ TITLE+=particles
+ DEPENDS+=+qt5quick2-quick
+endef
+
+define Package/qt5quick2-widgets
+ $(call Package/qt5quick2/Default)
+ TITLE+=widgets
+ DEPENDS+=+qt5quick2-quick +qt5base-gui +qt5base-widgets
+endef
+
+###
+
+define Package/qt5quick2-qml-statemachine
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML statemachine
+ DEPENDS:=+qt5quick2-qml
+endef
+
+define Package/qt5quick2-qml-models
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML models
+endef
+
+define Package/qt5quick2-qml-folderlistmodel
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML folderlistmodel
+ DEPENDS:=+qt5quick2-qml
+endef
+
+define Package/qt5quick2-qml-settings
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML settings
+ DEPENDS:=+qt5quick2-qml
+endef
+
+define Package/qt5quick2-qml-test
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML folderlistmodel
+ DEPENDS+=+qt5quick2-quick +qt5base-gui +qt5quick2-test
+endef
+
+define Package/qt5quick2-qml-layouts
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML layouts
+ DEPENDS+=+qt5quick2-quick
+endef
+
+define Package/qt5quick2-qml-particles
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML particles
+ DEPENDS+=+qt5quick2-particles
+endef
+
+define Package/qt5quick2-qml-window
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML window
+ DEPENDS+=+qt5quick2-quick
+endef
+
+define Package/qt5quick2-qml-localstorage
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML localstorage
+ DEPENDS+=+qt5quick2-qml +qt5base-sql
+endef
+
+define Package/qt5quick2-qml-quick
+ $(call Package/qt5quick2/Default)
+ TITLE+=QML quick2
+ DEPENDS+=+qt5quick2-quick
+endef
+
+####
+
+define Build/Configure
+ $(call Build/Configure/Default,qtdeclarative)
+endef
+
+###
+
+define Build/InstallDev
+ $(call Build/Install/HostFiles,$(1))
+ $(call Build/Install/Headers,$(1))
+ $(call Build/Install/Libs,$(1),*)
+endef
+
+define Build/Install/QMLplugin
+ $(INSTALL_DIR) \
+ $(1)/$(QT_INSTALL_QML)/$(2)
+
+ $(CP) \
+ $(PKG_INSTALL_DIR)/$(QT_INSTALL_QML)/$(2)/{plugins.qmltypes,qmldir,$(3).{so,qml}*} \
+ $(1)/$(QT_INSTALL_QML)/$(2)/ \
+ || true
+endef
+
+###
+
+define Package/qt5quick2-qml/install
+ $(call Build/Install/Libs,$(1),libQt5Qml)
+endef
+
+define Package/qt5quick2-quick/install
+ $(call Build/Install/Libs,$(1),libQt5Quick)
+endef
+
+define Package/qt5quick2-test/install
+ $(call Build/Install/Libs,$(1),libQt5QuickTest)
+endef
+
+define Package/qt5quick2-particles/install
+ $(call Build/Install/Libs,$(1),libQt5QuickParticles)
+endef
+
+define Package/qt5quick2-widgets/install
+ $(call Build/Install/Libs,$(1),libQt5QuickWidgets)
+endef
+
+
+define Package/qt5quick2-qml-statemachine/install
+ $(call Build/Install/QMLplugin,$(1),/QtQml/StateMachine,*)
+endef
+
+define Package/qt5quick2-qml-models/install
+ $(call Build/Install/QMLplugin,$(1),QtQML/StateMachine,*)
+endef
+
+define Package/qt5quick2-qml-folderlistmodel/install
+ $(call Build/Install/QMLplugin,$(1),Qt/labs/folderlistmodel,*)
+endef
+
+define Package/qt5quick2-qml-settings/install
+ $(call Build/Install/QMLplugin,$(1),Qt/labs/settings/,*)
+endef
+
+define Package/qt5quick2-qml-test/install
+ $(call Build/Install/QMLplugin,$(1),QtTest,*)
+endef
+
+define Package/qt5quick2-qml-layouts/install
+ $(call Build/Install/QMLplugin,$(1),QtQuick/Layouts,*)
+endef
+
+define Package/qt5quick2-qml-particles/install
+ $(call Build/Install/QMLplugin,$(1),QtQuick/Particles.2,*)
+endef
+
+define Package/qt5quick2-qml-window/install
+ $(call Build/Install/QMLplugin,$(1),QtQuick/Window.2,*)
+endef
+
+define Package/qt5quick2-qml-localstorage/install
+ $(call Build/Install/QMLplugin,$(1),QtQuick/LocalStorage,*)
+endef
+
+define Package/qt5quick2-qml-quick/install
+ $(call Build/Install/QMLplugin,$(1),QtQuick.2,*)
+endef
+
+
+$(eval $(call BuildPackage,qt5quick2))
+$(eval $(call BuildPackage,qt5quick2-qml))
+$(eval $(call BuildPackage,qt5quick2-quick))
+$(eval $(call BuildPackage,qt5quick2-test))
+$(eval $(call BuildPackage,qt5quick2-particles))
+$(eval $(call BuildPackage,qt5quick2-widgets))
+$(eval $(call BuildPackage,qt5quick2-qml-statemachine))
+$(eval $(call BuildPackage,qt5quick2-qml-models))
+$(eval $(call BuildPackage,qt5quick2-qml-folderlistmodel))
+$(eval $(call BuildPackage,qt5quick2-qml-settings))
+$(eval $(call BuildPackage,qt5quick2-qml-test))
+$(eval $(call BuildPackage,qt5quick2-qml-layouts))
+$(eval $(call BuildPackage,qt5quick2-qml-particles))
+$(eval $(call BuildPackage,qt5quick2-qml-window))
+$(eval $(call BuildPackage,qt5quick2-qml-localstorage))
+$(eval $(call BuildPackage,qt5quick2-qml-quick))
diff --git a/frameworks/qt5quick2/patches/000-do-not-build-hosttools.patch b/frameworks/qt5quick2/patches/000-do-not-build-hosttools.patch
new file mode 100644
index 0000000..194aa8d
--- /dev/null
+++ b/frameworks/qt5quick2/patches/000-do-not-build-hosttools.patch
@@ -0,0 +1,40 @@
+--- a/tools/tools.pro 2016-06-11 14:05:08.000000000 +0200
++++ b/tools/tools.pro 2016-08-26 14:21:46.134171309 +0200
+@@ -1,15 +1,15 @@
+ TEMPLATE = subdirs
+ SUBDIRS += \
+- qmlmin \
+- qmlimportscanner
++# qmlmin \
++# qmlimportscanner
+
+ qmlmin.CONFIG = host_build
+ qmlimportscanner.CONFIG = host_build
+
+ !android|android_app {
+ SUBDIRS += \
+- qml \
+- qmllint
++# qml \
++# qmllint
+
+ !contains(QT_CONFIG, no-qml-debug): SUBDIRS += qmlprofiler
+
+--- a/src/qmldevtools/qmldevtools.pro 2016-06-11 14:05:08.000000000 +0200
++++ b/src/qmldevtools/qmldevtools.pro 2016-08-26 14:20:10.322580100 +0200
+@@ -13,10 +13,10 @@
+ clang:if(greaterThan(QT_CLANG_MAJOR_VERSION, 3)|greaterThan(QT_CLANG_MINOR_VERSION, 3)): \
+ WERROR += -Wno-error=unused-const-variable
+
+-include(../3rdparty/masm/masm-defs.pri)
+-include(../qml/parser/parser.pri)
+-include(../qml/jsruntime/jsruntime.pri)
+-include(../qml/compiler/compiler.pri)
+-include(../qml/memory/memory.pri)
++#include(../3rdparty/masm/masm-defs.pri)
++#include(../qml/parser/parser.pri)
++#include(../qml/jsruntime/jsruntime.pri)
++#include(../qml/compiler/compiler.pri)
++#include(../qml/memory/memory.pri)
+
+ load(qt_module)