From e6af2100727346a1fcabbbec4569601889726416 Mon Sep 17 00:00:00 2001 From: Diego Rondini Date: Thu, 8 May 2014 17:28:45 +0200 Subject: glmark2: update to version 2014.03 Update glmark2 receipe to upstream version 2014.03. The configure step has changed and instead of using "--enable-stuff" syntax, now the syntax is "--with-flavors=flavor1,flavor2". Thanks to Paul Eggleton for the help on how to deal with that: https://lists.yoctoproject.org/pipermail/yocto/2014-April/019328.html Signed-off-by: Diego Rondini Signed-off-by: Martin Jansa --- .../recipes-benchmark/glmark2/glmark2_2012.12.bb | 23 --------------- .../recipes-benchmark/glmark2/glmark2_2014.03.bb | 34 ++++++++++++++++++++++ 2 files changed, 34 insertions(+), 23 deletions(-) delete mode 100644 meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb create mode 100644 meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb (limited to 'meta-oe/recipes-benchmark/glmark2') diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb deleted file mode 100644 index 031e3b3d4d..0000000000 --- a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb +++ /dev/null @@ -1,23 +0,0 @@ -SUMMARY = "OpenGL (ES) 2.0 benchmark" -DESCRIPTION = "glmark2 is a benchmark for OpenGL (ES) 2.0. \ -It uses only the subset of the OpenGL 2.0 API that is compatible with OpenGL ES 2.0." -HOMEPAGE = "https://launchpad.net/glmark2" -BUGTRACKER = "https://bugs.launchpad.net/glmark2" - -LICENSE = "GPLv3+ & SGIv1" -LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ - file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552" - -DEPENDS = "libpng12 jpeg" - -SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" - -SRC_URI[md5sum] = "4f306664aa3886fa0cf93853603603f8" -SRC_URI[sha256sum] = "bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47" - -inherit waf pkgconfig - -PACKAGECONFIG ?= "gl gles2" - -PACKAGECONFIG[gl] = "--enable-gl,,virtual/libgl" -PACKAGECONFIG[gles2] = "--enable-glesv2,,virtual/libgles2" diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb new file mode 100644 index 0000000000..3ff0449bd6 --- /dev/null +++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb @@ -0,0 +1,34 @@ +SUMMARY = "OpenGL (ES) 2.0 benchmark" +DESCRIPTION = "glmark2 is a benchmark for OpenGL (ES) 2.0. \ +It uses only the subset of the OpenGL 2.0 API that is compatible with OpenGL ES 2.0." +HOMEPAGE = "https://launchpad.net/glmark2" +BUGTRACKER = "https://bugs.launchpad.net/glmark2" + +LICENSE = "GPLv3+ & SGIv1" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ + file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552" + +DEPENDS = "libpng12 jpeg" + +SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" + +SRC_URI[md5sum] = "739859cf57d4c8a23452c43e84f66e56" +SRC_URI[sha256sum] = "bded41aaf918ce062d9b81e42cc5be943e6a80bc4ff9d046983b96102c3df6b5" + +inherit waf pkgconfig + +PACKAGECONFIG ?= "gl gles2" + +PACKAGECONFIG[gl] = ",,virtual/libgl" +PACKAGECONFIG[gles2] = ",,virtual/libgles2" + +python __anonymous() { + packageconfig = (d.getVar("PACKAGECONFIG", True) or "").split() + flavors = [] + if "gles2" in packageconfig: + flavors.append("x11-glesv2") + if "gl" in packageconfig: + flavors.append("x11-gl") + if flavors: + d.appendVar("EXTRA_OECONF", " --with-flavors=%s" % ",".join(flavors)) +} -- cgit 1.2.3-korg