#!/bin/sh
#
# $FreeBSD: head/devel/gnome-vfs/pkg-install.in 340719 2014-01-22 15:52:06Z mat $
#   $MCom: ports/devel/gnome-vfs/pkg-install.in,v 1.28 2010/09/29 12:30:29 kwm Exp $
#
# Restore gconf keys of libgnome.

if [ "$2" != "POST-INSTALL" ]; 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