#!/bin/sh
CONFIG_LIBS="-L/usr/lib64 -lgdal"
CONFIG_DEP_LIBS="-L/usr/lib64 -lgeos -lgeos_c -lodbc -lodbcinst -lxerces-c -ljasper -lhdf5 -lmfhdf -ldf -logdi31 -lgif -ljpeg -lgeotiff -ltiff -lpng -lnetcdf -lcsf -lcfitsio -lpq -L/usr/lib64 -lpq -lz  -lm -lrt -ldl  -L/usr/lib -ldap  -L/usr/lib64 -lcurl -lidn -lssh2 -lssl -lcrypto -lldap -lz -lxml2 -lz -lm -lpthread -lsqlite3   -L/usr/lib64 -lcurl -lidn -lssh2 -lssl -lcrypto -lldap -lz  "
CONFIG_PREFIX="/usr"
CONFIG_CFLAGS="-I/usr/include"
CONFIG_VERSION="1.4.3"
CONFIG_OGR_ENABLED=yes
CONFIG_FORMATS="gxf gtiff hfa aigrid aaigrid ceos ceos2 iso8211 xpm sdts raw dted mem jdem envisat elas fit vrt usgsdem l1b nitf bmp pcidsk airsar rs2 ilwis rmf rik leveller sgi idrisi wcs dods bsb jpeg2000 hdf5 hdf4 ogdi gif jpeg png netcdf pcraster fits "
usage()
{
	cat <<EOF
Usage: gdal-config [OPTIONS]
Options:
	[--prefix[=DIR]]
	[--libs]
	[--dep-libs]
	[--cflags]
	[--version]
	[--ogr-enabled]
	[--formats]
EOF
	exit $1
}

if test $# -eq 0; then
	usage 1 1>&2
fi

case $1 in 
  --libs)
    echo $CONFIG_LIBS
    ;;

  --dep-libs)
    echo $CONFIG_DEP_LIBS
    ;;

  --cflags)
    echo $CONFIG_CFLAGS
    ;;

  --prefix)
    echo $CONFIG_PREFIX
    ;;

  --version)
    echo $CONFIG_VERSION
    ;;

  --ogr-enabled)
    echo $CONFIG_OGR_ENABLED
    ;;

  --formats)
    echo $CONFIG_FORMATS
    ;;

  *)
    usage 1 1>&2
    ;;

esac
