blob: 5f7c0beb66f38065c828b5694508b3d0746cb657 [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 \
Brad Bishope42b3e32020-01-15 22:08:42 -050015 "
Brad Bishop26bdd442019-08-16 17:08:17 -040016S = "${WORKDIR}/git"
Brad Bishop19323692019-04-05 15:28:33 -040017
18DEPENDS = "\
19 jpeg \
20 libtasn1 \
21 libvncserver \
22 openssl \
23 p11-kit \
24 zlib \
25"
26
Brad Bishop8410d612019-11-25 09:40:59 -050027inherit pkgconfig autotools features_check
Brad Bishop19323692019-04-05 15:28:33 -040028
29ANY_OF_DISTRO_FEATURES = "x11 fbdev"
30
31PACKAGECONFIG ??= "\
32 ${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \
33 ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} \
34"
35
36PACKAGECONFIG[avahi] = "--with-avahi,--without-avahi,avahi"
37PACKAGECONFIG[xinerama] = "--with-xinerama,--without-xinerama,libxinerama"
38PACKAGECONFIG[x11] = "--with-x,--without-x, libxdamage libxext libxfixes libxrandr libxtst virtual/libx11"
39
Patrick Williams213cb262021-08-07 19:21:33 -050040RRECOMMENDS:${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'fbdev', 'kernel-module-uinput', '', d)}"