summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/eglinfo
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2014-06-26 14:36:22 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2014-06-26 15:32:53 +0200
commitf4cf9fe05bb3f32fabea4e54dd92d368967a80da (patch)
tree487180fa9866985ea7b28e625651765d86f515c3 /meta/recipes-graphics/eglinfo
downloadpoky-f4cf9fe05bb3f32fabea4e54dd92d368967a80da.tar.gz
initial commit for Enea Linux 4.0
Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@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..785e7f15f3
--- /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 = "4a49ff59545d9b6a8222badab64115f89d3a6774"
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}