2010-11-05 08:40:17 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# FOP 0.94 script
|
|
|
|
# JPackage Project <http://www.jpackage.org/>
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
# Source functions library
|
|
|
|
if [ -f /usr/share/java-utils/java-functions ] ; then
|
|
|
|
. /usr/share/java-utils/java-functions
|
|
|
|
else
|
|
|
|
echo "Can't find functions library, aborting"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Load system-wide configuration
|
|
|
|
if [ -f /etc/fop.conf ]; then
|
|
|
|
. /etc/fop.conf
|
|
|
|
fi
|
2012-12-10 08:18:55 +01:00
|
|
|
fopxconf=/etc/fop.xconf
|
|
|
|
fop_exec_args=
|
|
|
|
if [ -f "$fopxconf" ] ; then
|
|
|
|
config_found=0
|
|
|
|
for i in "$@"; do if [ "$i" = "-c" ]; then config_found=1; break; fi; done
|
|
|
|
if [ $config_found = 0 ]; then
|
|
|
|
fop_exec_args="-c $fopxconf $fop_exec_args"
|
|
|
|
fi
|
|
|
|
fi
|
2010-11-05 08:40:17 +01:00
|
|
|
|
|
|
|
# Load user configuration
|
|
|
|
if [ -f "$HOME/.foprc" ]; then
|
|
|
|
. "$HOME/.foprc"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Rest of the configuration
|
|
|
|
MAIN_CLASS=org.apache.fop.cli.Main
|
2013-04-25 14:11:09 +02:00
|
|
|
BASE_JARS="xmlgraphics-fop xmlgraphics-commons commons-logging commons-io avalon-framework batik-all xml-commons-jaxp-1.3-apis xml-commons-jaxp-1.3-apis-ext"
|
2010-11-05 08:40:17 +01:00
|
|
|
|
|
|
|
# Set parameters
|
|
|
|
set_jvm
|
|
|
|
set_classpath $BASE_JARS
|
|
|
|
set_flags $BASE_FLAGS
|
|
|
|
set_options $BASE_OPTIONS $FOP_OPTS
|
|
|
|
|
|
|
|
# Let's start
|
2012-12-10 08:18:55 +01:00
|
|
|
run $fop_exec_args "$@"
|