summaryrefslogtreecommitdiffstats
path: root/gnome/gok/post-install
diff options
context:
space:
mode:
authorfredjo <frederic.joly@9online.fr>2009-11-05 13:30:44 +0100
committerfredjo <frederic.joly@9online.fr>2009-11-05 13:30:44 +0100
commit4546d58661fe9584749f12904b523e073033cf51 (patch)
tree4cf57a4e977ab5e89da527d2a7cc08dc786bb496 /gnome/gok/post-install
parent52cc88e72e6272dfd5752926a90b8ed00249873b (diff)
downloadnutyx-extra-4546d58661fe9584749f12904b523e073033cf51.tar.gz
nutyx-extra-4546d58661fe9584749f12904b523e073033cf51.tar.bz2
nutyx-extra-4546d58661fe9584749f12904b523e073033cf51.tar.xz
nutyx-extra-4546d58661fe9584749f12904b523e073033cf51.zip
Ajout de gok#2.26.0
Diffstat (limited to 'gnome/gok/post-install')
-rwxr-xr-xgnome/gok/post-install31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome/gok/post-install b/gnome/gok/post-install
new file mode 100755
index 000000000..26503d8cb
--- /dev/null
+++ b/gnome/gok/post-install
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+port=gok
+
+# gconf schemas
+SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`"
+
+for SCHEMA in $SCHEMAS
+do
+ export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
+ gconftool-2 --makefile-install-rule /$SCHEMA > /dev/null
+done
+
+# reload gconf caches
+if [ ! -z "`pidof gconfd-2`" ]
+then
+ killall -HUP gconfd-2 > /dev/null
+fi
+
+# scrolls
+SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`"
+
+for SCROLL in $SCROLLS
+do
+ scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null
+done
+
+# desktop database
+update-desktop-database > /dev/null
+
+# End of file