diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-10-11 00:04:55 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-10-11 00:04:55 +0800 |
commit | 3d31893a84d4686f86ea947b1f8df6ee21ec4614 (patch) | |
tree | 22ffb6932306c7f6707eaf1921d72595320b5fa0 /devel/gnome-vfs/pkg-deinstall.in | |
parent | 55fea18f55675f7afee2dd95926abcd2b86c56de (diff) | |
download | marcuscom-ports-3d31893a84d4686f86ea947b1f8df6ee21ec4614.tar.gz marcuscom-ports-3d31893a84d4686f86ea947b1f8df6ee21ec4614.tar.zst marcuscom-ports-3d31893a84d4686f86ea947b1f8df6ee21ec4614.zip |
Update to 2.24.2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13106 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnome-vfs/pkg-deinstall.in')
-rw-r--r-- | devel/gnome-vfs/pkg-deinstall.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/gnome-vfs/pkg-deinstall.in b/devel/gnome-vfs/pkg-deinstall.in new file mode 100644 index 000000000..1244260e2 --- /dev/null +++ b/devel/gnome-vfs/pkg-deinstall.in @@ -0,0 +1,20 @@ +#!/bin/sh +# +# $FreeBSD: ports/devel/gnome-vfs/pkg-deinstall.in,v 1.10 2009/01/10 05:21:21 marcus Exp $ +# $MCom: ports/devel/gnome-vfs/pkg-deinstall.in,v 1.20 2008/08/06 04:22:49 mezz Exp $ +# +# Restore gconf keys of libgnome. + +if [ "$2" != "POST-DEINSTALL" ]; then + exit 0 +fi + +SCHEMAS=%%LOCALBASE%%/etc/gconf/schemas/desktop_gnome_applications_terminal.schemas + +if [ -f ${SCHEMAS} ]; then + env GCONF_CONFIG_SOURCE=xml::%%LOCALBASE%%/etc/gconf/gconf.xml.defaults \ + %%LOCALBASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \ + > /dev/null || /usr/bin/true +fi + +exit 0 |