diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-28 12:06:50 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-28 12:06:50 +0200 |
commit | e70f52239138ab20ea3b25e4ac2343d44e074275 (patch) | |
tree | 54e0ee67c770b9cdb12315ed745c603ef8b8fe37 /extra/libgnome/post-install | |
parent | 2f9431bc45aaf52d6450799d0bc809020c759554 (diff) | |
download | nutyx-pakxe-e70f52239138ab20ea3b25e4ac2343d44e074275.tar.gz nutyx-pakxe-e70f52239138ab20ea3b25e4ac2343d44e074275.tar.bz2 nutyx-pakxe-e70f52239138ab20ea3b25e4ac2343d44e074275.tar.xz nutyx-pakxe-e70f52239138ab20ea3b25e4ac2343d44e074275.zip |
Ajout de libgnome#2.24.1-1
Diffstat (limited to 'extra/libgnome/post-install')
-rwxr-xr-x | extra/libgnome/post-install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/extra/libgnome/post-install b/extra/libgnome/post-install new file mode 100755 index 000000000..58d717296 --- /dev/null +++ b/extra/libgnome/post-install @@ -0,0 +1,20 @@ +#!/bin/sh + +port=libgnome + +# gconf schemas +SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`" + +for SCHEMA in $SCHEMAS +do + export GCONF_CONFIG_SOURCE=`$GNOME_PREFIX/bin/gconftool-2 --get-default-source` + $GNOME_PREFIX/bin/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 |