case "$1" in
stylesheet)
  if [ "$VERBOSE" -ge 1 ]
  then
    echo >&2 "Convert to XSL-FO"
  fi
  echo "file:///usr/pkg/share/xsl/docbook/fo/docbook.xsl"
  ;;
post-process)
  EXT=$(basename "$0")
  if [ "$VERBOSE" -ge 1 ]
  then
    echo >&2 "Convert to ${EXT}"
  fi
  # Get the FO format script to do the rest
  sh "$(dirname "$0")/../fo/${EXT}" "$1"
	;;
esac
