mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
qt5/qt5graphicaleffects: new package
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
a80292cfba
commit
6b65be6b19
@ -17,6 +17,7 @@ menuconfig BR2_PACKAGE_QT5
|
|||||||
if BR2_PACKAGE_QT5
|
if BR2_PACKAGE_QT5
|
||||||
source "package/qt5/qt5base/Config.in"
|
source "package/qt5/qt5base/Config.in"
|
||||||
source "package/qt5/qt5declarative/Config.in"
|
source "package/qt5/qt5declarative/Config.in"
|
||||||
|
source "package/qt5/qt5graphicaleffects/Config.in"
|
||||||
source "package/qt5/qt5imageformats/Config.in"
|
source "package/qt5/qt5imageformats/Config.in"
|
||||||
source "package/qt5/qt5jsbackend/Config.in"
|
source "package/qt5/qt5jsbackend/Config.in"
|
||||||
source "package/qt5/qt5script/Config.in"
|
source "package/qt5/qt5script/Config.in"
|
||||||
|
16
package/qt5/qt5graphicaleffects/Config.in
Normal file
16
package/qt5/qt5graphicaleffects/Config.in
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
config BR2_PACKAGE_QT5GRAPHICALEFFECTS
|
||||||
|
bool "qt5graphicaleffects"
|
||||||
|
select BR2_PACKAGE_QT5BASE
|
||||||
|
select BR2_PACKAGE_QT5DECLARATIVE
|
||||||
|
depends on BR2_PACKAGE_HAS_OPENGL_EGL
|
||||||
|
depends on BR2_PACKAGE_HAS_OPENGL_ES
|
||||||
|
help
|
||||||
|
Qt is a cross-platform application and UI framework for
|
||||||
|
developers using C++.
|
||||||
|
|
||||||
|
This package corresponds to the qt5graphicaleffects module.
|
||||||
|
|
||||||
|
http://qt-project.org
|
||||||
|
|
||||||
|
comment "qt5graphicaleffects requires an OpenGL-capable backend"
|
||||||
|
depends on !BR2_PACKAGE_HAS_OPENGL_EGL || !BR2_PACKAGE_HAS_OPENGL_ES
|
40
package/qt5/qt5graphicaleffects/qt5graphicaleffects.mk
Normal file
40
package/qt5/qt5graphicaleffects/qt5graphicaleffects.mk
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
#############################################################
|
||||||
|
#
|
||||||
|
# qt5graphicaleffects
|
||||||
|
#
|
||||||
|
#############################################################
|
||||||
|
|
||||||
|
QT5GRAPHICALEFFECTS_VERSION = $(QT5_VERSION)
|
||||||
|
QT5GRAPHICALEFFECTS_SITE = http://releases.qt-project.org/qt5/$(QT5GRAPHICALEFFECTS_VERSION)/submodules_tar/
|
||||||
|
QT5GRAPHICALEFFECTS_SOURCE = qtgraphicaleffects-opensource-src-$(QT5GRAPHICALEFFECTS_VERSION).tar.xz
|
||||||
|
QT5GRAPHICALEFFECTS_DEPENDENCIES = qt5base qt5declarative
|
||||||
|
QT5GRAPHICALEFFECTS_INSTALL_STAGING = YES
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
||||||
|
QT5GRAPHICALEFFECTS_CONFIGURE_OPTS += -opensource -confirm-license
|
||||||
|
QT5GRAPHICALEFFECTS_LICENSE = LGPLv2.1 or GPLv3.0
|
||||||
|
# Here we would like to get license files from qt5base, but qt5base
|
||||||
|
# may not be extracted at the time we get the legal-info for
|
||||||
|
# qt5script.
|
||||||
|
else
|
||||||
|
QT5GRAPHICALEFFECTS_LICENSE = Commercial license
|
||||||
|
QT5GRAPHICALEFFECTS_REDISTRIBUTE = NO
|
||||||
|
endif
|
||||||
|
|
||||||
|
define QT5GRAPHICALEFFECTS_CONFIGURE_CMDS
|
||||||
|
(cd $(@D); $(HOST_DIR)/usr/bin/qmake)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define QT5GRAPHICALEFFECTS_BUILD_CMDS
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define QT5GRAPHICALEFFECTS_INSTALL_STAGING_CMDS
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
|
||||||
|
endef
|
||||||
|
|
||||||
|
define QT5GRAPHICALEFFECTS_INSTALL_TARGET_CMDS
|
||||||
|
cp -dpfr $(STAGING_DIR)/usr/qml/QtGraphicalEffects $(TARGET_DIR)/usr/qml
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(generic-package))
|
Loading…
x
Reference in New Issue
Block a user