#! /bin/sh

set -e

PROG=/usr/games/geki3

case "$1" in
  configure)
    # Cancel my old stupid use of dpkg-statoverride
    if [ "$1" = "configure" ] && [ "$2" != "" ] &&
          dpkg --compare-versions "$2" le "1.0.3-4" &&
          dpkg-statoverride --list "$PROG" >/dev/null
    then
        dpkg-statoverride --remove "$PROG"
    fi

    # Properly use statoverride
    if ! dpkg-statoverride --list "$PROG" >/dev/null ; then
      chown root:games "$PROG"
      chmod 2755 "$PROG"
    fi

    if ! test -f /var/games/geki3.scores; then
      mkdir -p /var/games
      cat >/var/games/geki3.scores <<EOF
10000
10000 1 0 anonymous
9000 1 0 anonymous
8000 1 0 anonymous
7000 1 0 anonymous
3000 0 0 anonymous
EOF
      chown root:games /var/games/geki3.scores
      chmod 0664 /var/games/geki3.scores
    fi
    ;;
  abort-upgrade|abort-remove|abort-deconfigure)
    ;;
  *)
    echo "postinst called with unknown argument \`$1'" >&2
    exit 1
    ;;
esac

#DEBHELPER#

