mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
- 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
11 lines
251 B
Bash
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 "$@"
|