summaryrefslogtreecommitdiffstats
path: root/gnome/eog/post-install
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-10-25 18:07:04 +0100
committerThierry N <thierryn1 at hispeed dot ch>2009-10-25 18:07:04 +0100
commita558f7ab121f8ad0fa431965ab03e91159ba940a (patch)
treeb5a9dbc3fc889dd22ca685c33fe66fee62d426ad /gnome/eog/post-install
parentc90a4d33a7493fc1fd23636631e9143232cece0d (diff)
downloadnutyx-extra-a558f7ab121f8ad0fa431965ab03e91159ba940a.tar.gz
nutyx-extra-a558f7ab121f8ad0fa431965ab03e91159ba940a.tar.bz2
nutyx-extra-a558f7ab121f8ad0fa431965ab03e91159ba940a.tar.xz
nutyx-extra-a558f7ab121f8ad0fa431965ab03e91159ba940a.zip
ajout de eog#2.28.1-1
Diffstat (limited to 'gnome/eog/post-install')
-rwxr-xr-xgnome/eog/post-install32
1 files changed, 32 insertions, 0 deletions
diff --git a/gnome/eog/post-install b/gnome/eog/post-install
new file mode 100755
index 000000000..e36687de1
--- /dev/null
+++ b/gnome/eog/post-install
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+port=eog
+
+# 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
+