#!/bin/sh

# tp-magic-config

# "Tux Paint Magic Config"
# Tool that reports compiler options used when buidling Magic Tool
# shared objects for Tux Paint

# (c) Copyright 2007, by Bill Kendrick
# bill@newbreedsoftware.com
# http://www.tuxpaint.org/

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
# (See COPYING.txt)

# Note: "0.9.23", "0x00000003", "/usr/pkg/include/tuxpaint",
# "/usr/pkg/lib/tuxpaint/plugins", "/usr/pkg/share/doc/tuxpaint-0.9.23/magic-docs" and "/usr/pkg/share/tuxpaint" are replaced
# by values in Tux Paint's Makefile, via 'sed', by the 'make tp-magic-config'
# target.

# July 5, 2007 - August 2, 2007


if [ $# -ne 0 ]; then
  if [ $1 = "--version" ]; then
    echo "0.9.23"
    exit
  fi
  if [ $1 = "--apiversion" ]; then
    echo "0x00000003"
    exit
  fi
  if [ $1 = "--cflags" ]; then
    echo `sdl-config --cflags` -I/usr/pkg/include/tuxpaint
    exit
  fi
  if [ $1 = "--dataprefix" ]; then
    echo "/usr/pkg/share/tuxpaint"
    exit
  fi
  if [ $1 = "--localdataprefix" ]; then
    echo "$HOME/.tuxpaint/plugins/data"
    exit
  fi
  if [ $1 = "--pluginprefix" ]; then
    echo "/usr/pkg/lib/tuxpaint/plugins"
    exit
  fi
  if [ $1 = "--localpluginprefix" ]; then
    echo "$HOME/.tuxpaint/plugins"
    exit
  fi
  if [ $1 = "--plugindocprefix" ]; then
    echo "/usr/pkg/share/doc/tuxpaint-0.9.23/magic-docs"
    exit
  fi
fi

echo "Usage: tp-magic-config [--apiversion | --version | --cflags | --pluginprefix | --plugindocprefix | --dataprefix]"

