diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-10-25 16:48:34 +0100 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-10-25 16:48:34 +0100 |
commit | 83126d5f7567b63f3164ef273cc4fd5379e4d839 (patch) | |
tree | 97884761432303258fcea57bddc2adf6a8de0f36 /gnome/gcalctool/post-install | |
parent | 5d38bf58ee08f88d0cd8866569c05c791dd3250c (diff) | |
download | nutyx-pakxe-83126d5f7567b63f3164ef273cc4fd5379e4d839.tar.gz nutyx-pakxe-83126d5f7567b63f3164ef273cc4fd5379e4d839.tar.bz2 nutyx-pakxe-83126d5f7567b63f3164ef273cc4fd5379e4d839.tar.xz nutyx-pakxe-83126d5f7567b63f3164ef273cc4fd5379e4d839.zip |
Ajout de gcalctool#5.28.1-1
Diffstat (limited to 'gnome/gcalctool/post-install')
-rw-r--r-- | gnome/gcalctool/post-install | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnome/gcalctool/post-install b/gnome/gcalctool/post-install new file mode 100644 index 000000000..7626f0419 --- /dev/null +++ b/gnome/gcalctool/post-install @@ -0,0 +1,32 @@ +#!/bin/sh + +port=gcalctool + +# 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 + +# scrolls +SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`" + +for SCROLL in $SCROLLS +do + /usr/bin/scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null +done + +# desktop database +update-desktop-database > /dev/null + +# End of file + |