ports/textproc/saxon/files/saxon.sh.in
Herve Quiroz d77417e308 - Update to 6.5.4 (add support for JDK 1.5 but drop JDK 1.1)
- Improve the launcher shell script (use javavmwrapper 2.0)
- Use SUB_FILES/SUB_LIST to configure the launcher
- Add $FreeBSD$ tag in pkg-plist
- Do not try to mkdir ${JAVAJARDIR} as it has been part of mtree for more than
  3 years now
- Update COMMENT: this is an XSLT 1.0 processor
2005-06-30 13:42:19 +00:00

11 lines
251 B
Bash

#!/bin/sh
#
# $FreeBSD$
SAXON_CLASSPATH=""
for jarfile in %%SAXON_JARS%%
do
SAXON_CLASSPATH="${SAXON_CLASSPATH}:${jarfile}"
done
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -classpath "${SAXON_CLASSPATH}" com.icl.saxon.StyleSheet "$@"