Hi all: Finally managed to get ViaVoice working in Debian (Libranet
2.8.1); did it kind of crudely by kind of kicking things around, not
sure why it worked. Could anyone out there tell me where I could find,
to look at and examine, the configuration files that are referenced in
the attached file. I have not been able to find them. Thanks.
#///////////////////////////////////////////////////////////////////////////////
#//===========================================================================//
#// COPYRIGHT: //
#// ---------- //
#// Copyright (C) International Business Machines Corp., 2000. //
#// //
#// DISCLAIMER OF WARRANTIES: //
#// ------------------------- //
#// The following [enclosed] code is sample code created by IBM //
#// Corporation. This sample code is not part of any standard IBM //
#// product and is provided to you solely for the purpose of //
#// assisting you in the development of your applications. The //
#// code is provided "AS IS", without warranty of any kind. IBM //
#// shall not be liable for any damages arising out of your use of //
#// the sample code, even if they have been advised of the //
#// possibility of such damages. //
#//===========================================================================//
#//////////////////////////////////////////////////////////////////////////////
#//
#// vvstartuserwizard: To start ViaVoice Userwizard
#//
#///////////////////////////////////////////////////////////////////////////////
#!/bin/bash
#-------------------------------------------------------------------------
# Script to set all of the environment variables that the speech engine
# is going to be using
#-------------------------------------------------------------------------
#------------------------------------------
# Executables, shared libraries, tools, etc
#------------------------------------------
export SPCH_BIN=/usr/lib/ViaVoice/bin
export SPCH_TRN=${HOME}/viavoice/temp
#------------------------------------------
# Data, lots and lots of data!!
#------------------------------------------
export SPCH_RO=/usr/lib/ViaVoice/vocabs
export SPCH_LOC=vl1
export SPCH_PATH=/usr/lib/ViaVoice/vocabs/langs/$1/pools
#------------------------------------------
# User-specific things (in $HOME/viavoice)
#------------------------------------------
export SPCH_RW=${HOME}/viavoice
export SPCH_RUN=${HOME}/viavoice/temp
export SPCH_DIR=${HOME}/viavoice/temp/tmp
export SPCH_UWIZ_LOC=/usr/lib/ViaVoice/UWiz
#------------------------------------------
# Setup Class Paths for Java
#
#
export
CLASSPATH=/usr/lib/ViaVoice/bin/classes/userwizardApp.zip:/usr/lib/ViaVoice/bin/classes/userwizardComponents.zip:/usr/lib/ViaVoice/bin/classes/userwizardCtrls.zip:$CLASSPATH
export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH