Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Seiderer <ps.report@gmx.net>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 1/2] qt5tools: new package
Date: Wed,  3 Feb 2016 23:01:10 +0100	[thread overview]
Message-ID: <1454536870-4977-1-git-send-email-ps.report@gmx.net> (raw)

- host programs: lconvert, lrelease and lupdate
- target programs: pixeltool, qtdiag, qtpath and qtplugininfo

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Changes v1 -> v2:
  - add target programs, reword commit message
---
 package/qt5/Config.in              |   1 +
 package/qt5/qt5tools/Config.in     |  41 ++++++++++++++
 package/qt5/qt5tools/qt5tools.hash |   4 ++
 package/qt5/qt5tools/qt5tools.mk   | 106 +++++++++++++++++++++++++++++++++++++
 4 files changed, 152 insertions(+)
 create mode 100644 package/qt5/qt5tools/Config.in
 create mode 100644 package/qt5/qt5tools/qt5tools.hash
 create mode 100644 package/qt5/qt5tools/qt5tools.mk

diff --git a/package/qt5/Config.in b/package/qt5/Config.in
index ad6226e..1c42102 100644
--- a/package/qt5/Config.in
+++ b/package/qt5/Config.in
@@ -42,6 +42,7 @@ source "package/qt5/qt5quickcontrols/Config.in"
 source "package/qt5/qt5sensors/Config.in"
 source "package/qt5/qt5serialport/Config.in"
 source "package/qt5/qt5svg/Config.in"
+source "package/qt5/qt5tools/Config.in"
 source "package/qt5/qt5webchannel/Config.in"
 source "package/qt5/qt5websockets/Config.in"
 source "package/qt5/qt5x11extras/Config.in"
