2016-02-20 23:08:03 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# qt5tools
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
QT5TOOLS_VERSION = $(QT5_VERSION)
|
|
|
|
QT5TOOLS_SITE = $(QT5_SITE)
|
2018-03-15 20:50:54 +01:00
|
|
|
QT5TOOLS_SOURCE = qttools-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5TOOLS_VERSION).tar.xz
|
2016-02-20 23:08:03 +01:00
|
|
|
|
|
|
|
QT5TOOLS_DEPENDENCIES = qt5base
|
|
|
|
QT5TOOLS_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
# linguist tools compile conditionally on qtHaveModule(qmldevtools-private),
|
|
|
|
# but the condition is used only used to decide if lupdate will support
|
|
|
|
# parsing qml files (via setting QT_NO_QML define), no linking against
|
|
|
|
# target qt5 will happen
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
|
|
|
QT5TOOLS_DEPENDENCIES += qt5declarative
|
|
|
|
endif
|
|
|
|
|
2017-02-11 12:05:29 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_QT5_VERSION_LATEST),y)
|
2017-03-30 15:43:43 +02:00
|
|
|
QT5TOOLS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
|
2017-07-13 18:18:43 +02:00
|
|
|
QT5TOOLS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
|
2017-01-31 08:59:03 +01:00
|
|
|
else
|
2017-03-30 15:43:43 +02:00
|
|
|
QT5TOOLS_LICENSE = GPL-3.0 or LGPL-2.1 with exception or LGPL-3.0, GFDL-1.3 (docs)
|
2016-03-21 12:00:12 +01:00
|
|
|
QT5TOOLS_LICENSE_FILES = LICENSE.GPLv3 LICENSE.LGPLv21 LGPL_EXCEPTION.txt LICENSE.LGPLv3 LICENSE.FDL
|
2017-01-31 08:59:03 +01:00
|
|
|
endif
|
2016-02-20 23:08:03 +01:00
|
|
|
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS) += \
|
|
|
|
linguist/lconvert linguist/lrelease linguist/lupdate
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS),y)
|
|
|
|
# use install target to copy cmake module files
|
|
|
|
define QT5TOOLS_INSTALL_STAGING_CMDS
|
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/linguist install
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_PIXELTOOL) += pixeltool
|
|
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_PIXELTOOL) += pixeltool
|
|
|
|
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_QTDIAG) += qtdiag
|
|
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_QTDIAG) += qtdiag
|
|
|
|
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_QTPATHS) += qtpaths
|
|
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_QTPATHS) += qtpaths
|
|
|
|
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_QTPLUGININFO) += qtplugininfo
|
|
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_QTPLUGININFO) += qtplugininfo
|
|
|
|
|
|
|
|
define QT5TOOLS_CONFIGURE_CMDS
|
2017-07-05 13:14:19 +02:00
|
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/bin/qmake)
|
2016-02-20 23:08:03 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5TOOLS_BUILD_CMDS
|
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) sub-src-qmake_all
|
|
|
|
$(foreach p,$(QT5TOOLS_BUILD_DIRS_y), \
|
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/$(p)$(sep))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5TOOLS_INSTALL_TARGET_CMDS
|
|
|
|
$(foreach p,$(QT5TOOLS_INSTALL_TARGET_y), \
|
|
|
|
$(INSTALL) -D -m0755 $(@D)/bin/$(p) $(TARGET_DIR)/usr/bin/$(p)$(sep))
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|