mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Fixes ERROR: Nothing PROVIDES 'libsdl2-ttf' (but meta-openembedded/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb DEPENDS on or otherwise requires it) libsdl2-ttf was skipped: missing required distro feature 'opengl' (not in DISTRO_FEATURES) ERROR: Nothing RPROVIDES 'python3-kivy-dev' (but meta-openembedded/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb RDEPENDS on or otherwise requires it) No eligible RPROVIDERs exist for 'python3-kivy-dev' NOTE: Runtime target 'python3-kivy-dev' is unbuildable, removing... Missing or unbuildable dependency chain was: ['python3-kivy-dev'] ERROR: Nothing RPROVIDES 'python3-kivy' (but meta-openembedded/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb RDEPENDS on or otherwise requires it) No eligible RPROVIDERs exist for 'python3-kivy' NOTE: Runtime target 'python3-kivy' is unbuildable, removing... Missing or unbuildable dependency chain was: ['python3-kivy'] Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin Jansa <Martin.Jansa@gmail.com> Cc: William Huang <whuang8933@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
74 lines
1.9 KiB
BlitzBasic
74 lines
1.9 KiB
BlitzBasic
SUMMARY = "Open source Python library for rapid development of applications \
|
|
that make use of innovative user interfaces, such as multi-touch apps."
|
|
HOMEPAGE = "https://kivy.org/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=f0c851d60495c7e27225a819e179208a"
|
|
|
|
inherit setuptools3 pkgconfig features_check
|
|
|
|
SRC_URI = "\
|
|
git://github.com/kivy/kivy.git;protocol=git;\
|
|
"
|
|
|
|
# Kivy's setup files only look for GLES libraries for Android, iOS, RPi,
|
|
# and mali-based OS's. We need to patch the setup file to tell Kivy setup
|
|
# that our machine has GLES libaries installed as well
|
|
# Also, if using SDL2 as backend, SDL2 needs to be configured wth gles
|
|
SRC_URI += " \
|
|
file://0001-add-support-for-glesv2.patch \
|
|
"
|
|
SRCREV = "dedcb6bcabe3d8d6758dcee607e8c33b174d782b"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGES += "${PN}-examples"
|
|
FILES:${PN}-examples = "/usr/share/kivy-examples"
|
|
|
|
USE_WAYLAND = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '1', '0', d)}"
|
|
export USE_WAYLAND
|
|
|
|
# if using Wayland, let's use pure Wayland (and not XWayland)
|
|
# so do not build using X11 flag when we detect Wayland
|
|
USE_X11 = " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '0', \
|
|
bb.utils.contains('DISTRO_FEATURES', 'x11', '1', \
|
|
'0', d), d)}"
|
|
export USE_X11
|
|
|
|
# Use OpenGL ES 2.0 library
|
|
KIVY_GRAPHICS = "gles"
|
|
export KIVY_GRAPHICS
|
|
|
|
KIVY_CROSS_SYSROOT="${RECIPE_SYSROOT}"
|
|
export KIVY_CROSS_SYSROOT
|
|
|
|
REQUIRED_DISTRO_FEATURES += "x11 opengl"
|
|
|
|
DEPENDS += " \
|
|
gstreamer1.0 \
|
|
gstreamer1.0-python \
|
|
libsdl2 \
|
|
libsdl2-ttf \
|
|
libsdl2-image \
|
|
libsdl2-mixer \
|
|
pango \
|
|
python3 \
|
|
python3-cython-native \
|
|
"
|
|
|
|
RDEPENDS_${PN} = " \
|
|
gstreamer1.0 \
|
|
gstreamer1.0-python \
|
|
libsdl2 \
|
|
libsdl2-ttf \
|
|
libsdl2-image \
|
|
libsdl2-mixer \
|
|
pango \
|
|
python3 \
|
|
python3-docutils \
|
|
python3-fcntl \
|
|
python3-image \
|
|
python3-pillow \
|
|
python3-pygments \
|
|
"
|