diff --git a/package/qt5/qt5tools/Config.in b/package/qt5/qt5tools/Config.in
new file mode 100644
index 0000000..432f095
--- /dev/null
+++ b/package/qt5/qt5tools/Config.in
@@ -0,0 +1,41 @@
+config BR2_PACKAGE_QT5TOOLS
+	bool "qt5tools"
+	help
+	  Qt is a cross-platform application and UI framework for
+	  developers using C++.
+
+	  This package corresponds to the qt5tools module.
+
+	  http://qt.io
+
+if BR2_PACKAGE_QT5TOOLS
+
+config BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS
+	bool "Linguist host tools (lconvert, lrelease, lupdate)"
+	help
+	  This option enables the linguist host tools
+	  lconvert, lrelease and lupdate.
+
+config BR2_PACKAGE_QT5TOOLS_PIXELTOOL
+	bool "pixeltool"
+	select BR2_PACKAGE_QT5BASE_PNG
+        select BR2_PACKAGE_LIBPNG
+	help
+	  Compile and install the pixeltool program.
+
+config BR2_PACKAGE_QT5TOOLS_QTDIAG
+	bool "qtdiag"
+	help
+	  Compile and install the qtdiag program.
+
+config BR2_PACKAGE_QT5TOOLS_QTPATHS
+	bool "qtpaths"
+	help
+	  Compile and install the qtpaths program.
+
+config BR2_PACKAGE_QT5TOOLS_QTPLUGININFO
+	bool "qtplugininfo"
+	help
+	  Compile and install the qtplugininfo program.
+
+endif
diff --git a/package/qt5/qt5tools/qt5tools.hash b/package/qt5/qt5tools/qt5tools.hash
new file mode 100644
index 0000000..427dfe7
--- /dev/null
+++ b/package/qt5/qt5tools/qt5tools.hash
@@ -0,0 +1,4 @@
+# Hashes from: http://download.qt.io/official_releases/qt/5.5/5.5.0/submodules/qttools-opensource-src-5.5.0.tar.xz.mirrorlist
+sha256 5b65147187fb7f4456c20ef263f1093709d728f737d6d871a9a5888132fac07d qttools-opensource-src-5.5.0.tar.xz
+sha1   be69ccb338bcc7b397a8b31d7ba0a45fe677390e                         qttools-opensource-src-5.5.0.tar.xz
+md5    2057ef2110b6a1aec260a69e2860a502                                 qttools-opensource-src-5.5.0.tar.xz
diff --git a/package/qt5/qt5tools/qt5tools.mk b/package/qt5/qt5tools/qt5tools.mk
new file mode 100644
index 0000000..a849f4c
--- /dev/null
+++ b/package/qt5/qt5tools/qt5tools.mk
@@ -0,0 +1,106 @@
+################################################################################
+#
+# qt5tools
+#
+################################################################################
+
+QT5TOOLS_VERSION = $(QT5_VERSION)
+QT5TOOLS_SITE = $(QT5_SITE)
+QT5TOOLS_SOURCE = qttools-opensource-src-$(QT5BASE_VERSION).tar.xz
+
+QT5TOOLS_DEPENDENCIES = qt5base
+QT5TOOLS_INSTALL_STAGING = YES
+
+# linguist tools compile conditionally on qtHaveModule(qmldevtools-private)
+ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
+QT5TOOLS_DEPENDENCIES += qt5declarative
+endif
+
+ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
+QT5TOOLS_LICENSE = LGPLv2.1 with exception or LGPLv3
+QT5TOOLS_LICENSE_FILES = LICENSE.LGPLv21 LGPL_EXCEPTION.txt LICENSE.LGPLv3
+else
+QT5TOOLS_LICENSE = Commercial license
+QT5TOOLS_REDISTRIBUTE = NO
+endif
+
+define QT5TOOLS_CONFIGURE_CMDS
+	(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/usr/bin/qmake)
+endef
+
+define QT5TOOLS_BUILD_CMDS_ALL
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
+		sub-src-qmake_all
+endef
+
+ifeq ($(BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS),y)
+define QT5TOOLS_BUILD_CMDS_LINGUIST_TOOLS
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/linguist/lconvert
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/linguist/lrelease
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/linguist/lupdate
+endef
+define QT5TOOLS_INSTALL_STAGING_CMDS_LINGUIST_TOOLS
+	cp -dpf $(@D)/bin/lconvert $(STAGING_DIR)/usr/bin
+	cp -dpf $(@D)/bin/lrelease $(STAGING_DIR)/usr/bin
+	cp -dpf $(@D)/bin/lupdate $(STAGING_DIR)/usr/bin
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_QT5TOOLS_PIXELTOOL),y)
+QT5TOOLS_DEPENDENCIES += libpng
+define QT5TOOLS_BUILD_CMDS_PIXELTOOL
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/pixeltool
+endef
+define QT5TOOLS_INSTALL_TARGET_CMDS_PIXELTOOL
+	cp -dpf $(@D)/bin/pixeltool $(TARGET_DIR)/usr/bin
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_QT5TOOLS_QTDIAG),y)
+define QT5TOOLS_BUILD_CMDS_QTDIAG
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/qtdiag
+endef
+define QT5TOOLS_INSTALL_TARGET_CMDS_QTDIAG
+	cp -dpf $(@D)/bin/qtdiag $(TARGET_DIR)/usr/bin
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_QT5TOOLS_QTPATHS),y)
+define QT5TOOLS_BUILD_CMDS_QTPATHS
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/qtpaths
+endef
+define QT5TOOLS_INSTALL_TARGET_CMDS_QTPATHS
+	cp -dpf $(@D)/bin/qtpaths $(TARGET_DIR)/usr/bin
+endef
+endif
+
+ifeq ($(BR2_PACKAGE_QT5TOOLS_QTPLUGININFO),y)
+define QT5TOOLS_BUILD_CMDS_QTPLUGININFO
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/qtplugininfo
+endef
+define QT5TOOLS_INSTALL_TARGET_CMDS_QTDIAG
+	cp -dpf $(@D)/bin/qtplugininfo $(TARGET_DIR)/usr/bin
+endef
+endif
+
+define QT5TOOLS_BUILD_CMDS
+	$(QT5TOOLS_BUILD_CMDS_ALL)
+	$(QT5TOOLS_BUILD_CMDS_LINGUIST_TOOLS)
+	$(QT5TOOLS_BUILD_CMDS_PIXELTOOL)
+	$(QT5TOOLS_BUILD_CMDS_QTDIAG)
+	$(QT5TOOLS_BUILD_CMDS_QTPATHS)
+	$(QT5TOOLS_BUILD_CMDS_QTPLUGININFO)
+endef
+
+define QT5TOOLS_INSTALL_STAGING_CMDS
+	$(QT5TOOLS_INSTALL_STAGING_CMDS_LINGUIST_TOOLS)
+endef
+
+define QT5TOOLS_INSTALL_TARGET_CMDS
+	$(QT5TOOLS_INSTALL_TARGET_CMDS_PIXELTOOL)
+	$(QT5TOOLS_INSTALL_TARGET_CMDS_QTDIAG)
+	$(QT5TOOLS_INSTALL_TARGET_CMDS_QTPATHS)
+	$(QT5TOOLS_INSTALL_TARGET_CMDS_QTPLUGININFO)
+endef
+
+$(eval $(generic-package))
-- 
2.1.4

             reply	other threads:[~2016-02-03 22:01 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-03 22:01 Peter Seiderer [this message]
2016-02-03 22:44 ` [Buildroot] [PATCH v2 1/2] qt5tools: new package Thomas Petazzoni
2016-02-04 20:20   ` Peter Seiderer
2016-02-04 20:38     ` Thomas Petazzoni
2016-02-04 21:07       ` Peter Seiderer
2016-02-04 21:13         ` Thomas Petazzoni
2016-02-04 21:32           ` Peter Seiderer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1454536870-4977-1-git-send-email-ps.report@gmx.net \
    --to=ps.report@gmx.net \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox