diff options
author | Andrey Grozin <grozin@gentoo.org> | 2009-03-18 23:50:09 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2009-03-18 23:50:09 +0000 |
commit | 49b73451f2fbf80eae50b89c488b52dc9b1617bb (patch) | |
tree | 641df5cd711ed1bbc5231f13cb0d94f16187f4b7 /sci-mathematics/maxima/files | |
parent | Bump to 0.8.13. Build fixes. (diff) | |
download | gentoo-2-49b73451f2fbf80eae50b89c488b52dc9b1617bb.tar.gz gentoo-2-49b73451f2fbf80eae50b89c488b52dc9b1617bb.tar.bz2 gentoo-2-49b73451f2fbf80eae50b89c488b52dc9b1617bb.zip |
maxima no longer installs imaxima - there is a separate package (bug #260663, thanks to Ulrich Mueller). rmaxima is produced when no lisp USE flags are given (bug #261455). Old versions cleaned.
(Portage version: 2.2_rc26/cvs/Linux i686)
Diffstat (limited to 'sci-mathematics/maxima/files')
-rw-r--r-- | sci-mathematics/maxima/files/50maxima-gentoo.el | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sci-mathematics/maxima/files/50maxima-gentoo.el b/sci-mathematics/maxima/files/50maxima-gentoo.el index 829c705aadcd..20c7399164f7 100644 --- a/sci-mathematics/maxima/files/50maxima-gentoo.el +++ b/sci-mathematics/maxima/files/50maxima-gentoo.el @@ -1,16 +1,12 @@ -;; maxima mode + +;;; maxima site-lisp configuration + (add-to-list 'load-path "@SITELISP@") (autoload 'maxima-mode "maxima" "Maxima mode" t) (autoload 'maxima "maxima" "Maxima interactive" t) -(setq auto-mode-alist (cons '("\\.max" . maxima-mode) auto-mode-alist)) (autoload 'dbl "dbl" "Make a debugger to run lisp, maxima and or gdb in" t) -(autoload 'gcl-mode "gcl" "Major mode for editing maxima code and interacting with debugger" t) -(setq auto-mode-alist (cons '("\\.ma?[cx]\\'" . maxima-mode) auto-mode-alist)) +(add-to-list 'auto-mode-alist '("\\.ma?[cx]\\'" . maxima-mode)) ;; emaxima mode (autoload 'emaxima-mode "emaxima" "EMaxima" t) (add-hook 'emaxima-mode-hook 'emaxima-mark-file-as-emaxima) - -;; imaxima -(autoload 'imaxima "imaxima" "Image support for Maxima." t) -(autoload 'imath-mode "imath" "Interactive Math minor mode." t) |