diff options
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-common.inc')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-common.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-common.inc b/meta/recipes-graphics/mesa/mesa-common.inc new file mode 100644 index 0000000000..240f956b8a --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa-common.inc | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "An open source implementation of the OpenGL spec" | ||
2 | HOMEPAGE = "http://mesa3d.org" | ||
3 | BUGTRACKER = "https://bugs.freedesktop.org" | ||
4 | SECTION = "x11" | ||
5 | LICENSE = "MIT" | ||
6 | |||
7 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \ | ||
8 | ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaDemos-${PV}.tar.bz2 " | ||
9 | |||
10 | S = "${WORKDIR}/Mesa-${PV}" | ||
11 | |||
12 | PROVIDES = "virtual/libgl" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | EXTRA_OECONF = "--disable-glu \ | ||
17 | --disable-glw \ | ||
18 | --disable-glut \ | ||
19 | --enable-glx-tls" | ||
20 | |||
21 | # Multiple virtual/gl providers being built breaks staging | ||
22 | EXCLUDE_FROM_WORLD = "1" | ||
23 | |||
24 | |||