summaryrefslogtreecommitdiffstats
path: root/gnome/epiphany/post-install
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-10-25 21:47:05 +0100
committerThierry N <thierryn1 at hispeed dot ch>2009-10-25 21:47:05 +0100
commit01c2afbf97ea98636fc6814eca37fd9027e4db61 (patch)
tree91399f873cf5d0924ea2763dfdb2de0e3bfa9459 /gnome/epiphany/post-install
parent021735f890abba6f6045756f14a0f272620ad5e2 (diff)
downloadnutyx-extra-01c2afbf97ea98636fc6814eca37fd9027e4db61.tar.gz
nutyx-extra-01c2afbf97ea98636fc6814eca37fd9027e4db61.tar.bz2
nutyx-extra-01c2afbf97ea98636fc6814eca37fd9027e4db61.tar.xz
nutyx-extra-01c2afbf97ea98636fc6814eca37fd9027e4db61.zip
Ajout de epiphany#2.26.3-1
Diffstat (limited to 'gnome/epiphany/post-install')
-rw-r--r--gnome/epiphany/post-install33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnome/epiphany/post-install b/gnome/epiphany/post-install
new file mode 100644
index 000000000..8c8c766de
--- /dev/null
+++ b/gnome/epiphany/post-install
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+port=epiphany
+
+# 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
+
+