#!/bin/sh
# $Id: yaz-config.in,v 1.10 2001/10/15 20:37:08 adam Exp $
yazprefix=/usr/local
yaz_echo_cflags=no
yaz_echo_libs=no
yaz_echo_help=no
yaz_echo_tabs=no
yaz_echo_source=no
yaz_echo_lalibs=no
yaz_echo_comp=no
yaz_src_root=/usr/ports/net/yaz/work/yaz-1.8
yaz_build_root=/usr/ports/net/yaz/work/yaz-1.8

yazextralibs=""
YAZVERSION=1.8

usage()
{
	cat <<EOF
Usage: yaz-config [OPTIONS] [LIBRARIES]
Options:
	[--prefix[=DIR]]
	[--version]
	[--libs]
	[--lalibs]
	[--cflags]
	[--tabs]
	[--comp]
Libraries:
	threads
EOF
	exit $1
}

#if test $# -eq 0; then
#	yaz_echo_help=yes
#fi

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

  case $1 in
    --prefix=*)
      yazprefix=$optarg
      ;;
    --prefix)
      echo $yazprefix
      exit 0
      ;;
    --version)
      echo $YAZVERSION
      exit 0
      ;;
    --cflags)
      yaz_echo_cflags=yes
      ;;
    --libs)
      yaz_echo_libs=yes
      ;;
    --tabs)
      yaz_echo_tabs=yes
      ;;
    --lalibs)
      yaz_echo_lalibs=yes
      ;;
    --comp)
      yaz_echo_comp=yes
      ;;
    threads)
      lib_thread=yes
      ;;
    -*)
      yaz_echo_help=yes
      ;;
  esac
  shift
done

if test "$lib_thread" = "yes" -a -n "-DYAZ_POSIX_THREADS=1 -D_REENTRANT"; then
    yazextralibs="-lpthread $yazextralibs"
    lyaz="-lyazthread -lyaz"
else
    lyaz="-lyaz"
fi 
if test "$yaz_echo_source" = "yes"; then
    YAZTAB=${yaz_src_root}/tab
    YAZBIN=${yaz_build_root}/bin
    YAZLIB="-L${yaz_build_root}/lib/.libs $lyaz $yazextralibs"
    if test "$lib_thread" = "yes" -a -n "-DYAZ_POSIX_THREADS=1 -D_REENTRANT"; then
        YAZLALIB="${yaz_build_root}/lib/libyazthread.la ${yaz_build_root}/lib/libyaz.la $yazextralibs"
    else
        YAZLALIB="${yaz_build_root}/lib/libyaz.la $yazextralibs"
    fi
    YAZINC="-I${yaz_src_root}/include"
    YAZCOMP=${yaz_src_root}/util/yaz-comp
else
    YAZTAB=${yazprefix}/share/yaz/tab
    YAZBIN=${yazprefix}/bin
    YAZCOMP=${yazprefix}/bin/yaz-comp

    if test "$yazprefix" = "/usr"; then
	YAZLIB="$lyaz $yazextralibs"
    else
	YAZLIB="-L$yazprefix/lib $lyaz $yazextralibs"
    fi
    YAZLALIB=$YAZLIB
    if test "$yazprefix" = "/usr"; then
	YAZINC=
    else
	YAZINC=-I$yazprefix/include
    fi
fi

if test "$lib_thread" = "yes"; then
    YAZINC="$YAZINC -DYAZ_POSIX_THREADS=1 -D_REENTRANT"
fi

if test "$yaz_echo_help" = "yes"; then
	usage 1 1>&2
fi
if test "$yaz_echo_cflags" = "yes"; then
	echo $YAZINC
fi
if test "$yaz_echo_libs" = "yes"; then
	echo $YAZLIB
fi
if test "$yaz_echo_tabs" = "yes"; then
	echo $YAZTAB
fi
if test "$yaz_echo_lalibs" = "yes"; then
	echo $YAZLALIB
fi
if test "$yaz_echo_comp" = "yes"; then
	echo $YAZCOMP
fi
