summaryrefslogtreecommitdiffstats
path: root/fredjo-gnome-2.28-test/totem/post-install
diff options
context:
space:
mode:
authorfredjo <frederic.joly@9online.fr>2009-11-04 10:58:29 +0100
committerfredjo <frederic.joly@9online.fr>2009-11-04 10:58:29 +0100
commita6553649d6003907d93635370241721b4ef51063 (patch)
tree1daf5206b693a5b0e15013388a8a09ceba9aecdb /fredjo-gnome-2.28-test/totem/post-install
parent3082bd64d1c89e9425a7e427259c6f7eb424076e (diff)
downloadnutyx-pakxe-a6553649d6003907d93635370241721b4ef51063.tar.gz
nutyx-pakxe-a6553649d6003907d93635370241721b4ef51063.tar.bz2
nutyx-pakxe-a6553649d6003907d93635370241721b4ef51063.tar.xz
nutyx-pakxe-a6553649d6003907d93635370241721b4ef51063.zip
Ajout du paquet totem#2.26.3
Diffstat (limited to 'fredjo-gnome-2.28-test/totem/post-install')
-rwxr-xr-xfredjo-gnome-2.28-test/totem/post-install31
1 files changed, 31 insertions, 0 deletions
diff --git a/fredjo-gnome-2.28-test/totem/post-install b/fredjo-gnome-2.28-test/totem/post-install
new file mode 100755
index 000000000..26e69b714
--- /dev/null
+++ b/fredjo-gnome-2.28-test/totem/post-install
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+port=totem
+
+# 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