network-manager-applet-1.8.22

Introduction to NetworkManager Applet

The NetworkManager Applet provides a tool and a panel applet used to configure wired and wireless network connections through GUI. It's designed for use with any desktop environment that uses GTK+, such as Xfce and LXDE.

This package is known to build and work properly using an LFS-9.0 platform.

Package Information

NetworkManager Applet Dependencies

Required

Gcr-3.28.1, GTK+-3.24.10, ISO Codes-4.3, libsecret-0.18.8, libnotify-0.7.8, and NetworkManager-1.20.0

Recommended

Required (Runtime)

polkit-gnome-0.105

Optional

gnome-bluetooth-3.32.1, GTK-Doc-1.32, jansson-2.12, and mobile-broadband-provider-info (runtime)

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/network-manager-applet

Installation of NetworkManager Applet

Install NetworkManager Applet by running the following commands:

mkdir build &&
cd    build &&

meson --prefix=/usr     \
      --sysconfdir=/etc \
      -Dselinux=false   \
      -Dteam=false      \
      -Dmobile_broadband_provider_info=false \
      -Dgtk_doc=false .. &&
ninja

To test the results, issue: ninja test.

Now, as the root user:

ninja install

Command Explanations

-Dteam=false: This switch disables the team configuration editor since it requires jansson-2.12. If you have Jansson installed, remove this option or set it to "true".

-Denable-selinux=false: This switch forcibly disables SELinux support since it is not currently in BLFS and the build will fail without it.

-Dmobile_broadband_provider_info=false: This switch forcibly disables Mobile Broadband Provider support because it is not currently available in BLFS.

-Dwwan=false: This switch disables WWAN support. Use this if you do not have ModemManager-1.10.4 installed.

-Dintrospection=false: Use this if you do not have gobject-introspection-1.60.2 installed.

-Dgtk_doc=false: Remove this if you have GTK-Doc-1.32 installed and want to rebuild the documentation with it.

Contents

Installed Programs: nm-applet and nm-connection-editor
Installed Libraries: libnma.so
Installed Directories: /usr/include/libnma and /usr/share/gtk-doc/libnma

Short Descriptions

nm-connection-editor

allows users to view and edit network connection settings.

libnma.so

contains internal functions for the Network Manager GTK+ Interface.

Last updated on 2019-08-25 16:50:50 -0700