#!/bin/sh
#
#  Note: allegro5-config is generated from allegro5-config.in, by autoconf.
#  It's also generated from allegro5-config.in by CMake.
#
#  This script returns suitable commandline options for compiling programs
#  using the Allegro library, for example:
#
#     gcc myprog.c -o myprog `allegro5-config --libs`
#
#  This is heavily based on a similar script from GTK.

version=4.9.10

prefix=/usr
exec_prefix=$prefix
exec_prefix_set=no
include_prefix=${prefix}
include_path=${prefix}/include
lib_path=${exec_prefix}/lib
bin_path=${exec_prefix}/bin

lib_linkage=
lib_type=

accepts_frameworks=no

allegro_ldflags=""
allegro_libs="-lm -lpthread /usr/lib/libSM.so /usr/lib/libICE.so /usr/lib/libX11.so /usr/lib/libXext.so -lXcursor -lXxf86vm -lXinerama -lXpm /usr/lib/libGL.so /usr/lib/libGLU.so "
allegro_frameworks=""
allegro_cflags=""
allegro_cppflags=""

usage()
{
   cat <<EOF

Usage: allegro5-config [OPTIONS] [LIBRARIES]

Options:
        --prefix[=DIR]
        --exec-prefix[=DIR]
        --version[=VERSION]
        --cflags
        --cppflags
        --libs
        --static
        --shared
EOF
   if test "$accepts_frameworks" = "yes"; then
      echo "        --frameworks"
   fi
   cat <<EOF
        --env

Libraries:
        release
        debug
        profile
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=*)
         prefix=$optarg
         if test $exec_prefix_set = no; then
            exec_prefix=$optarg
         fi
      ;;

      --prefix)
         echo_prefix=yes
      ;;

      --exec-prefix=*)
         exec_prefix=$optarg
         exec_prefix_set=yes
      ;;

      --exec-prefix)
         echo_exec_prefix=yes
      ;;

      --version=*)
         version=$optarg
      ;;

      --version)
         echo $version
      ;;

      --cflags)
         echo_cflags=yes
      ;;

      --cppflags)
         echo_cppflags=yes
      ;;

      --libs)
         echo_libs=yes
      ;;

      --static)
         lib_linkage=-static
         echo_libs=yes
      ;;

      --shared)
         lib_linkage=
         echo_libs=yes
      ;;

      --frameworks)
         if test "$accepts_frameworks" = "yes"; then
            echo_frameworks=yes
         else
            usage 1 1>&2
         fi
      ;;

      --env)
         echo_env=yes
      ;;

      release)
         lib_type=
      ;;

      debug)
         allegro_cflags="-DDEBUGMODE $allegro_cflags"
         allegro_cppflags="-DDEBUGMODE $allegro_cppflags"
         lib_type=-debug
      ;;

      profile)
         lib_type=-profile
      ;;

      *)
         usage 1 1>&2
      ;;

   esac
   shift
done

# Perform actions
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
   if test -n "$include_prefix"; then
      echo -I$include_path $allegro_cflags
   else
      echo $allegro_cflags
   fi
fi

if test "$echo_cppflags" = "yes"; then
   if test -n "$include_prefix"; then
      echo -I$include_path $allegro_cppflags
   else
      echo $allegro_cppflags
   fi
fi

if test "$echo_libs" = "yes"; then
   libdirs=-L$lib_path
   echo $libdirs $allegro_ldflags -lallegro$lib_type$lib_linkage-$version
fi

if test "$echo_frameworks" = "yes"; then
   echo $allegro_frameworks
fi

if test "$echo_env" = "yes"; then
   echo "export PATH=\$PATH:$bin_path"
   echo "export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:$lib_path"
   echo "export LIBRARY_PATH=\$LIBRARY_PATH:$lib_path"
   echo "export C_INCLUDE_PATH=\$C_INCLUDE_PATH:$include_path"
   echo "export CPLUS_INCLUDE_PATH=\$CPLUS_INCLUDE_PATH:$include_path"
   echo "export OBJC_INCLUDE_PATH=\$OBJC_INCLUDE_PATH:$include_path"
fi

