summaryrefslogtreecommitdiffstats
path: root/extra/evince/post-install
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-21 22:25:21 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-21 22:25:21 +0200
commitfcb7a8269f0bd19bd9b86804c79347339f58779f (patch)
tree2a7bf95921e04c772c3c9cec281249ed951ed11f /extra/evince/post-install
parentcc102e06b8a7a8593285500cae2eca5653ebf36d (diff)
downloadnutyx-pakxe-fcb7a8269f0bd19bd9b86804c79347339f58779f.tar.gz
nutyx-pakxe-fcb7a8269f0bd19bd9b86804c79347339f58779f.tar.bz2
nutyx-pakxe-fcb7a8269f0bd19bd9b86804c79347339f58779f.tar.xz
nutyx-pakxe-fcb7a8269f0bd19bd9b86804c79347339f58779f.zip
Ajout de evince#2.26.2-2
Diffstat (limited to 'extra/evince/post-install')
-rwxr-xr-xextra/evince/post-install31
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