mirror of https://github.com/sipwise/jitsi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
#!/bin/bash
|
|
|
|
function print_help() {
|
|
echo "SIP Communicator option summary"
|
|
echo -e "\t-h, --help\t show this help message"
|
|
echo -e "\t-v, --verbose\t verbose output"
|
|
echo -e "\t-V, --version\t show version"
|
|
}
|
|
|
|
TEMP=`getopt -o hVv -l help -l version -l verbose -n 'SIP Communicator' -- "$@"`
|
|
|
|
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
|
|
|
|
eval set -- "$TEMP"
|
|
|
|
while true ; do
|
|
case "$1" in
|
|
-h|--help) print_help; exit 0;;
|
|
-V|--version) echo "SIP Communicator version _SC_VERSION_"; exit 0;;
|
|
-v|--verbose) VERBOSE="yes" ; shift ;;
|
|
--) shift ; break ;;
|
|
*) echo "Internal error!" ; exit 1 ;;
|
|
esac
|
|
done
|
|
|
|
javabin=`which java`
|
|
|
|
SCDIR=/usr/lib/sip-communicator
|
|
LIBPATH=$SCDIR/lib
|
|
CLASSPATH=$LIBPATH/jdic_stub.jar:$LIBPATH/jdic-all.jar:$LIBPATH/felix.jar:$LIBPATH/sc-launcher.jar:$SCDIR/sc-bundles/util.jar
|
|
FELIX_CONFIG=$LIBPATH/felix.client.run.properties
|
|
LOG_CONFIG=$LIBPATH/logging.properties
|
|
COMMAND="$javabin -classpath $CLASSPATH -Dfelix.config.properties=file:$FELIX_CONFIG -Djava.util.logging.config.file=$LOG_CONFIG net.java.sip.communicator.launcher.SIPCommunicator"
|
|
|
|
#set add LIBPATH to LD_LIBRARY_PATH for any sc natives (e.g. jmf .so's)
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$LIBPATH/native
|
|
|
|
#make LD_PRELOAD use libaoss so that java doesn't hog on the audio device.
|
|
export LD_PRELOAD=/usr/lib/libaoss.so
|
|
|
|
#create .sip-commnicator/log in home or otherwise java.util.logging will freak
|
|
mkdir -p $HOME/.sip-communicator/log
|
|
|
|
cd $SCDIR
|
|
|
|
if [ -f $javabin ]
|
|
then
|
|
if [ $VERBOSE ] ; then
|
|
exec $COMMAND
|
|
else
|
|
exec $COMMAND > /dev/null 2>&1
|
|
fi
|
|
exit $?
|
|
fi
|