diff options
-rw-r--r-- | meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb (renamed from meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb) | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb index 031e3b3d4..3ff0449bd 100644 --- a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb +++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2014.03.bb | |||
@@ -12,12 +12,23 @@ DEPENDS = "libpng12 jpeg" | |||
12 | 12 | ||
13 | SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" | 13 | SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" |
14 | 14 | ||
15 | SRC_URI[md5sum] = "4f306664aa3886fa0cf93853603603f8" | 15 | SRC_URI[md5sum] = "739859cf57d4c8a23452c43e84f66e56" |
16 | SRC_URI[sha256sum] = "bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47" | 16 | SRC_URI[sha256sum] = "bded41aaf918ce062d9b81e42cc5be943e6a80bc4ff9d046983b96102c3df6b5" |
17 | 17 | ||
18 | inherit waf pkgconfig | 18 | inherit waf pkgconfig |
19 | 19 | ||
20 | PACKAGECONFIG ?= "gl gles2" | 20 | PACKAGECONFIG ?= "gl gles2" |
21 | 21 | ||
22 | PACKAGECONFIG[gl] = "--enable-gl,,virtual/libgl" | 22 | PACKAGECONFIG[gl] = ",,virtual/libgl" |
23 | PACKAGECONFIG[gles2] = "--enable-glesv2,,virtual/libgles2" | 23 | PACKAGECONFIG[gles2] = ",,virtual/libgles2" |
24 | |||
25 | python __anonymous() { | ||
26 | packageconfig = (d.getVar("PACKAGECONFIG", True) or "").split() | ||
27 | flavors = [] | ||
28 | if "gles2" in packageconfig: | ||
29 | flavors.append("x11-glesv2") | ||
30 | if "gl" in packageconfig: | ||
31 | flavors.append("x11-gl") | ||
32 | if flavors: | ||
33 | d.appendVar("EXTRA_OECONF", " --with-flavors=%s" % ",".join(flavors)) | ||
34 | } | ||