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


           
                                                                                    






                                   
                                                                                   

                          

                                                                                 



                                            
#!/bin/sh
#
# $FreeBSD$
#   $MCom: ports/devel/gnome-vfs/pkg-install.in,v 1.9 2006/05/18 01:55:59 ahze Exp $
#
# Restore gconf keys of libgnome.

if [ "$2" != "POST-INSTALL" ]; 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