blob: 53579ee5f29b02a3942b122c5f0f996efb2e8715 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|