diff options
| author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2015-09-22 21:18:13 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-13 12:27:48 +0200 |
| commit | bf4cd19e95c82c50e30803a2cf1adda78da426d3 (patch) | |
| tree | 5355db9f70147cf84546e59cc6da2dbd537d9df5 /meta-oe/recipes-graphics | |
| parent | 5ea852737c3406494ffefbf71aba2a2c4d25def7 (diff) | |
| download | meta-openembedded-bf4cd19e95c82c50e30803a2cf1adda78da426d3.tar.gz | |
wayland-fits: Add recipe
wayland-fits is a functional integration test suite
for Wayland and Weston.
MJ: removed elementary from default PACKAGECONFIG because meta-oe
doesn't depend on meta-efl
It optionally supports EFL and GTK+ tests.
Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics')
| -rwxr-xr-x | meta-oe/recipes-graphics/wayland/wayland-fits_git.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/wayland/wayland-fits_git.bb b/meta-oe/recipes-graphics/wayland/wayland-fits_git.bb new file mode 100755 index 0000000000..b74c44a633 --- /dev/null +++ b/meta-oe/recipes-graphics/wayland/wayland-fits_git.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "Wayland-fits, the Wayland Functional Integration Test Suite" | ||
| 2 | DESCRIPTION = "Wayland-fits is a fully automated functional integration \ | ||
| 3 | test suite. Its main purpose is to test the functionality and integration of \ | ||
| 4 | client-side (i.e. toolkit) and server-side (compositor) implementations of \ | ||
| 5 | the Wayland protocol." | ||
| 6 | HOMEPAGE = "https://github.com/01org/wayland-fits" | ||
| 7 | LICENSE = "MIT" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=f8d34cadaf891753c0f00c6cd48f08f5 \ | ||
| 9 | file://src/extensions/weston/weston-wfits.cpp;endline=21;md5=848c81e55cf3a30a9f6ed75f0dba7a97" | ||
| 10 | |||
| 11 | SRC_URI = "git://github.com/01org/wayland-fits.git" | ||
| 12 | SRCREV = "f30dfa9fceb438d3687c5215093fffc21a7852fc" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | inherit autotools pkgconfig | ||
| 17 | |||
| 18 | DEPENDS = "libcheck boost wayland weston" | ||
| 19 | RDEPENDS_${PN} = "weston" | ||
| 20 | |||
| 21 | EXTRA_OECONF += "--enable-shared --disable-static --with-boost-libdir=${STAGING_LIBDIR}" | ||
| 22 | |||
| 23 | PACKAGECONFIG ?= "gtk+3" | ||
| 24 | |||
| 25 | PACKAGECONFIG[elementary] = "--enable-efl-tests,--disable-efl-tests,elementary" | ||
| 26 | PACKAGECONFIG[gtk+3] = "--enable-gtk-tests,--disable-gtk-tests,gtk+3" | ||
| 27 | |||
| 28 | do_install_append() { | ||
| 29 | rm -f ${D}/${libdir}/weston/*.la | ||
| 30 | } | ||
| 31 | |||
| 32 | FILES_${PN} += "${bindir}/wfits ${libdir}/weston/*.so" | ||
| 33 | FILES_${PN}-dbg += "${bindir}/.debug ${libdir}/weston/.debug ${prefix}/src" | ||
