summaryrefslogtreecommitdiffstats
path: root/gnome
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-01-30 18:58:32 +0100
committertnut <thierryn1 at hispeed dot ch>2010-01-30 18:58:32 +0100
commitc8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3 (patch)
tree5dd470e48d7ce08a53bd8f56ae91d5eeaf6b1607 /gnome
parent96a5ce977a9d1e842af808afe7b7a0613ffd2f6c (diff)
downloadnutyx-extra-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.tar.gz
nutyx-extra-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.tar.bz2
nutyx-extra-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.tar.xz
nutyx-extra-c8cdbaa37110978ac25e1f30ab4bf2ccadc9e9c3.zip
maj gnome-mount#0.8-2, ajout du post-install
Diffstat (limited to 'gnome')
-rw-r--r--gnome/gnome-mount/Pkgfile2
-rwxr-xr-xgnome/gnome-mount/post-install19
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
+