summaryrefslogtreecommitdiffstats
path: root/test/evolution/post-install
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-04-27 20:09:41 +0200
committertnut <thierryn1 at hispeed dot ch>2010-04-27 20:09:41 +0200
commit7486156cd6b74e0dd11e47d37d59d6bdcf276e19 (patch)
tree8cf1e8cf649932a51262ac651bf6a34412e5d260 /test/evolution/post-install
parentdd7d52bbd1563f24e9bc066100f16c99930c541e (diff)
downloadnutyx-pakxe-7486156cd6b74e0dd11e47d37d59d6bdcf276e19.tar.gz
nutyx-pakxe-7486156cd6b74e0dd11e47d37d59d6bdcf276e19.tar.bz2
nutyx-pakxe-7486156cd6b74e0dd11e47d37d59d6bdcf276e19.tar.xz
nutyx-pakxe-7486156cd6b74e0dd11e47d37d59d6bdcf276e19.zip
evolution dans test
Diffstat (limited to 'test/evolution/post-install')
-rwxr-xr-xtest/evolution/post-install20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/evolution/post-install b/test/evolution/post-install
new file mode 100755
index 000000000..7810d1d03
--- /dev/null
+++ b/test/evolution/post-install
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+port=evolution
+
+# gconf schemas
+SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`"
+
+for SCHEMA in $SCHEMAS
+do
+ export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
+ 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
+
+# End of file