summaryrefslogtreecommitdiffstats
path: root/games/glxosd/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'games/glxosd/doinst.sh')
-rw-r--r--games/glxosd/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/games/glxosd/doinst.sh b/games/glxosd/doinst.sh
new file mode 100644
index 0000000000..b91c4ec6c3
--- /dev/null
+++ b/games/glxosd/doinst.sh
@@ -0,0 +1,26 @@
+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/glxosd.new
+
+# Update the X font indexes:
+if [ -x /usr/bin/mkfontdir ]; then
+ ( cd /usr/share/fonts/TTF
+ mkfontscale .
+ mkfontdir .
+ )
+fi
+
+if [ -x /usr/bin/fc-cache ]; then
+ /usr/bin/fc-cache -f
+fi