diff options
author | Ross Burton <ross.burton@intel.com> | 2013-09-02 17:13:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-06 23:03:22 +0100 |
commit | 78296aad824df650d1da1900d675dfdb4f4ceeb2 (patch) | |
tree | 2c7af4a0730d5db5cb61c338e15672a1bfdd00af /meta/recipes-graphics | |
parent | e4556e5a7bc2217845cd918e1c3e91c98cf0f31a (diff) | |
download | poky-78296aad824df650d1da1900d675dfdb4f4ceeb2.tar.gz |
eglinfo: add recipes for x11 and fb backends
eglinfo is a small utility for printing out information about EGL as well
as about its client APIs, OpenGL / OpenGLES 1.x / OpenGLES 2.x / OpenVG.
Recipe originally by Carlos Rafael Giani <dv@pseudoterminal.org>.
(From OE-Core rev: a8835cc014d761bf18a420b48c7c61cdfeded552)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb | 11 | ||||
-rw-r--r-- | meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb | 8 | ||||
-rw-r--r-- | meta/recipes-graphics/eglinfo/eglinfo.inc | 32 |
3 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb b/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb new file mode 100644 index 0000000000..65b265fcb7 --- /dev/null +++ b/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | EGLINFO_PLATFORM ?= "fb" | ||
2 | EGLINFO_BINARY_NAME ?= "eglinfo-fb" | ||
3 | |||
4 | # .bbappend files in BSP meta layers can add EGLINFO_DEVICE | ||
5 | # values if necessary. eglinfo.inc contains default values for | ||
6 | # the currently supported devices. | ||
7 | # Consult the eglinfo README.md for details | ||
8 | |||
9 | include eglinfo.inc | ||
10 | |||
11 | SUMMARY += "(Framebuffer version)" | ||
diff --git a/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb b/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb new file mode 100644 index 0000000000..18fc8938d6 --- /dev/null +++ b/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | EGLINFO_PLATFORM ?= "x11" | ||
2 | EGLINFO_BINARY_NAME ?= "eglinfo-x11" | ||
3 | |||
4 | include eglinfo.inc | ||
5 | |||
6 | DEPENDS += "virtual/libx11" | ||
7 | |||
8 | SUMMARY += "(X11 version)" | ||
diff --git a/meta/recipes-graphics/eglinfo/eglinfo.inc b/meta/recipes-graphics/eglinfo/eglinfo.inc new file mode 100644 index 0000000000..d53d0ff21e --- /dev/null +++ b/meta/recipes-graphics/eglinfo/eglinfo.inc | |||
@@ -0,0 +1,32 @@ | |||
1 | SUMMARY = "Utility for printing information EGL and its client APIs (OpenGL, OpenGL ES, OpenVG)" | ||
2 | SECTION = "graphics" | ||
3 | LICENSE = "Zlib" | ||
4 | HOMEPAGE = "https://github.com/dv1/eglinfo" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8d4f33bc3add976f7dfae85dab66f03c" | ||
6 | |||
7 | DEPENDS = "virtual/egl" | ||
8 | |||
9 | SRC_URI = "git://github.com/dv1/eglinfo.git;branch=master" | ||
10 | SRCREV = "4a49ff59545d9b6a8222badab64115f89d3a6774" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | inherit waf | ||
15 | |||
16 | # BSP layers should add .bbappend files for the -x11 and -fb .bb recipes, | ||
17 | # which append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS | ||
18 | # not doing that here, since some platforms might not have OpenGL ES or OpenVG support | ||
19 | # (in that case, the eglinfo build scripts automatically disable the relevant code paths) | ||
20 | |||
21 | EGLINFO_DEVICE ?= "generic" | ||
22 | EGLINFO_DEVICE_raspberrypi ?= "raspberrypi" | ||
23 | EGLINFO_DEVICE_beagleboard ?= "beagleboard" | ||
24 | EGLINFO_DEVICE_mx6 ?= "imx6" | ||
25 | |||
26 | EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \ | ||
27 | --device=${EGLINFO_DEVICE} \ | ||
28 | --sysroot ${STAGING_DIR_TARGET}" | ||
29 | |||
30 | do_install_append() { | ||
31 | mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME} | ||
32 | } | ||