#!/bin/sh

usage="\
    Usage: gnome-vfs-config [--version] [--config] [--cflags] [--libs]"

config_file="/usr/local/lib/vfsConf.sh"
. $config_file

if test $# -eq 0; then
      echo "${usage}" 1>&2
      exit 1
fi

while test $# -gt 0; do
  case "$1" in
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) optarg= ;;
  esac

  case $1 in
    --version)
      echo 1.0.5
      ;;
    --config)
      echo $config_file
      ;;
    --cflags)
      echo $VFS_INCLUDEDIR
      ;;
    --libs)
      echo "$VFS_LIBDIR $VFS_LIBS"
      ;;
    *)
      echo "${usage}" 1>&2
      exit 1
  esac
  shift
done
