diff options
author | 2022-12-04 15:35:31 +0100 | |
---|---|---|
committer | 2022-12-04 15:49:22 +0100 | |
commit | 3d2b088e2d091a5a1caf16cca5bd7a0d45d09961 (patch) | |
tree | 2185df7ad5bab280abf122280317d4b9ead7cd8d /net-libs/libnma | |
parent | sys-apps/hwloc: Install icon (diff) | |
download | gentoo-3d2b088e2d091a5a1caf16cca5bd7a0d45d09961.tar.gz gentoo-3d2b088e2d091a5a1caf16cca5bd7a0d45d09961.tar.bz2 gentoo-3d2b088e2d091a5a1caf16cca5bd7a0d45d09961.zip |
net-libs/libnma: Fix crash when trying to configure EAP using profiles
Closes: https://bugs.gentoo.org/882419
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'net-libs/libnma')
-rw-r--r-- | net-libs/libnma/libnma-1.10.4-r1.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/net-libs/libnma/libnma-1.10.4-r1.ebuild b/net-libs/libnma/libnma-1.10.4-r1.ebuild new file mode 100644 index 000000000000..965eae62dbe5 --- /dev/null +++ b/net-libs/libnma/libnma-1.10.4-r1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg vala + +DESCRIPTION="NetworkManager GUI library" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" + +LICENSE="GPL-2+" +SLOT="0" +# pkcs11 default enabled as it's a small dep often already present by libnma users, and it was default enabled as IUSE=+gcr in nm-applet before +IUSE="gtk-doc +introspection +pkcs11 vala" +REQUIRED_USE="vala? ( introspection )" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +DEPEND=" + >=gui-libs/gtk-4.0:4 + app-text/iso-codes + net-misc/mobile-broadband-provider-info + >=dev-libs/glib-2.38:2 + >=x11-libs/gtk+-3.12:3[introspection?] + >=net-misc/networkmanager-1.7[introspection?] + pkcs11? ( >=app-crypt/gcr-4.0.0:4 ) + introspection? ( >=dev-libs/gobject-introspection-1.56:= ) +" +RDEPEND="${DEPEND} + !<gnome-extra/nm-applet-1.16.0" # gschema moved to here before nm-applet-1.16.0 +BDEPEND=" + dev-libs/libxml2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + gtk-doc? ( dev-util/gtk-doc + app-text/docbook-xml-dtd:4.3 ) + vala? ( $(vala_depend) + net-misc/networkmanager[vala] + ) +" + +src_prepare() { + default + use vala && vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + -Dlibnma_gtk4=true + $(meson_use pkcs11 gcr) + -Dmore_asserts=0 + -Diso_codes=true + -Dmobile_broadband_provider_info=true + -Dld_gc=false + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection) + $(meson_use vala vapi) + ) + meson_src_configure +} + +src_install() { + meson_src_install + rm "${D}/usr/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml" || die +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |