#!/bin/sh
#
# Configure options script for re-calling GraphicsMagick compilation
# options required to use the GraphicsMagick library.
#
# Concept derived from gtk-config in the Gtk package except that Autoconf-style
# configuration information is presented instead so that it may be used more
# effectively in configure scripts.
#
usage='Usage: GraphicsMagick-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]

 For example, "example.c" may be compiled to produce "example" as follows:

  "cc -o example example.c `GraphicsMagick-config --cppflags --cflags --ldflags --libs`"'

if test $# -eq 0; then
      echo "${usage}" 1>&2
      exit 1
fi

while test $# -gt 0; do
  case $1 in
    --prefix)
      echo /usr/pkg
      ;;
    --exec-prefix)
      echo /usr/pkg
      ;;
    --version)
      echo 1.3.42
      ;;
    --cc)
      echo 'cc'
      ;;
    --cflags)
      echo '-O2 -pipe -I/usr/pkg/include -I/usr/include -I/usr/pkg/include/freetype2 -Wall -D_THREAD_SAFE -D_REENTRANT'
      ;;
    --cppflags)
      echo '-I/usr/pkg/include/GraphicsMagick'
      ;;
    --ldflags)
      echo '-L/usr/pkg/lib -Wl,-m -L/Users/nia/pkgsrc/graphics/GraphicsMagick/work/libnbcompat -L/usr/pkg/lib -L/usr/lib -L/usr/pkg/lib'
      ;;
    --libs)
      echo '-lGraphicsMagick /Users/nia/pkgsrc/graphics/GraphicsMagick/work/libnbcompat/libnbcompat.a -llcms2 -lfreetype -lbz2 -lz -lltdl -lm -lpthread'
      ;;
    *)
      echo "${usage}" 1>&2
      exit 1
      ;;
  esac
  shift
done
