diff options
author | fredjo <frederic.joly@9online.fr> | 2009-11-06 11:00:58 +0100 |
---|---|---|
committer | fredjo <frederic.joly@9online.fr> | 2009-11-06 11:00:58 +0100 |
commit | cad61b40ee83a6aa29a4d9cdf5c329d8abc23437 (patch) | |
tree | a0a2b6022d355a90bd81a2785decc00dc8c53059 /gnome/dasher/post-install | |
parent | f3d6991ab2f662cfa9134efb64f53cec765e7ca4 (diff) | |
download | nutyx-extra-cad61b40ee83a6aa29a4d9cdf5c329d8abc23437.tar.gz nutyx-extra-cad61b40ee83a6aa29a4d9cdf5c329d8abc23437.tar.bz2 nutyx-extra-cad61b40ee83a6aa29a4d9cdf5c329d8abc23437.tar.xz nutyx-extra-cad61b40ee83a6aa29a4d9cdf5c329d8abc23437.zip |
Ajout de dasher#4.10.1-1
Diffstat (limited to 'gnome/dasher/post-install')
-rwxr-xr-x | gnome/dasher/post-install | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome/dasher/post-install b/gnome/dasher/post-install new file mode 100755 index 000000000..7e2f0f5dd --- /dev/null +++ b/gnome/dasher/post-install @@ -0,0 +1,31 @@ +#!/bin/sh + +port=dasher + +# gconf schemas +SCHEMAS="`pkginfo -l $port | grep usr/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 + +# scrolls +SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`" + +for SCROLL in $SCROLLS +do + scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null +done + +# desktop database +update-desktop-database > /dev/null + +# End of file |