diff options
author | sibelle <lesibel@free.fr> | 2010-02-07 07:53:27 +0100 |
---|---|---|
committer | sibelle <lesibel@free.fr> | 2010-02-07 07:53:27 +0100 |
commit | 8bd84b0edf380f00244be29090ce68f8b34456cc (patch) | |
tree | fba27cbe07e4774fcdd6443dead12a468d004c0e /gnome/rhythmbox/post-install | |
parent | 53bff858c3ef02bf7ba9ee0e247488fc54f7c42e (diff) | |
parent | 5bd127c0743239bc774481e4a7b947719c984f5d (diff) | |
download | nutyx-extra-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.gz nutyx-extra-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.bz2 nutyx-extra-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.xz nutyx-extra-8bd84b0edf380f00244be29090ce68f8b34456cc.zip |
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'gnome/rhythmbox/post-install')
-rw-r--r-- | gnome/rhythmbox/post-install | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnome/rhythmbox/post-install b/gnome/rhythmbox/post-install new file mode 100644 index 000000000..f4980ca39 --- /dev/null +++ b/gnome/rhythmbox/post-install @@ -0,0 +1,32 @@ +#!/bin/sh + +port=rhythmbox + +# 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 + |