#!/bin/sh

# Copyright 2016 Aleksey Cheusov <vle@gmx.net>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

: ${JREP_JAR:=/usr/pkg/lib/jrep/jrep-0.3.jar}
: ${JREP_JAVA_OPTS:=}
: ${JREP_JAVA:=java}
: ${JREP_JNI_DIR:=/usr/pkg/lib}

export JREP_VERSION=1.1.0

${JREP_JAVA} -Djava.library.path="$JREP_JNI_DIR" \
	      -jar "$JREP_JAR" $JREP_JAVA_OPTS "$@"
