meta-virtualization/recipes-extended/virt-viewer/virt-viewer_git.bb
Bruce Ashfield b701660aec virt-viewer: update to v11.0-tip
Bumping virt-viewer to version v11.0-87-g107f60c, which comprises the following commits:

    107f60c data: Add x-scheme-handler/vnc to desktop file
    1676cd8 Fix handling of the --debug flag with glib >= 2.80
    b6436a5 Translated using Weblate (Indonesian)
    7f8944b Translated using Weblate (Romanian)
    4f8b479 Translated using Weblate (French)
    7dcc363 build-sys: skip mimedb update if missing
    f666425 ci: refresh with latest 'lcitool manifest'

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2025-03-26 18:05:41 +00:00

39 lines
1.2 KiB
BlitzBasic

SUMMARY = "Virtual Machine Viewer"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
# for ovirt support librest-0.7 and libgovirt would be needed
DEPENDS = " \
desktop-file-utils-native \
glib-2.0 \
gtk+3 \
libxml2 \
"
SRC_URI = "git://gitlab.com/virt-viewer/virt-viewer.git;protocol=https;branch=master"
SRCREV = "107f60c168c405cf1782b686a65bf4af16ec8c9d"
PV = "11.0+git"
S = "${WORKDIR}/git"
REQUIRED_DISTRO_FEATURES = "opengl"
PACKAGECONFIG ?= "libvirt spice vte"
PACKAGECONFIG[libvirt] = "-Dlibvirt=enabled,-Dlibvirt=disabled,libvirt libvirt-glib"
PACKAGECONFIG[spice] = "-Dspice=enabled,-Dspice=disabled,spice-gtk spice-protocol"
PACKAGECONFIG[vnc] = "-Dvnc=enabled,-Dvnc=disabled,gtk-vnc"
PACKAGECONFIG[vte] = "-Dvte=enabled,-Dvte=disabled,vte"
inherit meson pkgconfig gtk-icon-cache mime mime-xdg gobject-introspection features_check
FILES:${PN} += "${datadir}"
GIR_MESON_OPTION = ''
do_compile:append() {
# glib-mkenums is embedding full paths into this file. There's no
# option to it to use a sysroot style variable. So to avoid QA
# errors, we sed WORKDIR out and make its includes relative
sed -i "s,${WORKDIR}/build/,," src/virt-viewer-enums.c
}