diff options
Diffstat (limited to 'dev-lisp/sbcl/files/0.9.14/sbcl.sh')
-rw-r--r-- | dev-lisp/sbcl/files/0.9.14/sbcl.sh | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/dev-lisp/sbcl/files/0.9.14/sbcl.sh b/dev-lisp/sbcl/files/0.9.14/sbcl.sh deleted file mode 100644 index 6693bd9b4e8b..000000000000 --- a/dev-lisp/sbcl/files/0.9.14/sbcl.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -# This file is originally from the Debian project patch to SBCL -# upstream. It has been modified by the Gentoo project to NOT use -# /etc/sbcl.rc which has been confusing because SBCL docs refer -# /etc/sbclrc. - -if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then - cat <<EOF -$0: cannot find the common-lisp-controller source. -EOF - exit 0 -fi - -build_error() -{ - echo "Build failure $1" - exit 1 -} - -case $1 in - install-clc) - echo $0 loading and dumping clc. - ( cd /usr/lib/sbcl - /usr/bin/sbcl --core /usr/lib/sbcl/sbcl-dist.core \ - --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --load "/usr/lib/sbcl/install-clc.lisp" # 2> /dev/null - mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) - ;; - remove-clc) - echo $0 removing clc-enabled image - cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core - ;; - rebuild) - echo $0 rebuilding... - shift - echo rebuilding $1 - /usr/bin/sbcl --noinform --sysinit /etc/sbclrc --userinit /dev/null \ - --disable-debugger \ - --eval \ -"(handler-case - (progn - (asdf:operate 'asdf:compile-op (quote $1)) - (sb-unix:unix-exit 0)) - (error (e) - (ignore-errors (format t \"~&Build error: ~A~%\" e)) - (finish-output) - (sb-unix:unix-exit 1)))" || build_error - ;; - remove) - echo $0 removing packages... - shift - while [ ! -z "$1" ] ; do - rm -rf "/var/cache/common-lisp-controller/*/sbcl/${1}" - shift - done - ;; - *) - echo $0 unkown command $1 - echo known commands: rebuild, remove, install-clc, and remove-clc - exit 1 - ;; -esac - -exit 0
\ No newline at end of file |