diff options
Diffstat (limited to 'evolution-exchange/post-install')
-rw-r--r-- | evolution-exchange/post-install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/evolution-exchange/post-install b/evolution-exchange/post-install new file mode 100644 index 0000000..53579ee --- /dev/null +++ b/evolution-exchange/post-install @@ -0,0 +1,14 @@ +#!/bin/sh + +port=evolution-exchange + +# 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 + +# End of file |