mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Changelog: ========== - Fix bug in Chrome pointer detection - CI: Update FreeBSD xrdp dependency Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
904 B
BlitzBasic
32 lines
904 B
BlitzBasic
SUMMARY = "Xorg drivers for xrdp."
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a2523660329fdca3d954c0a87390e007"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
DEPENDS = "virtual/libx11 xserver-xorg xrdp nasm-native"
|
|
|
|
inherit features_check
|
|
REQUIRED_DISTRO_FEATURES = "x11 pam"
|
|
|
|
SRC_URI = "git://github.com/neutrinolabs/xorgxrdp.git;branch=v0.10;protocol=https;tag=v${PV}"
|
|
|
|
SRCREV = "c2d3cbafebe00be3221f985c06ef6b97f1c63790"
|
|
|
|
FILES:${PN} += "${libdir}/xorg/modules/*"
|
|
FILES:${PN}-staticdev += " \
|
|
${libdir}/xorg/modules/libxorgxrdp.a \
|
|
${libdir}/xorg/modules/drivers/xrdpdev_drv.a \
|
|
${libdir}/xorg/modules/input/xrdpmouse_drv.a \
|
|
${libdir}/xorg/modules/input/xrdpkeyb_drv.a \
|
|
"
|
|
|
|
require recipes-graphics/xorg-xserver/xserver-abi.inc
|
|
|
|
python add_xorg_abi_depends() {
|
|
_add_xorg_abi_depends(d, "xinput")
|
|
_add_xorg_abi_depends(d, "videodrv")
|
|
}
|
|
PACKAGEFUNCS =+ "add_xorg_abi_depends"
|