diff options
author | tnut <thierryn1 at hispeed dot ch> | 2009-11-25 21:30:26 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2009-11-25 21:30:26 +0100 |
commit | b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06 (patch) | |
tree | ce36235dc25ffc03237ba6e5069bd7e985e86291 /gnome/evolution-webcal/post-install | |
parent | fb986399e699fa060604548672e62e6271df7749 (diff) | |
download | nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.tar.gz nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.tar.bz2 nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.tar.xz nutyx-extra-b3c61d0ebbf64ecfe2f32f4a90c68a0b081acb06.zip |
Ajout de evolution-webcal#2.28.0-1
Diffstat (limited to 'gnome/evolution-webcal/post-install')
-rwxr-xr-x | gnome/evolution-webcal/post-install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnome/evolution-webcal/post-install b/gnome/evolution-webcal/post-install new file mode 100755 index 000000000..c35ba0844 --- /dev/null +++ b/gnome/evolution-webcal/post-install @@ -0,0 +1,20 @@ +#!/bin/sh + +port=evolution-webcal + +# 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 |