#! /bin/sh
#
# Borrowed the idea for this script (and some code) from libcurl.
#
prefix=/usr
exec_prefix=${prefix}
includedir=${prefix}/include

usage()
{
    cat <<EOF
Usage: ncdap-config [OPTION]

Available values for OPTION include:

  --help      display this help message and exit
  --cc        C compiler
  --cxx       C++ compiler
  --fc        Fortran compiler
  --cflags    pre-processor and compiler flags
  --fflags    flags needed to compile a Fortran program
  --libs      library linking information for libnc-dap
  --flibs     libraries needed to link a Fortran program
  --prefix    Install prefix
  --version   Library version
EOF

    exit $1
}

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

while test $# -gt 0; do
    case "$1" in
    # this deals with options in the style
    # --option=value and extracts the value part
    # [not currently used]
    -*=*) value=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
    *) value= ;;
    esac

    case "$1" in
    --help)
	usage 0
	;;

    --cc)
	echo "gcc"
	;;

    --cxx)
	echo "g++"
	;;

    --fc)
	echo "f77"
	;;

    --cflags)
	echo "-I${includedir}/libnc-dap"
	;;

    --fflags)
	echo "-O2 -g -pipe -m32 -fsigned-char -I${includedir}/libnc-dap"
	;;

    --libs)
       	echo "-lnc-dap  -L/usr/lib -ldap -ldapclient -L/usr/lib -lcurl -L/usr/kerberos/lib -lssl -lcrypto -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto -lresolv -ldl -lz -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -L/usr/kerberos/lib -lidn -lssl -lcrypto -lssl -lcrypto -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto -lresolv -ldl -lz -lz  -lpthread "
       	;;

    --flibs)
       	echo "-lnc-dap  -L/usr/lib -ldap -ldapclient -L/usr/lib -lcurl -L/usr/kerberos/lib -lssl -lcrypto -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto -lresolv -ldl -lz -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -L/usr/kerberos/lib -lidn -lssl -lcrypto -lssl -lcrypto -lgssapi_krb5 -lkrb5 -lcom_err -lk5crypto -lresolv -ldl -lz -lz  -lpthread   -lstdc++"
       	;;

    --prefix)
       	echo "${prefix}"
       	;;

    --version)
	echo "libnc-dap 3.7.0"
	;;

    *)
        echo "unknown option: $1"
	usage
	exit 1
	;;
    esac
    shift
done

exit 0
