mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
Move the functionality into autotools and ensure all our Poky recipes are no longer using it. Keep the autools_stage class around for OE compatability but just have it inherit autools. Signed-off-by: Joshua Lock <josh@linux.intel.com>
24 lines
564 B
PHP
24 lines
564 B
PHP
SECTION = "x11"
|
|
|
|
DESCRIPTION = "An open source implementation of the OpenGL spec"
|
|
HOMEPAGE = "http://mesa3d.org"
|
|
LICENSE = "MIT"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/mesa3d/MesaLib-${PV}.tar.bz2 \
|
|
${SOURCEFORGE_MIRROR}/mesa3d/MesaDemos-${PV}.tar.bz2 "
|
|
S = "${WORKDIR}/Mesa-${PV}"
|
|
|
|
PROVIDES = "virtual/libgl"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-glu \
|
|
--disable-glw \
|
|
--disable-glut \
|
|
--enable-glx-tls"
|
|
|
|
# Multiple virtual/gl providers being built breaks staging
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
|