#!/bin/sh
# $Id: yaz-config.in,v 1.13 2002/05/13 14:13:37 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.7
yaz_build_root=/usr/ports/net/yaz/work/yaz-1.8.7

yazextralibs=""
YAZVERSION=1.8.7

usage()
{
	cat <<EOF
Usage: yaz-config [OPTIONS] [LIBRARIES]
Options:
	[--prefix[=DIR]]
	[--version]
	[--libs]
	[--lalibs]
	[--cflags]
	[--tabs]
	[--comp]
Libraries:
	threads
        malloc
        ssl
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
      ;;
    malloc)
      lib_malloc=yes
      ;;
    ssl)
      lib_ssl=yes
      ;;
    -*)
      yaz_echo_help=yes
      ;;
  esac
  shift
done

lyaz="-lyaz"

if test "$lib_thread" = "yes" -a -n "-DYAZ_POSIX_THREADS=1 -D_REENTRANT"; then
    yazextralibs="-lpthread $yazextralibs"
    lyaz="-lyazthread $lyaz"
fi 

if test "$lib_malloc" = "yes"; then
    lyaz="-lyazmalloc $lyaz"
fi

if test "$lib_ssl" = "yes" -a -n ""; then
    yazextralibs=" $yazextralibs"
    lyaz="-lyazssl $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"
    YAZLALIB="${yaz_build_root}/lib/libyaz.la $yazextralibs"
    if test "$lib_ssl" = "yes" -a -n "$SSL_LIBS@"; then
        YAZLALIB="${yaz_build_root}/lib/libyazssl.la"
    fi
    if test "$lib_thread" = "yes" -a -n "-DYAZ_POSIX_THREADS=1 -D_REENTRANT"; then
        YAZLALIB="${yaz_build_root}/lib/libyazthread.la $YAZLALIB"
    fi
    if test "$lib_malloc" = "yes"; then
        YAZLALIB="${yaz_build_root}/lib/libyazmalloc.la $YAZLALIB"
    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

YAZINC="$YAZINC "

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

if test "$lib_ssl" = "yes"; then
    YAZINC="$YAZINC "
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
