diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2017-05-29 11:04:46 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-30 10:15:19 +0100 |
commit | db446abd6c8cb9edb90e0b688bafe9253e791edc (patch) | |
tree | 66d68505bbb01a0c62034e76130d33f1e0005ad0 /meta/recipes-graphics/drm/libdrm_2.4.81.bb | |
parent | 10a7a77d435765d99d68b74e83e1a0ac042f72f8 (diff) | |
download | poky-db446abd6c8cb9edb90e0b688bafe9253e791edc.tar.gz |
libdrm: upgrade to 2.4.81
(From OE-Core rev: cbac51701d82062cd86a6ee2d0e008ed9709d75a)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/drm/libdrm_2.4.81.bb')
-rw-r--r-- | meta/recipes-graphics/drm/libdrm_2.4.81.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-graphics/drm/libdrm_2.4.81.bb b/meta/recipes-graphics/drm/libdrm_2.4.81.bb new file mode 100644 index 0000000000..9181340a6c --- /dev/null +++ b/meta/recipes-graphics/drm/libdrm_2.4.81.bb | |||
@@ -0,0 +1,51 @@ | |||
1 | SUMMARY = "Userspace interface to the kernel DRM services" | ||
2 | DESCRIPTION = "The runtime library for accessing the kernel DRM services. DRM \ | ||
3 | stands for \"Direct Rendering Manager\", which is the kernel portion of the \ | ||
4 | \"Direct Rendering Infrastructure\" (DRI). DRI is required for many hardware \ | ||
5 | accelerated OpenGL drivers." | ||
6 | HOMEPAGE = "http://dri.freedesktop.org" | ||
7 | SECTION = "x11/base" | ||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://xf86drm.c;beginline=9;endline=32;md5=c8a3b961af7667c530816761e949dc71" | ||
10 | PROVIDES = "drm" | ||
11 | DEPENDS = "libpthread-stubs libpciaccess" | ||
12 | |||
13 | SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.bz2 \ | ||
14 | file://installtests.patch \ | ||
15 | file://fix_O_CLOEXEC_undeclared.patch \ | ||
16 | file://0001-configure.ac-Allow-explicit-enabling-of-cunit-tests.patch \ | ||
17 | " | ||
18 | |||
19 | SRC_URI[md5sum] = "d04f3567f0a812188d06f860fded5ab7" | ||
20 | SRC_URI[sha256sum] = "8cc05c195ac8708199979a94c4e4d1a928c14ec338ecbcb38ead09f54dae11ae" | ||
21 | |||
22 | inherit autotools pkgconfig manpages | ||
23 | |||
24 | EXTRA_OECONF += "--disable-cairo-tests \ | ||
25 | --without-cunit \ | ||
26 | --enable-omap-experimental-api \ | ||
27 | --enable-etnaviv-experimental-api \ | ||
28 | --enable-install-test-programs \ | ||
29 | --disable-valgrind \ | ||
30 | " | ||
31 | PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native" | ||
32 | |||
33 | ALLOW_EMPTY_${PN}-drivers = "1" | ||
34 | PACKAGES =+ "${PN}-tests ${PN}-drivers ${PN}-radeon ${PN}-nouveau ${PN}-omap \ | ||
35 | ${PN}-intel ${PN}-exynos ${PN}-kms ${PN}-freedreno ${PN}-amdgpu \ | ||
36 | ${PN}-etnaviv" | ||
37 | |||
38 | RRECOMMENDS_${PN}-drivers = "${PN}-radeon ${PN}-nouveau ${PN}-omap ${PN}-intel \ | ||
39 | ${PN}-exynos ${PN}-freedreno ${PN}-amdgpu \ | ||
40 | ${PN}-etnaviv" | ||
41 | |||
42 | FILES_${PN}-tests = "${bindir}/*" | ||
43 | FILES_${PN}-radeon = "${libdir}/libdrm_radeon.so.*" | ||
44 | FILES_${PN}-nouveau = "${libdir}/libdrm_nouveau.so.*" | ||
45 | FILES_${PN}-omap = "${libdir}/libdrm_omap.so.*" | ||
46 | FILES_${PN}-intel = "${libdir}/libdrm_intel.so.*" | ||
47 | FILES_${PN}-exynos = "${libdir}/libdrm_exynos.so.*" | ||
48 | FILES_${PN}-kms = "${libdir}/libkms*.so.*" | ||
49 | FILES_${PN}-freedreno = "${libdir}/libdrm_freedreno.so.*" | ||
50 | FILES_${PN}-amdgpu = "${libdir}/libdrm_amdgpu.so.*" | ||
51 | FILES_${PN}-etnaviv = "${libdir}/libdrm_etnaviv.so.*" | ||