home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -e
-
- # clean up old catalogs installed by the metacity package in the past
- # (to be dropped after etch releases)
- /usr/sbin/install-sgmlcatalog --quiet --remove metacity || true
- /usr/sbin/update-catalog --quiet --remove --super /etc/sgml/metacity.cat || true
- rm -f /etc/sgml/metacity.cat /etc/sgml/metacity.cat.old
-
- # Automatically added by dh_installcatalogs
- if [ "$1" = "configure" ]; then
- rm -f /etc/sgml/metacity-common.cat
- for ordcat in /usr/share/sgml/metacity-common/catalog; do
- update-catalog --quiet --add /etc/sgml/metacity-common.cat ${ordcat}
- done
- update-catalog --quiet --add --super /etc/sgml/metacity-common.cat
- fi
- # End automatically added section
- # Automatically added by dh_gconf
- if [ "$1" = "configure" ] && which update-gconf-defaults >/dev/null 2>&1; then
- update-gconf-defaults
- fi
- # End automatically added section
- # Automatically added by dh_gconf
- if [ "$1" = "configure" ]; then
- gconf-schemas --register metacity.schemas
- fi
- # End automatically added section
-
-
- exit 0
-
-