summaryrefslogtreecommitdiffstats
path: root/gnome/gnome-utils/post-install
diff options
context:
space:
mode:
authorfredjo <frederic.joly@9online.fr>2009-11-04 14:55:19 +0100
committerfredjo <frederic.joly@9online.fr>2009-11-04 14:55:19 +0100
commit4815b53803cd452972cc236f73f03c40900f037b (patch)
tree2d56fa67b48556be3ef3c02148445afd4bb1f058 /gnome/gnome-utils/post-install
parent6ad764e6aeb0b94fc24c6fdc997b999cd302eae6 (diff)
downloadnutyx-pakxe-4815b53803cd452972cc236f73f03c40900f037b.tar.gz
nutyx-pakxe-4815b53803cd452972cc236f73f03c40900f037b.tar.bz2
nutyx-pakxe-4815b53803cd452972cc236f73f03c40900f037b.tar.xz
nutyx-pakxe-4815b53803cd452972cc236f73f03c40900f037b.zip
Deplacement de gnome-utils vers le repertoire gnome
Diffstat (limited to 'gnome/gnome-utils/post-install')
-rwxr-xr-xgnome/gnome-utils/post-install31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome/gnome-utils/post-install b/gnome/gnome-utils/post-install
new file mode 100755
index 000000000..bb41ccd11
--- /dev/null
+++ b/gnome/gnome-utils/post-install
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+port=gnome-utils
+
+# 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