You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by vh...@apache.org on 2002/01/24 16:45:54 UTC

cvs commit: xml-batik/contrib/rasterizertask build.sh

vhardy      02/01/24 07:45:54

  Added:       contrib/rasterizertask build.sh
  Log:
  New UNIX build.sh script for the rasterizer Ant task. Contributed by
  Jens Stavnstrup (js@ddre.dk).
  
  Revision  Changes    Path
  1.1                  xml-batik/contrib/rasterizertask/build.sh
  
  Index: build.sh
  ===================================================================
  #!/bin/sh
  # --------------------------------------------------------------------------
  # build.sh - build script for rasterizer task
  #
  #  $Id: build.sh
  # --------------------------------------------------------------------------
  
  # ----- Verify and Set Required Environment Variables -------------------------
     
  if [ "$ANT_HOME" = "" ] ; then
    ANT_HOME=../..
  fi
  
  if [ "$JAVA_HOME" = "" ] ; then
    echo You must set JAVA_HOME to point at your Java Development Kit installation
    exit 1
  fi
  
  
  
  BATIK_HOME=../..
  
  
  # ----- Set up classpath ---------------------------------------------------
  
  CP=$JAVA_HOME/lib/tools.jar:$ANT_HOME/lib/build/ant_1_4_1.jar:$BATIK_HOME/lib/build/crimson-ant.jar:$BATIK_HOME/lib/build/jaxp.jar
  
  CP=$CP:$BATIK_HOME/classes
  
  
  # ----- Execute The Requested Build -------------------------------------------
  
  TARGET=$1;
  if [ $# != 0 ] ; then
    shift 1
  fi
  
  $JAVA_HOME/bin/java $ANT_OPTS -classpath $CP org.apache.tools.ant.Main -Dant.home=$ANT_HOME $TARGET -Dargs="$*"
  
  
  # ----- Cleanup the environment --------------------------------------------
  
  
  BATIK_HOME=
  CP=
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: batik-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: batik-dev-help@xml.apache.org