diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-01-30 18:58:32 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-01-30 18:58:32 +0100 |
commit | c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3 (patch) | |
tree | 5dd470e48d7ce08a53bd8f56ae91d5eeaf6b1607 | |
parent | 96a5ce977a9d1e842af808afe7b7a0613ffd2f6c (diff) | |
download | nutyx-pakxe-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.tar.gz nutyx-pakxe-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.tar.bz2 nutyx-pakxe-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.tar.xz nutyx-pakxe-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.zip |
maj gnome-mount#0.8-2, ajout du post-install
-rw-r--r-- | gnome/gnome-mount/Pkgfile | 2 | ||||
-rwxr-xr-x | gnome/gnome-mount/post-install | 19 |
2 files changed, 20 insertions, 1 deletions
diff --git a/gnome/gnome-mount/Pkgfile b/gnome/gnome-mount/Pkgfile index 848e32683..f907824ae 100644 --- a/gnome/gnome-mount/Pkgfile +++ b/gnome/gnome-mount/Pkgfile @@ -6,7 +6,7 @@ name=gnome-mount version=0.8 -release=1 +release=2 source=(http://hal.freedesktop.org/releases/$name-$version.tar.gz) build() { diff --git a/gnome/gnome-mount/post-install b/gnome/gnome-mount/post-install new file mode 100755 index 000000000..e079178ad --- /dev/null +++ b/gnome/gnome-mount/post-install @@ -0,0 +1,19 @@ +#!/bin/sh + +port=gnome-mount + +# 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 + |