freebsd-ports/devel/gnome-vfs/pkg-deinstall.in
2007-12-12 04:35:14 +00:00

20 lines
502 B
Bash

#!/bin/sh
#
# $FreeBSD$
# $MCom: ports-stable/devel/gnome-vfs/pkg-deinstall.in,v 1.1 2007/12/02 00:27:46 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