blob: 51a94a1be8bab461be0e396e4f45843e9cf56fc5 (
plain) (
tree)
|
|
#!/bin/sh
#
# $FreeBSD$
# $MCom: ports/devel/gnome-vfs/pkg-deinstall.in,v 1.19 2008/08/06 02:04:27 marcus 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
|