From fa917d0ca96baf4ef877a80e57d438bfbb8cdf2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Goran=20Ra=C4=91enovi=C4=87?= Date: Wed, 17 Feb 2021 17:09:58 +0100 Subject: [PATCH] package/qt5/qt5doc: add package with qt quick demos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since qt 5.12, quick demos are moved in the qt5doc package. In order to use quick demos, qt5doc has to be built. qt5doc is a bit misleading name for the package, while it's basic content are the quick demos. qdoc tool itself is a part of qt5tools. The examples need to be enabled for this package to do anything (because we don't build the docs themselves), so select it Signed-off-by: Goran Rađenović [Arnout: - fix check-package warnings; - update to Jan 31 2022 version of kde/5.15 branch; - add select of BR2_PACKAGE_QT5BASE_EXAMPLES; - add hash for license file] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/qt5/Config.in | 1 + package/qt5/qt5doc/Config.in | 16 ++++++++++++++++ package/qt5/qt5doc/qt5doc.hash | 3 +++ package/qt5/qt5doc/qt5doc.mk | 28 ++++++++++++++++++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 package/qt5/qt5doc/Config.in create mode 100644 package/qt5/qt5doc/qt5doc.hash create mode 100644 package/qt5/qt5doc/qt5doc.mk diff --git a/package/qt5/Config.in b/package/qt5/Config.in index 3052ab408b..6dc9cfa148 100644 --- a/package/qt5/Config.in +++ b/package/qt5/Config.in @@ -40,6 +40,7 @@ source "package/qt5/qt5charts/Config.in" source "package/qt5/qt5coap/Config.in" source "package/qt5/qt5connectivity/Config.in" source "package/qt5/qt5declarative/Config.in" +source "package/qt5/qt5doc/Config.in" source "package/qt5/qt5enginio/Config.in" source "package/qt5/qt5graphicaleffects/Config.in" source "package/qt5/qt5imageformats/Config.in" diff --git a/package/qt5/qt5doc/Config.in b/package/qt5/qt5doc/Config.in new file mode 100644 index 0000000000..1ab5f8d333 --- /dev/null +++ b/package/qt5/qt5doc/Config.in @@ -0,0 +1,16 @@ +config BR2_PACKAGE_QT5DOC + bool "qt5doc (includes quick demos)" + select BR2_PACKAGE_QT5BASE_EXAMPLES + select BR2_PACKAGE_QT5DECLARATIVE + select BR2_PACKAGE_QT5DECLARATIVE_QUICK + help + Qt is a cross-platform application and UI framework for + developers using C++. + + Qtdoc contains the main Qt Reference Documentation, which + includes overviews, Qt topics, and examples not specific to + any Qt module. The configuration files are located in + qtdoc/doc/config and the articles in qtdoc/doc/src. Note that + QDoc itself is located in qtbase. + + https://doc.qt.io/qt-5/overviews.html diff --git a/package/qt5/qt5doc/qt5doc.hash b/package/qt5/qt5doc/qt5doc.hash new file mode 100644 index 0000000000..ec84ecdcb5 --- /dev/null +++ b/package/qt5/qt5doc/qt5doc.hash @@ -0,0 +1,3 @@ +# Locally computed +sha256 87ef0ba72ede78148dfae8fbe78c839f0e9966e1ab4a58d7725041144c0de70f qtdoc-897e90fe304d844beaf694b82a93a50237fa8b9e.tar.bz2 +sha256 ed8742a95cb9db653a09b050e27ccff5e67ba69c14aa2c3137f2a4e1892f6c0d LICENSE.FDL diff --git a/package/qt5/qt5doc/qt5doc.mk b/package/qt5/qt5doc/qt5doc.mk new file mode 100644 index 0000000000..77845a347f --- /dev/null +++ b/package/qt5/qt5doc/qt5doc.mk @@ -0,0 +1,28 @@ +################################################################################ +# +# qt5doc +# +################################################################################ + +QT5DOC_VERSION = 897e90fe304d844beaf694b82a93a50237fa8b9e +QT5DOC_SITE = $(QT5_SITE)/qtdoc/-/archive/$(QT5DOC_VERSION) +QT5DOC_SOURCE = qtdoc-$(QT5DOC_VERSION).tar.bz2 +QT5DOC_DEPENDENCIES = qt5declarative +QT5DOC_INSTALL_STAGING = YES + +ifeq ($(BR2_PACKAGE_QT5QUICKCONTROLS),y) +QT5DOC_DEPENDENCIES += qt5quickcontrols +endif + +ifeq ($(BR2_PACKAGE_QT5QUICKCONTROLS2),y) +QT5DOC_DEPENDENCIES += qt5quickcontrols2 +endif + +ifeq ($(BR2_PACKAGE_QT5XMLPATTERNS),y) +QT5DOC_DEPENDENCIES += qt5xmlpatterns +endif + +QT5DOC_LICENSE = GFDL-1.3 +QT5DOC_LICENSE_FILES = LICENSE.FDL + +$(eval $(qmake-package))