#!/bin/sh

# rudiments-config provides various informations about the rudiments
# libraries. Julien MOUTTE 17/04/2002

prefix=${DESTDIR}/usr
exec_prefix=${DESTDIR}/usr
exec_prefix_set=no
version=0.53

cflags="  "
libs="-lrudiments   -lssl -lcrypto  -lpcre   -lcrypt      -ldl "

# fake out rpmlint
rp="rp"
ath="ath"

if ( test "${DESTDIR}/usr/lib64" = "/usr/lib" ); then
	rudiments_libs="$libs"
	rudiments_libs_with_rpath="$rudiments_libs"
else
	rudiments_libs="-L${DESTDIR}/usr/lib64 $libs"
	rudiments_libs_with_rpath="-Wl,-$rp$ath ${DESTDIR}/usr/lib64 $rudiments_libs"
fi
if ( test "${DESTDIR}/usr/include" = "/usr/include" ); then
	rudiments_cflags="$cflags"
else
	rudiments_cflags="-I${DESTDIR}/usr/include $cflags" 
fi

usage()
{
	cat <<EOF
Usage: rudiments-config [OPTIONS]
Options:
	[--prefix]
	[--exec-prefix]
	[--version]
	[--libs]
	[--with-$rp$ath]
	[--cflags]
EOF
	exit $1
}

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

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

  case $1 in
    --prefix)
      echo_prefix=yes
      ;;
    --exec-prefix)
      echo_exec_prefix=yes
      ;;
    --version)
      echo $version
      ;;
    --cflags)
      echo_cflags=yes
      ;;
    --libs)
      echo_libs=yes
      ;;
    --with-$rp$ath)
      with_rpath=yes
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

if ( test "$echo_prefix" = "yes" ); then
	echo $prefix
fi

if ( test "$echo_exec_prefix" = "yes" ); then
	echo $exec_prefix
fi

if ( test "$echo_cflags" = "yes" ); then
      echo $rudiments_cflags
fi

if ( test "$echo_libs" = "yes" ); then
    if ( test "$with_rpath" = "yes" ); then
      echo $rudiments_libs_with_rpath
    else
      echo $rudiments_libs
    fi
fi      
