blob: 671d6cd3f6ba3f09e2895f60accf9ec55616e20a (
plain) (
tree)
|
|
#!/bin/sh
#
# $FreeBSD: ports/devel/gnomevfs2/pkg-install.in,v 1.3 2005/11/05 04:53:17 marcus Exp $
# $MCom: ports/devel/gnomevfs2/pkg-install.in,v 1.5 2005/06/28 05:40:01 adamw Exp $
#
# Restore gconf keys of libgnome.
if [ "$2" != "POST-INSTALL" ]; 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
|