diff options
author | fredjo <frederic.joly@9online.fr> | 2009-11-04 15:21:50 +0100 |
---|---|---|
committer | fredjo <frederic.joly@9online.fr> | 2009-11-04 15:21:50 +0100 |
commit | 8329a6b8df395952e53e82fbf260f98e7c67b032 (patch) | |
tree | b917cbfac34e0e7edff77ea87e3c284dbeafb296 /gnome/totem/post-install | |
parent | ee7fd7f61572026a5e0af6c04c75a56db1d259df (diff) | |
download | nutyx-extra-8329a6b8df395952e53e82fbf260f98e7c67b032.tar.gz nutyx-extra-8329a6b8df395952e53e82fbf260f98e7c67b032.tar.bz2 nutyx-extra-8329a6b8df395952e53e82fbf260f98e7c67b032.tar.xz nutyx-extra-8329a6b8df395952e53e82fbf260f98e7c67b032.zip |
Deplacement de totem vers le repertoire gnome
Diffstat (limited to 'gnome/totem/post-install')
-rwxr-xr-x | gnome/totem/post-install | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome/totem/post-install b/gnome/totem/post-install new file mode 100755 index 000000000..26e69b714 --- /dev/null +++ b/gnome/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 |