#!/bin/sh
# src/tools/gtkada-config.  Generated from gtkada-config.in by configure.

prefix=/usr
exec_prefix=${prefix}
libdir=${prefix}/lib/ada/adalib/gtkada2
includedir=${prefix}/share/ada/adainclude/gtkada2
gtk_libs="-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lcairo -lgio-2.0 -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0  "

cflags_static="-aI${includedir} -aO${libdir}"
cflags_relocatable="-aI${includedir} -aO${libdir}"
libs_relocatable="-L${prefix}/lib -lgtkada2 ${gtk_libs}"
libs_static="${prefix}/lib/libgtkada2.a ${gtk_libs}"

usage()
{
        cat <<EOF
Usage: gtkada-config [OPTIONS]
Options:
        [--prefix]
        [--version|-v]
        [--libs]
        [--cflags]
        [--static]
        [--help|-h]
EOF
        exit $1
}

show_cflags=1
show_libs=1
libtype=relocatable

# Can have the following values:
#   0 = none
#   1 = cflags
#   2 = libs
#   4 = complete
output_type=4
while test $# -gt 0; do
  case "$1" in
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) optarg= ;;
  esac

  case $1 in
    --help|-h)
      usage 1>&2
      exit 1
      ;;
    --static)
      libtype=static
      ;;  
    --prefix)
      echo $prefix
      exit 0
      ;;
    --version|-v)
      echo 2.14.2
      exit 0
      ;;
    --libs)
      show_libs=1
      show_cflags=0
      ;;
    --cflags)
      show_libs=0
      show_cflags=1
      ;;
    *)
      usage 1>&2
      exit 1
      ;;
  esac
  shift
done

result=""

if [ $show_cflags = 1 ]; then
   if [ $libtype = static ]; then
      result="$cflags_static"
   else
      result="$cflags_relocatable"
   fi

   if [ $show_libs = 1 ]; then
     result="$result -largs "
   fi
fi

if [ $show_libs = 1 ]; then
   if [ $libtype = static ]; then
     result="${result}${libs_static}"
   else
     result="${result}${libs_relocatable}"
   fi
fi

echo $result
