#! /bin/sh
dir="/usr/local"
# $Id$
# Author of this file: Martin Preuss<martin@libchipcard.de>

prefix=/usr/local
exec_prefix=${prefix}
includedir=${prefix}/include
bindir=${exec_prefix}/bin

libdir=${exec_prefix}/lib

result=""

for d in $*; do
    case $d in
	--includes)
	    result="$result -I${includedir}/gwenhywfar4"
	    ;;
	--libraries)
	    result="$result -L${libdir} -lgwenhywfar"
	    ;;
	--bindir)
	    result="$result ${bindir}"
	    ;;
	--headers)
	    result="$result ${includedir}/gwenhywfar4/gwenhywfar"
	    ;;
	--plugins)
	    result="$result ${libdir}/gwenhywfar/plugins/60"
	    ;;
	--vmajor)
	    result="$result 4"
	    ;;
	--vminor)
	    result="$result 13"
	    ;;
	--vpatchlevel)
	    result="$result 1"
	    ;;
	--vbuild)
	    result="$result 0"
	    ;;
	--vtag)
	    result="$result stable"
	    ;;
        --vstring)
	    result="$result 4.13.1"
            ;;
        --has-crypt)
	    # Keep this argument in order not to completely break
	    # the old gwenhywfar.m4 macro.
	    result="This argument is obsolete. See $0 --help for current arguments."
            ;;
	--has-ui)
	    # Keep this argument in order not to completely break
	    # the old gwenhywfar.m4 macro.
	    result="This argument is obsolete. See $0 --help for current arguments."
	    ;;
	--libraries++)
	    # Keep this argument in order not to completely break
	    # the old gwenhywfar.m4 macro.
	    result="This argument is obsolete. See $0 --help for current arguments."
	    ;;
	--libraries-ui)
	    # Keep this argument in order not to completely break
	    # the old gwenhywfar.m4 macro.
	    result="This argument is obsolete. See $0 --help for current arguments."
	    ;;
	*)
	    echo "Usage:"
	    echo "$0 --includes gives you the include flags"
	    echo "$0 --libraries gives you the library flags"
	    echo "$0 --bindir returns the folder for binary tools"
	    echo "$0 --headers gives you the location of the header files"
	    echo "$0 --vmajor gives the major version of LibGwenhywfar"
	    echo "$0 --vminor gives the minor version of LibGwenhywfar"
	    echo "$0 --vpatchlevel gives the patchlevel of LibGwenhywfar"
	    echo "$0 --vbuild gives the build number of LibGwenhywfar"
	    echo "$0 --vtag gives the tag of LibGwenhywfar (cvs, beta or stable)"
	    echo "$0 --vstring returns a version string"
	    exit 1
	    ;;
    esac
done
echo $result
