#!/bin/sh
# 
# ivgd  shell script for ivtools graphdraw
# 

LD_LIBRARY_PATH=/var/tmp/ivtools-0.8.2/usr/lib:$LD_LIBRARY_PATH 
PATH=/var/tmp/ivtools-0.8.2/usr/bin:$PATH 
case "$#" in 
        0)       graphdraw
                 ;;
        *)       graphdraw "$*"
                 ;;
esac

