summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics
diff options
context:
space:
mode:
authorJean-Francois Dagenais <dagenaisj@sonatest.com>2019-02-07 12:05:24 -0500
committerJean-Francois Dagenais <dagenaisj@sonatest.com>2019-02-11 14:37:17 -0500
commit876b48b5712c71dfa7b217e9cdb71989b3e0c147 (patch)
tree907dba55a0737e6182e4373ca8c7ad2816c0c9bb /meta-oe/recipes-graphics
parentd30d26c2796dc45ba274803815421e6f4aca9eb5 (diff)
downloadmeta-openembedded-876b48b5712c71dfa7b217e9cdb71989b3e0c147.tar.gz
x11vnc: allow fbdev only (x11-less) builds
Diffstat (limited to 'meta-oe/recipes-graphics')
-rw-r--r--meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb15
1 files changed, 11 insertions, 4 deletions
diff --git a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
index 774d2c9cb..57bc4a56b 100644
--- a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
+++ b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
@@ -1,4 +1,4 @@
1SUMMARY = "Exports your X session on-the-fly via VNC" 1SUMMARY = "Exports your X session or FrameBuffer(fbdev) on-the-fly via VNC"
2HOMEPAGE = "http://www.karlrunge.com/x11vnc/" 2HOMEPAGE = "http://www.karlrunge.com/x11vnc/"
3 3
4SECTION = "x11/utils" 4SECTION = "x11/utils"
@@ -16,15 +16,22 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/x11vnc/${PV}/x11vnc-${PV}.tar.gz\
16SRC_URI[md5sum] = "a372ec4fe8211221547b1c108cf56e4c" 16SRC_URI[md5sum] = "a372ec4fe8211221547b1c108cf56e4c"
17SRC_URI[sha256sum] = "f6829f2e629667a5284de62b080b13126a0736499fe47cdb447aedb07a59f13b" 17SRC_URI[sha256sum] = "f6829f2e629667a5284de62b080b13126a0736499fe47cdb447aedb07a59f13b"
18 18
19DEPENDS = "openssl virtual/libx11 libxext jpeg zlib libxfixes libxrandr libxdamage libxtst libtasn1 p11-kit" 19DEPENDS = "\
20 jpeg \
21 libtasn1 \
22 openssl \
23 p11-kit \
24 zlib \
25"
20 26
21inherit autotools-brokensep distro_features_check 27inherit autotools-brokensep distro_features_check
22# depends on virtual/libx11 28
23REQUIRED_DISTRO_FEATURES = "x11" 29ANY_OF_DISTRO_FEATURES = "x11 fbdev"
24 30
25PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} libvncserver" 31PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} libvncserver"
26PACKAGECONFIG[avahi] = "--with-avahi,--without-avahi,avahi" 32PACKAGECONFIG[avahi] = "--with-avahi,--without-avahi,avahi"
27PACKAGECONFIG[xinerama] = "--with-xinerama,--without-xinerama,libxinerama" 33PACKAGECONFIG[xinerama] = "--with-xinerama,--without-xinerama,libxinerama"
34PACKAGECONFIG[x] = "--with-x,--without-x, libxdamage libxext libxfixes libxrandr libxtst virtual/libx11"
28PACKAGECONFIG[libvncserver] = "--with-system-libvncserver,--without-system-libvncserver,libvncserver" 35PACKAGECONFIG[libvncserver] = "--with-system-libvncserver,--without-system-libvncserver,libvncserver"
29 36
30do_prepare_sources () { 37do_prepare_sources () {