diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-12-25 02:20:42 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-12-25 02:20:42 +0800 |
commit | 82792921749a46c40b168bf0eebb462148661bf4 (patch) | |
tree | 9d88c984200fce30875bf5e59c49b2cc326eb73c /devel/gnome-vfs/pkg-deinstall.in | |
parent | 4e4fce03b92399ef2a9c439a066cebb8c62c173d (diff) | |
download | marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.tar marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.tar.gz marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.tar.bz2 marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.tar.lz marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.tar.xz marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.tar.zst marcuscom-ports-82792921749a46c40b168bf0eebb462148661bf4.zip |
devel/gnomevfs2:
Add pkg-deinstall.in to restore gconf keys of libgnome.
x11/libgnome:
Re-add libgnome, add pkg-desinstall to restore gconf keys of gnomevfs2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3326 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnome-vfs/pkg-deinstall.in')
-rw-r--r-- | devel/gnome-vfs/pkg-deinstall.in | 19 |
1 files changed, 19 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..7e289a563 --- /dev/null +++ b/devel/gnome-vfs/pkg-deinstall.in @@ -0,0 +1,19 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Restore gconf keys of libgnome. + +if [ "$2" != "POST-DEINSTALL" ]; then + exit 0 +fi + +SCHEMAS=%%X11BASE%%/etc/gconf/schemas/desktop_gnome_applications_terminal.schemas + +if [ -f ${SCHEMAS} ]; then + env GCONF_CONFIG_SOURCE=xml::%%X11BASE%%/etc/gconf/gconf.xml.defaults \ + %%X11BASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \ + > /dev/null || /usr/bin/true +fi + +exit 0 |