Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 203748 | Differences between
and this patch

Collapse All | Expand All

(-)maxima-5.13.0.orig/src/maxima.in (-5 / +5 lines)
Lines 111-125 Link Here
111
fi
111
fi
112
if [ "$MAXIMA_LISP" = "clisp" ]; then
112
if [ "$MAXIMA_LISP" = "clisp" ]; then
113
    if [ "$layout_autotools" = "true" ]; then
113
    if [ "$layout_autotools" = "true" ]; then
114
	exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/@CLISP_RUNTIME@" -q -M "$maxima_image_base.mem" "" -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
114
	exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/@CLISP_RUNTIME@" -q -norc -M "$maxima_image_base.mem" "" -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
115
    else
115
    else
116
	exec "@CLISP_NAME@" -q -M "$maxima_image_base.mem" "" -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
116
	exec "@CLISP_NAME@" -q -norc -M "$maxima_image_base.mem" "" -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
117
    fi
117
    fi
118
elif [ "$MAXIMA_LISP" = "cmucl" ]; then
118
elif [ "$MAXIMA_LISP" = "cmucl" ]; then
119
    if [ "$layout_autotools" = "true" ]; then
119
    if [ "$layout_autotools" = "true" ]; then
120
	exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/@CMUCL_RUNTIME@" -quiet -core "$maxima_image_base.core" -eval '(cl-user::run)' -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
120
	exec "$MAXIMA_IMAGESDIR/binary-$MAXIMA_LISP/@CMUCL_RUNTIME@" -quiet -nositeinit -noinit -core "$maxima_image_base.core" -eval '(cl-user::run)' -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
121
    else
121
    else
122
	exec "@CMUCL_NAME@" -quiet -core "$maxima_image_base.core" -eval '(cl-user::run)' -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
122
	exec "@CMUCL_NAME@" -quiet -nositeinit -noinit -core "$maxima_image_base.core" -eval '(cl-user::run)' -- "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
123
    fi
123
    fi
124
elif [ "$MAXIMA_LISP" = "scl" ]; then
124
elif [ "$MAXIMA_LISP" = "scl" ]; then
125
    if [ "$layout_autotools" = "true" ]; then
125
    if [ "$layout_autotools" = "true" ]; then
Lines 138-144 Link Here
138
#        in the function get-application-args in command-line.lisp
138
#        in the function get-application-args in command-line.lisp
139
    exec "@OPENMCL_NAME@" -I "$maxima_image_base.image" "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
139
    exec "@OPENMCL_NAME@" -I "$maxima_image_base.image" "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
140
elif [ "$MAXIMA_LISP" = "sbcl" ]; then
140
elif [ "$MAXIMA_LISP" = "sbcl" ]; then
141
    exec "@SBCL_NAME@" --core "$maxima_image_base.core" --noinform --end-runtime-options --eval '(cl-user::run)' --end-toplevel-options "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
141
    exec "@SBCL_NAME@" --core "$maxima_image_base.core" --noinform --no-sysinit --no-userinit --end-runtime-options --eval '(cl-user::run)' --end-toplevel-options "$arg1" "$arg2" "$arg3" "$arg4" "$arg5" "$arg6" "$arg7" "$arg8" "$arg9"
142
else
142
else
143
    echo "$0: lisp=\"$MAXIMA_LISP\" not known. Use --list-avail to see possible options." >&2
143
    echo "$0: lisp=\"$MAXIMA_LISP\" not known. Use --list-avail to see possible options." >&2
144
    exit 1
144
    exit 1

Return to bug 203748