diff options
author | fredjo <frederic.joly@9online.fr> | 2009-11-04 14:34:50 +0100 |
---|---|---|
committer | fredjo <frederic.joly@9online.fr> | 2009-11-04 14:34:50 +0100 |
commit | a28a463d58a04aacac8364d8e3e78fa5ad92dc75 (patch) | |
tree | 414d254849fca3a75169be1a7b6c246486656e6d /gnome/evolution/post-install | |
parent | 878735de058b746796d6ff2d0f168462d0a43678 (diff) | |
download | nutyx-pakxe-a28a463d58a04aacac8364d8e3e78fa5ad92dc75.tar.gz nutyx-pakxe-a28a463d58a04aacac8364d8e3e78fa5ad92dc75.tar.bz2 nutyx-pakxe-a28a463d58a04aacac8364d8e3e78fa5ad92dc75.tar.xz nutyx-pakxe-a28a463d58a04aacac8364d8e3e78fa5ad92dc75.zip |
deplacement de evolution vers gnome
Diffstat (limited to 'gnome/evolution/post-install')
-rwxr-xr-x | gnome/evolution/post-install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnome/evolution/post-install b/gnome/evolution/post-install new file mode 100755 index 000000000..7810d1d03 --- /dev/null +++ b/gnome/evolution/post-install @@ -0,0 +1,20 @@ +#!/bin/sh + +port=evolution + +# 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 + +# End of file |