2005-01-29 21:21:04 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
2010-11-20 16:37:08 +01:00
|
|
|
# $MCom: ports/devel/gnome-vfs/pkg-deinstall.in,v 1.28 2010/09/29 12:30:29 kwm Exp $
|
2005-01-29 21:21:04 +01:00
|
|
|
#
|
|
|
|
# Restore gconf keys of libgnome.
|
|
|
|
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2006-10-14 10:35:50 +02:00
|
|
|
SCHEMAS=%%LOCALBASE%%/etc/gconf/schemas/desktop_gnome_applications_terminal.schemas
|
2005-01-29 21:21:04 +01:00
|
|
|
|
|
|
|
if [ -f ${SCHEMAS} ]; then
|
2006-10-14 10:35:50 +02:00
|
|
|
env GCONF_CONFIG_SOURCE=xml::%%LOCALBASE%%/etc/gconf/gconf.xml.defaults \
|
|
|
|
%%LOCALBASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \
|
2005-01-29 21:21:04 +01:00
|
|
|
> /dev/null || /usr/bin/true
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|