#!/bin/sh # # $FreeBSD: ports/x11/libgnome/files/pkg-deinstall.in,v 1.9 2009/04/10 05:56:19 marcus Exp $ # $MCom: ports/x11/libgnome/files/pkg-deinstall.in,v 1.20 2009/04/09 03:24:10 mezz Exp $ # # Restore gconf keys of gnomevfs2. if [ "$2" != "POST-DEINSTALL" ]; then exit 0 fi SCHEMAS=%%LOCALBASE%%/etc/gconf/schemas/desktop_default_applications.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