mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
With this, libdrm_git now does have LIC_FILES_CHKSUM as well. (From OE-Core rev: ff86dba803ea4a8c66be57113e33de8ac92a21d1) Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
947 B
PHP
26 lines
947 B
PHP
SUMMARY = "Userspace interface to the kernel DRM services"
|
|
DESCRIPTION = "The runtime library for accessing the kernel DRM services. DRM \
|
|
stands for \"Direct Rendering Manager\", which is the kernel portion of the \
|
|
\"Direct Rendering Infrastructure\" (DRI). DRI is required for many hardware \
|
|
accelerated OpenGL drivers."
|
|
HOMEPAGE = "http://dri.freedesktop.org"
|
|
SECTION = "x11/base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://xf86drm.c;beginline=9;endline=32;md5=c8a3b961af7667c530816761e949dc71"
|
|
SRC_URI = "http://dri.freedesktop.org/libdrm/libdrm-${PV}.tar.bz2"
|
|
PROVIDES = "drm"
|
|
DEPENDS = "libpthread-stubs udev cairo"
|
|
|
|
INC_PR = "r2"
|
|
|
|
#libpciaccess is required starting from libdrm 2.4.26
|
|
DEPENDS += " libpciaccess"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGES =+ "${PN}-tests ${PN}-drivers ${PN}-kms"
|
|
FILES_${PN}-tests = "${bindir}/dr* ${bindir}/mode*"
|
|
FILES_${PN}-drivers = "${libdir}/libdrm_*.so.*"
|
|
FILES_${PN}-kms = "${libdir}/libkms*.so.*"
|
|
|