summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/eglinfo
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-graphics/eglinfo
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-graphics/eglinfo')
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb6
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb8
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo.inc27
3 files changed, 41 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..455d31e872
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb
@@ -0,0 +1,6 @@
1EGLINFO_PLATFORM ?= "fb"
2EGLINFO_BINARY_NAME ?= "eglinfo-fb"
3
4include eglinfo.inc
5
6SUMMARY += "(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 @@
1EGLINFO_PLATFORM ?= "x11"
2EGLINFO_BINARY_NAME ?= "eglinfo-x11"
3
4include eglinfo.inc
5
6DEPENDS += "virtual/libx11"
7
8SUMMARY += "(X11 version)"
diff --git a/meta/recipes-graphics/eglinfo/eglinfo.inc b/meta/recipes-graphics/eglinfo/eglinfo.inc
new file mode 100644
index 0000000000..b87688af72
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo.inc
@@ -0,0 +1,27 @@
1SUMMARY = "Utility for printing information EGL and its client APIs (OpenGL, OpenGL ES, OpenVG)"
2SECTION = "graphics"
3LICENSE = "Zlib"
4HOMEPAGE = "https://github.com/dv1/eglinfo"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=8d4f33bc3add976f7dfae85dab66f03c"
6
7DEPENDS = "virtual/egl"
8
9SRC_URI = "git://github.com/dv1/eglinfo.git;branch=master"
10SRCREV = "4b317648ec6cf39556a9e5d8078f605bc0edd5de"
11
12S = "${WORKDIR}/git"
13
14inherit waf
15
16# BSP layers should add .bbappend files for the -x11 and -fb .bb recipes, which
17# append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS and set
18# EGL_DEVICE as appropriate.
19EGLINFO_DEVICE ?= "generic"
20
21EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \
22 --device=${EGLINFO_DEVICE} \
23 --sysroot ${STAGING_DIR_TARGET}"
24
25do_install_append() {
26 mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME}
27}