mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
The scripts use argparse which is only in Python 3.2 onwards, so to avoid failures on hosts using 3.0 or 3.1 just look for Python 2. (From OE-Core rev: da889e86bac55178e06b6e2328ddf9415698fd79) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
755 B
BlitzBasic
26 lines
755 B
BlitzBasic
SUMMARY = "OpenGL function pointer management library"
|
|
HOMEPAGE = "https://github.com/anholt/libepoxy/"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b"
|
|
|
|
|
|
SRC_URI = " \
|
|
git://github.com/anholt/libepoxy.git \
|
|
file://0001-select-platforms-based-on-configuration-results.patch \
|
|
file://0002-add-an-option-to-disable-glx-support.patch \
|
|
file://no-need-for-python3.patch \
|
|
"
|
|
SRCREV="20062c25e7612cab023cdef44d3277ba1bd0b2de"
|
|
PV = "1.2+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
DEPENDS = "util-macros virtual/egl"
|
|
|
|
PACKAGECONFIG[x11] = "--enable-glx, --disable-glx, virtual/libx11"
|
|
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}"
|