blob: 3daa524d3b7f058013335eeeed33577945a05708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
port=vinagre
# 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
# scrolls
SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`"
for SCROLL in $SCROLLS
do
scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null
done
# mime database
update-mime-database /usr/share/mime > /dev/null
# desktop database
update-desktop-database > /dev/null
# End of file
|