blob: 8c2440ca83cc7c82c48dd45ef0ab1ef341b6f5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
DESCRIPTION = "GTK+ applet for NetworkManager"
LICENSE = "GPL"
DEPENDS = "policykit-gnome libnotify networkmanager dbus-glib libglade gconf gnome-keyring"
RDEPENDS_${PN} = "networkmanager"
PR = "r3"
inherit gnome
SRC_URI += "file://nm-applet.conf"
do_configure_append() {
rm config.log
# Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
for i in $(find ${S} -name "Makefile") ; do
sed -i -e s:-Werror::g $i
done
}
# Hack around dbus a_console problems
do_install_append() {
install -m 0644 ${WORKDIR}/nm-applet.conf ${D}${sysconfdir}/dbus-1/system.d/
}
FILES_${PN} += "${datadir}/nm-applet/ \
${datadir}/gnome-vpn-properties/ \
${datadir}/gnome/autostart/ \
"
SRC_URI[archive.md5sum] = "d90a997e3e2051ce8866fe24f765141f"
SRC_URI[archive.sha256sum] = "b22a90e6252d798b3889843910a016d185f9e87dd23e203003b1072013f670a6"
|