diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-21 22:25:21 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-21 22:25:21 +0200 |
commit | fcb7a8269f0bd19bd9b86804c79347339f58779f (patch) | |
tree | 2a7bf95921e04c772c3c9cec281249ed951ed11f /extra/evince/post-install | |
parent | cc102e06b8a7a8593285500cae2eca5653ebf36d (diff) | |
download | nutyx-extra-fcb7a8269f0bd19bd9b86804c79347339f58779f.tar.gz nutyx-extra-fcb7a8269f0bd19bd9b86804c79347339f58779f.tar.bz2 nutyx-extra-fcb7a8269f0bd19bd9b86804c79347339f58779f.tar.xz nutyx-extra-fcb7a8269f0bd19bd9b86804c79347339f58779f.zip |
Ajout de evince#2.26.2-2
Diffstat (limited to 'extra/evince/post-install')
-rwxr-xr-x | extra/evince/post-install | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/evince/post-install b/extra/evince/post-install new file mode 100755 index 000000000..3f36fd51c --- /dev/null +++ b/extra/evince/post-install @@ -0,0 +1,31 @@ +#!/bin/sh + +port=evince + +# gconf schemas +SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`" + +for SCHEMA in $SCHEMAS +do + export GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` + /usr/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 |