#!/bin/sh
prefix=/opt/local
exec_prefix=/opt/local/bin
libdir=/opt/local/lib

INCLUDES="-I${prefix}/include "
LIBS="-L$libdir -llas -llas_c -L/opt/local/libexec/boost/1.81/lib /opt/local/libexec/boost/1.81/lib/libboost_program_options-mt.dylib /opt/local/libexec/boost/1.81/lib/libboost_thread-mt.dylib" 

GDAL_INCLUDE="/opt/local/include"
if test -n "$GDAL_INCLUDE" ; then 
    INCLUDES="$INCLUDES -I$GDAL_INCLUDE"
fi
GDAL_LIBRARY="/opt/local/lib/libgdal.dylib"
if test -n "$GDAL_LIBRARY" ; then 
    LIBS="$LIBS $GDAL_LIBRARY"
fi

GEOTIFF_INCLUDE="/opt/local/include"
if test -n "$GEOTIFF_INCLUDE" ; then 
    INCLUDES="$INCLUDES -I$GEOTIFF_INCLUDE"
fi
GEOTIFF_LIBRARY="/opt/local/lib/libgeotiff.dylib"
if test -n "$GEOTIFF_LIBRARY" ; then 
    LIBS="$LIBS $GEOTIFF_LIBRARY"
fi


ORACLE_INCLUDE=""
if test -n "$ORACLE_INCLUDE" ; then 
    INCLUDES="$INCLUDES -I$ORACLE_INCLUDE"
fi
ORACLE_OCI_LIBRARY=""
if test -n "$ORACLE_OCI_LIBRARY" ; then 
    LIBS="$LIBS $ORACLE_OCI_LIBRARY   "
fi

TIFF_INCLUDE="/opt/local/include"
if test -n "$TIFF_INCLUDE" ; then 
    INCLUDES="$INCLUDES -I$TIFF_INCLUDE"
fi
TIFF_LIBRARY="/opt/local/lib/libtiff.dylib"
if test -n "$TIFF_LIBRARY" ; then 
    LIBS="$LIBS $TIFF_LIBRARY"
fi

LIBXML2_INCLUDE_DIR=""
if test -n "$LIBXML2_INCLUDE_DIR" ; then 
    INCLUDES="$INCLUDES -I$LIBXML2_INCLUDE_DIR"
fi
LIBXML2_LIBRARIES=""
if test -n "$LIBXML2_LIBRARIES" ; then 
    LIBS="$LIBS $LIBXML2_LIBRARIES"
fi

LASZIP_INCLUDE_DIR=""
if test -n "$LASZIP_INCLUDE_DIR" ; then 
    INCLUDES="$INCLUDES -I$LASZIP_INCLUDE_DIR"
fi
LASZIP_LIBRARY=""
if test -n "$LASZIP_LIBRARY" ; then 
    LIBS="$LIBS $LASZIP_LIBRARY"
fi


usage()
{
	cat <<EOF
Usage: liblas-config [OPTIONS]
Options:
	[--libs]
	[--cflags]
	[--cxxflags]
	[--defines]
	[--includes]
	[--version]
EOF
	exit $1
}

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

case $1 in 
  --libs) 
    echo $LIBS
    ;;

  --prefix)
    echo ${prefix}
     ;;

  --ldflags)
    echo -L${libdir}
    ;;

  --defines)
    echo  -DHAVE_GDAL=1 -DHAVE_LIBGEOTIFF=1
    ;;

  --includes)
    echo ${INCLUDES}
    ;;

  --cflags)
    echo -pipe -Os -DNDEBUG -I/opt/local/libexec/boost/1.81/include -I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk
    ;;

  --cxxflags)
    echo -pipe -I/opt/local/libexec/boost/1.81/include -Os -DNDEBUG -I/opt/local/libexec/boost/1.81/include -I/opt/local/include -stdlib=libc++ -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk  -Wextra -Wall -Wno-unused-parameter -Wno-unused-variable -Wpointer-arith -Wcast-align -Wcast-qual -Wfloat-equal -Wredundant-decls -Wno-long-long
    ;;
    
  --version)
    echo 1.8.2b1
    ;;

  *)
    usage 1 1>&2
    ;;

esac
