summaryrefslogtreecommitdiff
path: root/testing/source/blueman/doinst.sh
diff options
context:
space:
mode:
authorPatrick J Volkerding <volkerdi@slackware.com>2019-11-01 19:35:34 +0000
committerEric Hameleers <alien@slackware.com>2019-11-02 08:59:50 +0100
commitbea0657d72f4f4351f78df01b57a87529783d7c9 (patch)
tree6b8e6d041e62ae923aa81d3be8be8729f92812e9 /testing/source/blueman/doinst.sh
parent8160de57c47ccc90ccb514a65cc14fde84939c8f (diff)
downloadcurrent-bea0657d72f4f4351f78df01b57a87529783d7c9.tar.gz
Fri Nov 1 19:35:34 UTC 201920191101193534
l/gcr-3.34.0-x86_64-1.txz: Upgraded. l/gnome-keyring-3.34.0-x86_64-1.txz: Upgraded. n/crda-4.14-x86_64-1.txz: Upgraded. Upgraded to crda-4.14 and wireless-regdb-2019.06.03. xap/blueman-2.1.1-x86_64-1.txz: Upgraded. extra/source/flashplayer-plugin/flashplayer-plugin.SlackBuild: Upgraded. Fixed URL to retrieve latest version number.
Diffstat (limited to 'testing/source/blueman/doinst.sh')
-rw-r--r--testing/source/blueman/doinst.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/testing/source/blueman/doinst.sh b/testing/source/blueman/doinst.sh
deleted file mode 100644
index 16e49ab9..00000000
--- a/testing/source/blueman/doinst.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-config etc/polkit-1/rules.d/30-blueman-netdev-allow-access.rules.new
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
-if [ -e usr/share/glib-2.0/schemas ]; then
- if [ -x /usr/bin/glib-compile-schemas ]; then
- /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
- fi
-fi
-