diff options
author | fredjo <frederic.joly@9online.fr> | 2009-11-04 11:53:42 +0100 |
---|---|---|
committer | fredjo <frederic.joly@9online.fr> | 2009-11-04 11:53:42 +0100 |
commit | d794e76011b6bddd371d219dbc6b56df4d253cb1 (patch) | |
tree | 3685efc25a30f67b27fb497518e1e80790002815 /gnome/brasero/post-install | |
parent | 2395cb92b8c0a725ad4bbcd14b84fea4c63a6a8e (diff) | |
download | nutyx-pakxe-d794e76011b6bddd371d219dbc6b56df4d253cb1.tar.gz nutyx-pakxe-d794e76011b6bddd371d219dbc6b56df4d253cb1.tar.bz2 nutyx-pakxe-d794e76011b6bddd371d219dbc6b56df4d253cb1.tar.xz nutyx-pakxe-d794e76011b6bddd371d219dbc6b56df4d253cb1.zip |
deplacement de brasero vers gnome
Diffstat (limited to 'gnome/brasero/post-install')
-rwxr-xr-x | gnome/brasero/post-install | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome/brasero/post-install b/gnome/brasero/post-install new file mode 100755 index 000000000..e1c6f4a43 --- /dev/null +++ b/gnome/brasero/post-install @@ -0,0 +1,31 @@ +#!/bin/sh + +port=sound-juicer + +# 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 + +# desktop database +update-desktop-database > /dev/null + +# End of file |