diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-06 19:24:52 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-06 19:24:52 +0100 |
commit | 9179397f5447873a672bd20ba079ca03fec23681 (patch) | |
tree | 7557856233a8cb21d10c4f8fcd52f9ccdee8b0f4 /gnome/rhythmbox/post-install | |
parent | a8d803ef557c40102c01dc11c0f21b99534c5841 (diff) | |
download | nutyx-pakxe-9179397f5447873a672bd20ba079ca03fec23681.tar.gz nutyx-pakxe-9179397f5447873a672bd20ba079ca03fec23681.tar.bz2 nutyx-pakxe-9179397f5447873a672bd20ba079ca03fec23681.tar.xz nutyx-pakxe-9179397f5447873a672bd20ba079ca03fec23681.zip |
rhythmbox, déplacé dans gnome, ajout du post-install et suppression de gtk-doc
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 + |