428e5276e4
After fixing Prefix in our custom qt.conf, Qt computes and embeds the correct sysroot prefixed pathes in all *.la and *.prl files. So remove fixup of - *.la files because they are generically fixed anyway - *.prl files because occurences of absolute /usr/lib were no longer observed Signed-off-by: Andreas Naumann <anaumann@ultratronik.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
60 lines
2.0 KiB
Makefile
60 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# qt5script
|
|
#
|
|
################################################################################
|
|
|
|
QT5SCRIPT_VERSION = $(QT5_VERSION)
|
|
QT5SCRIPT_SITE = $(QT5_SITE)
|
|
QT5SCRIPT_SOURCE = qtscript-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SCRIPT_VERSION).tar.xz
|
|
QT5SCRIPT_DEPENDENCIES = qt5base
|
|
QT5SCRIPT_INSTALL_STAGING = YES
|
|
|
|
# JavaScriptCore contains files under BSD-2-Clause, BSD-3-Clause, and LGPL-2+.
|
|
# This is linked into libQt5Script, which also contains Qt sources under
|
|
# LGPL-2.1 (only). Therefore, the library is LGPL-2.1 and BSD-3-Clause.
|
|
# libQt5ScriptTools is under the normal Qt opensource license.
|
|
ifeq ($(BR2_PACKAGE_QT5_VERSION_LATEST),y)
|
|
QT5SCRIPT_LICENSE = LGPL-2.1, BSD-3-Clause, LGPL-3.0 or GPL-2.0+ (libQt5ScriptTools), GFDL-1.3 (docs)
|
|
# LGPL-2.1 license file is missing
|
|
QT5SCRIPT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.LGPL3 LICENSE.FDL
|
|
else
|
|
QT5SCRIPT_LICENSE = LGPL-2.1, BSD-3-Clause, LGPL-2.1 with exception or LGPL-3.0 with exception (libQt5ScriptTools), GFDL-1.3 (docs)
|
|
QT5SCRIPT_LICENSE_FILES = LICENSE.LGPLv21 LICENSE.LGPLv3 LGPL_EXCEPTION.txt LICENSE.FDL
|
|
endif
|
|
# License files from JavaScriptCore
|
|
QT5SCRIPT_LICENSE_FILES += \
|
|
src/3rdparty/javascriptcore/JavaScriptCore/COPYING.LIB \
|
|
src/3rdparty/javascriptcore/JavaScriptCore/pcre/COPYING
|
|
|
|
define QT5SCRIPT_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/bin/qmake)
|
|
endef
|
|
|
|
define QT5SCRIPT_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define QT5SCRIPT_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
|
|
endef
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
define QT5SCRIPT_INSTALL_TARGET_LIBS
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libQt5Script*.so.* $(TARGET_DIR)/usr/lib
|
|
endef
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y)
|
|
define QT5SCRIPT_INSTALL_TARGET_EXAMPLES
|
|
cp -dpfr $(STAGING_DIR)/usr/lib/qt/examples/script $(TARGET_DIR)/usr/lib/qt/examples/
|
|
endef
|
|
endif
|
|
|
|
define QT5SCRIPT_INSTALL_TARGET_CMDS
|
|
$(QT5SCRIPT_INSTALL_TARGET_LIBS)
|
|
$(QT5SCRIPT_INSTALL_TARGET_EXAMPLES)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|