view octave-wrapper.in @ 4654:b9e4ebcad82f

disable doc extraction for optim package Disable the rules for extracting doc strings because they don't work when cross compiling. Our patches to the source files don't touch the doc strings, so there is no need to update them anyway.
author John W. Eaton <jwe@octave.org>
date Tue, 10 Apr 2018 07:50:10 -0400
parents f3d64fe692e6
children c338241afed1
line wrap: on
line source

#! /bin/sh

OCTAVE_HOME=""

if [ -z "$OCTAVE_HOME" ]; then
  echo "you must edit $0 to set OCTAVE_HOME" 1>&2
  exit 1;
fi

PATH="$OCTAVE_HOME/bin/:$PATH"

GCC_VERSION="@GCC_VERSION@"
GCC_ARCH="@GCC_ARCH@"
GCC_LIB_DIR="$OCTAVE_HOME/lib/gcc/$GCC_ARCH/$GCC_VERSION"

LD_LIBRARY_PATH="$OCTAVE_HOME/lib:$OCTAVE_HOME/lib64:$OCTAVE_HOME/lib/octave/@OCTAVE_VERSION@:$GCC_LIB_DIR"

TERMINFO="$OCTAVE_HOME/share/terminfo"

TERM="vt100"

FONTCONFIG_PATH="$OCTAVE_HOME/etc/fonts"

GNUPLOT_DRIVER_DIR="$OCTAVE_HOME/libexec/gnuplot/@GNUPLOT_MAJOR_MINOR_VERSION@"
GNUPLOT_SHARE_DIR="$OCTAVE_HOME/share/gnuplot/@GNUPLOT_MAJOR_MINOR_VERSION@"
GNUPLOT_PS_DIR="$GNUPLOT_SHARE_DIR/PostScript"

LIBGL_DRIVERS_PATH="$OCTAVE_HOME/lib/dri"

QT_PLUGIN_PATH="$OCTAVE_HOME/plugins"

export OCTAVE_HOME
export PATH
export LD_LIBRARY_PATH
export TERMINFO
export TERM
export FONTCONFIG_PATH
export GNUPLOT_DRIVER_DIR
export GNUPLOT_SHARE_DIR
export GNUPLOT_PS_DIR
export LIBGL_DRIVERS_PATH
export QT_PLUGIN_PATH

exec "$OCTAVE_HOME/bin/@PROGRAM_NAME@-@OCTAVE_VERSION@.real" "$@"