File: build.sh

package info (click to toggle)
jdom 0.7b.20020216-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,412 kB
  • ctags: 1,262
  • sloc: java: 9,200; xml: 587; sh: 59; makefile: 49; perl: 31
file content (47 lines) | stat: -rwxr-xr-x 1,346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh

echo $CLASSPATH
if [ -f /usr/share/java/crimson.jar ] ; then
	CLASSPATH=${CLASSPATH}:/usr/share/java/crimson.jar
elif [ -f /usr/share/xerces.jar ] ; then
	CLASSPATH=${CLASSPATH}:/usr/share/java/xerces.jar
elif [ -f /usr/share/java/xerces.jar ] ; then
	echo "can't find both xerces and crimson."
	exit 
fi

CLASSPATH=${CLASSPATH}:/usr/share/java/ant.jar

echo
echo "JDOM Build System"
echo "-------------------"
echo

if [ "$JAVA_HOME" = "" ] ; then
  echo "ERROR: JAVA_HOME not found in your environment."
  echo
  echo "Please, set the JAVA_HOME variable in your environment to match the"
  echo "location of the Java Virtual Machine you want to use."
  exit 1
fi

if [ `echo $OSTYPE | grep -n cygwin` ]; then
  PS=";"
else
  PS=":"
fi

LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar${PS}$JAVA_HOME/lib/dev.jar
ANT_HOME=./lib

echo Building with classpath $CLASSPATH${PS}$LOCALCLASSPATH${PS}$ADDITIONALCLASSPATH
echo

echo Starting Ant...
echo

# One person found a seg fault with jdk 1.3.0 on Linux where adding -classic
# to the following line fixed the issue

echo $JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath $CLASSPATH${PS}$LOCALCLASSPATH${PS}$ADDITIONALCLASSPATH org.apache.tools.ant.Main $*
$JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath $CLASSPATH${PS}$LOCALCLASSPATH${PS}$ADDITIONALCLASSPATH org.apache.tools.ant.Main $*