summaryrefslogblamecommitdiffstats
path: root/x11/libgnome/files/pkg-deinstall.in
blob: 808651544ce085b7bdd36df9d8fd71aabcf76f09 (plain) (tree)
1
2
3
4

         

                                                                                         















                                                                                 
#!/bin/sh
#
# $FreeBSD$
#   $MCom: ports/x11/libgnome/files/pkg-deinstall.in,v 1.22 2009/07/31 10:50:57 kwm 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