aboutsummaryrefslogblamecommitdiff
path: root/devel/gnome-vfs/pkg-deinstall.in
blob: d1783a46cd02054f7ee2e13c17b382a5e48e1bb3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


           
                                                                                       






                                     
                                                                                   

                          

                                                                                 



                                            
#!/bin/sh
#
# $FreeBSD$
#   $MCom: ports/devel/gnome-vfs/pkg-deinstall.in,v 1.10 2006/07/22 20:45:37 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