2005-01-29 21:21:04 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
2006-04-30 02:47:21 +02:00
|
|
|
# $MCom: ports/devel/gnomevfs2/pkg-deinstall.in,v 1.7 2005/11/15 06:12:28 marcus Exp $
|
2005-01-29 21:21:04 +01:00
|
|
|
#
|
|
|
|
# Restore gconf keys of libgnome.
|
|
|
|
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
SCHEMAS=%%X11BASE%%/etc/gconf/schemas/desktop_gnome_applications_terminal.schemas
|
|
|
|
|
|
|
|
if [ -f ${SCHEMAS} ]; then
|
|
|
|
env GCONF_CONFIG_SOURCE=xml::%%X11BASE%%/etc/gconf/gconf.xml.defaults \
|
|
|
|
%%X11BASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \
|
|
|
|
> /dev/null || /usr/bin/true
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|