blob: be9ef3cbaa407fa83b68a2ff0e50d30cf4ca56f4 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001SUMMARY = "Exports your X session or FrameBuffer(fbdev) on-the-fly via VNC"
2HOMEPAGE = "http://www.karlrunge.com/x11vnc/"
3
4SECTION = "x11/utils"
5AUTHOR = "Karl Runge"
Andrew Geissler9aee5002022-03-30 16:27:02 +00006LICENSE = "GPL-2.0-or-later"
Brad Bishop19323692019-04-05 15:28:33 -04007LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
8 file://src/x11vnc.h;endline=31;md5=e871a2ad004776794b616822dcab6314"
9
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -050010SRCREV = "87cd0530f438372dda3c70bb491a6fd19f09acc2"
11PV .= "+git${SRCPV}"
12
Andrew Geissler595f6302022-01-24 19:11:47 +000013SRC_URI = "git://github.com/LibVNC/x11vnc;branch=master;protocol=https \
Brad Bishop19323692019-04-05 15:28:33 -040014 file://starting-fix.patch \
Andrew Geissler1e488cd2023-10-03 09:44:52 -050015 file://CVE-2020-29074.patch \
Brad Bishope42b3e32020-01-15 22:08:42 -050016 "
Brad Bishop26bdd442019-08-16 17:08:17 -040017S = "${WORKDIR}/git"
Brad Bishop19323692019-04-05 15:28:33 -040018
19DEPENDS = "\
20 jpeg \
21 libtasn1 \
22 libvncserver \
23 openssl \
24 p11-kit \
25 zlib \
26"
27
Brad Bishop8410d612019-11-25 09:40:59 -050028inherit pkgconfig autotools features_check
Brad Bishop19323692019-04-05 15:28:33 -040029
30ANY_OF_DISTRO_FEATURES = "x11 fbdev"
31
32PACKAGECONFIG ??= "\
33 ${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \
34 ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} \
35"
36
37PACKAGECONFIG[avahi] = "--with-avahi,--without-avahi,avahi"
38PACKAGECONFIG[xinerama] = "--with-xinerama,--without-xinerama,libxinerama"
39PACKAGECONFIG[x11] = "--with-x,--without-x, libxdamage libxext libxfixes libxrandr libxtst virtual/libx11"
40
Patrick Williams213cb262021-08-07 19:21:33 -050041RRECOMMENDS:${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'fbdev', 'kernel-module-uinput', '', d)}"