#!/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.30

if ( test "${DESTDIR}/usr/lib" = "/usr/lib" ); then
	rudiments_libs="-lrudiments  -lpthread -lssl -lcrypto -ldl   -L/usr/lib -lpcre  -lrt -lrt -lcrypt  -ldl"  
	rudiments_libs_with_rpath="-lrudiments  -lpthread -lssl -lcrypto -ldl   -L/usr/lib -lpcre  -lrt -lrt -lcrypt  -ldl"
else
	rudiments_libs="-L${DESTDIR}/usr/lib -lrudiments  -lpthread -lssl -lcrypto -ldl   -L/usr/lib -lpcre  -lrt -lrt -lcrypt  -ldl"
	rudiments_libs_with_rpath="-Wl,-rpath ${DESTDIR}/usr/lib -L${DESTDIR}/usr/lib -lrudiments  -lpthread -lssl -lcrypto -ldl   -L/usr/lib -lpcre  -lrt -lrt -lcrypt  -ldl"
fi
if ( test "${DESTDIR}/usr/include" = "/usr/include" ); then
	rudiments_cflags="-pthread  -I/usr/include/openssl   "
else
	rudiments_cflags="-I${DESTDIR}/usr/include -pthread  -I/usr/include/openssl   "
fi

usage()
{
	cat <<EOF
Usage: rudiments-config [OPTIONS]
Options:
	[--prefix]
	[--exec-prefix]
	[--version]
	[--libs]
	[--with-rpath]
	[--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-rpath)
      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      
