diff options
author | fredjo <frederic.joly@9online.fr> | 2009-11-04 10:43:41 +0100 |
---|---|---|
committer | fredjo <frederic.joly@9online.fr> | 2009-11-04 10:43:41 +0100 |
commit | d0cdc219565206123a8ced58bc573c90df14a699 (patch) | |
tree | fc9c8472186a03bab62e8fa42ca930d59b1b7329 /fredjo-gnome-2.28-test/libgnomekbd/post-install | |
parent | e33cec991cc363d20dbfab098c11b8bd89661847 (diff) | |
download | nutyx-extra-d0cdc219565206123a8ced58bc573c90df14a699.tar.gz nutyx-extra-d0cdc219565206123a8ced58bc573c90df14a699.tar.bz2 nutyx-extra-d0cdc219565206123a8ced58bc573c90df14a699.tar.xz nutyx-extra-d0cdc219565206123a8ced58bc573c90df14a699.zip |
Ajout du paquet libgnomekbd#2.26.0
Diffstat (limited to 'fredjo-gnome-2.28-test/libgnomekbd/post-install')
-rwxr-xr-x | fredjo-gnome-2.28-test/libgnomekbd/post-install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/fredjo-gnome-2.28-test/libgnomekbd/post-install b/fredjo-gnome-2.28-test/libgnomekbd/post-install new file mode 100755 index 000000000..ad12cd967 --- /dev/null +++ b/fredjo-gnome-2.28-test/libgnomekbd/post-install @@ -0,0 +1,23 @@ +#!/bin/sh + +port=libgnomekbd + +# 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 + +# desktop database +update-desktop-database > /dev/null + +# End of file |