diff options
author | David Spencer <baildon.research@googlemail.com> | 2011-09-07 23:21:01 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-09-21 19:48:31 -0300 |
commit | e6f17288e3d02ddfe3eeb063b637d0986c7bce5f (patch) | |
tree | 02765da686bdf6831a4e3dfb22e518835e509d02 /system/gpsd/doinst.sh | |
parent | 9080a47e3d7349cc58bf15b944af817a25cf39b2 (diff) | |
download | slackbuilds-e6f17288e3d02ddfe3eeb063b637d0986c7bce5f.tar.gz |
system/gpsd: Downgraded to version 2.95 due to API breakage.
Added rc.* files and *.desktop files.
Added udev rules and scripts.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/gpsd/doinst.sh')
-rw-r--r-- | system/gpsd/doinst.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/system/gpsd/doinst.sh b/system/gpsd/doinst.sh new file mode 100644 index 0000000000..81e9fca8c2 --- /dev/null +++ b/system/gpsd/doinst.sh @@ -0,0 +1,30 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.gpsd.new +config etc/rc.d/rc.gpsd.conf.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi |