Changeset 1162

Show
Ignore:
Timestamp:
08/19/06 20:30:04 (2 years ago)
Author:
pkropf
Message:

GraphvizPlugin:

cleanup up my development build script.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • graphvizplugin/branches/v0.6/build.sh

    r1135 r1162  
    11#! /bin/sh 
    22 
    3 if [ "x$1" == "x" ]; then 
    4     echo "build.sh env0.9|env0.10" 
     3case "$1" in 
     4  9) 
     5    ENV=/home/peter/projects/env0.9 
     6    PORT=9009 
     7    ;; 
     8  10) 
     9    ENV=/home/peter/projects/env0.10 
     10    PORT=9010 
     11    ;; 
     12  *) 
     13    echo "build.sh 9|10" 
    514    exit 1 
    6 fi 
     15esac 
    716 
    8 ENV=/home/peter/projects/$1 
     17 
    918export PATH=$ENV/bin:$PATHRESET 
    1019 
     
    1726rm -f $ENV/trac/htdocs/graphviz/* 
    1827 
    19 echo "running tracd
     28echo "running tracd on port $PORT
    2029cp dist/graphviz-*.egg $ENV/trac/plugins/ 
    21 LD_LIBRARY_PATH=$ENV/lib tracd --port 9009 $ENV/trac 
     30#LD_LIBRARY_PATH=$ENV/lib tracd --port $PORT -b 172.16.6.1 $ENV/trac 
     31LD_LIBRARY_PATH=$ENV/lib tracd --port $PORT $ENV/trac