mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
22051d98b3
The file org.gnome.nm-applet.gschema.xml conflicts with the one
provided by network-manager-applet, so remove it from libnma and use the
one from network-manager-applet.
| Error: Transaction test error:
| file /usr/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml conflicts
between attempted installs of network-manager-applet-1.34.0-r0.core2_ 64
and libnma-1.10.6-r0.core2_64
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
34 lines
1.4 KiB
BlitzBasic
34 lines
1.4 KiB
BlitzBasic
SUMMARY = "NetworkManager GUI library"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "glib-2.0 gtk+3 gtk4 networkmanager"
|
|
|
|
inherit gnomebase gobject-introspection gtk-doc gettext vala features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('PACKAGECONFIG','gcr','x11','',d)} opengl"
|
|
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
|
|
|
|
SRC_URI[archive.sha256sum] = "53a6fb2b190ad37c5986caed3e98bede7c3c602399ee4f93c8fc054303d76dab"
|
|
|
|
PACKAGECONFIG ?= "gcr iso_codes mobile_broadband_provider_info"
|
|
PACKAGECONFIG[gcr] = "-Dgcr=true,-Dgcr=false,gcr"
|
|
PACKAGECONFIG[iso_codes] = "-Diso_codes=true,-Diso_codes=false,iso-codes,iso-codes"
|
|
PACKAGECONFIG[mobile_broadband_provider_info] = "-Dmobile_broadband_provider_info=true,-Dmobile_broadband_provider_info=false,mobile-broadband-provider-info,mobile-broadband-provider-info"
|
|
|
|
# for gnome-control-center >= 42
|
|
EXTRA_OEMESON = "-Dlibnma_gtk4=true"
|
|
|
|
# go introspection is not supported for mipsn32/riscv32, but vapi needs it
|
|
#
|
|
EXTRA_OEMESON:append:mipsarchn32 = " -Dvapi=false"
|
|
EXTRA_OEMESON:append:riscv32 = " -Dvapi=false"
|
|
EXTRA_OEMESON:append:powerpc64le = " -Dvapi=false"
|
|
|
|
GTKDOC_MESON_OPTION = "gtk_doc"
|
|
|
|
do_install:append() {
|
|
# conflicts with the file provided by network-manager-applet
|
|
rm -f ${D}${datadir}/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml
|
|
}
|