diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-01-30 20:15:15 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-01-30 20:15:15 +0100 |
commit | 9e36f4ff1b2603aafb129284f832fb8bf46724a3 (patch) | |
tree | 062812e0dccde7e804d4a989eefc9ef6f3aed1c4 /gnome/guake/post-install | |
parent | 3d5e03273d9fbb5664b827e2c69dc804c374e16b (diff) | |
download | nutyx-pakxe-9e36f4ff1b2603aafb129284f832fb8bf46724a3.tar.gz nutyx-pakxe-9e36f4ff1b2603aafb129284f832fb8bf46724a3.tar.bz2 nutyx-pakxe-9e36f4ff1b2603aafb129284f832fb8bf46724a3.tar.xz nutyx-pakxe-9e36f4ff1b2603aafb129284f832fb8bf46724a3.zip |
Ajout de guake#0.4.0-1
Diffstat (limited to 'gnome/guake/post-install')
-rwxr-xr-x | gnome/guake/post-install | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnome/guake/post-install b/gnome/guake/post-install new file mode 100755 index 000000000..d7b507585 --- /dev/null +++ b/gnome/guake/post-install @@ -0,0 +1,19 @@ +#!/bin/sh + +port=guake + +# 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 + |