#!/bin/sh
set -e
# Automatically added by dh_python
PYTHON=python2.4
if which $PYTHON >/dev/null 2>&1 && [ -e /usr/lib/$PYTHON/compileall.py ]; then
	DIRLIST=" /usr/lib/python2.4/site-packages"
	for i in $DIRLIST ; do
		$PYTHON -O /usr/lib/$PYTHON/compileall.py -q $i
		$PYTHON /usr/lib/$PYTHON/compileall.py -q $i
	done
fi
# End automatically added section
# Automatically added by dh_gconf
if [ "$1" = "configure" ]; then
	gconf-schemas --register webboard.schemas 
fi
# End automatically added section
# Automatically added by dh_desktop
if [ "$1" = "configure" ] && which update-desktop-database >/dev/null 2>&1 ; then
	update-desktop-database -q
fi
# End automatically added section
