diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-10-07 13:18:47 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-10-07 13:18:47 +0000 |
commit | 04d5a8ff6f2f90bf0e65d1ad2fd7b7cd709b5b21 (patch) | |
tree | 78c75eb0741aead434a64326f9314771622bcde7 /app-sci/maxima | |
parent | stable (Manifest recommit) (diff) | |
download | gentoo-2-04d5a8ff6f2f90bf0e65d1ad2fd7b7cd709b5b21.tar.gz gentoo-2-04d5a8ff6f2f90bf0e65d1ad2fd7b7cd709b5b21.tar.bz2 gentoo-2-04d5a8ff6f2f90bf0e65d1ad2fd7b7cd709b5b21.zip |
Fixing #65395
Diffstat (limited to 'app-sci/maxima')
-rw-r--r-- | app-sci/maxima/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/maxima/maxima-5.9.1.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-sci/maxima/ChangeLog b/app-sci/maxima/ChangeLog index 297b5ed232a1..7dffef05a979 100644 --- a/app-sci/maxima/ChangeLog +++ b/app-sci/maxima/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/maxima # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/ChangeLog,v 1.14 2004/10/06 04:30:13 cretin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/ChangeLog,v 1.15 2004/10/07 13:18:47 phosphan Exp $ + + 07 Oct 2004; Patrick Kursawe <phosphan@gentoo.org> maxima-5.9.1.ebuild: + Escaping what should be escaped in postinst output - see bug #65395 *maxima-5.9.1 (05 Oct 2004) diff --git a/app-sci/maxima/maxima-5.9.1.ebuild b/app-sci/maxima/maxima-5.9.1.ebuild index ffa99b26eddc..c16364084d11 100644 --- a/app-sci/maxima/maxima-5.9.1.ebuild +++ b/app-sci/maxima/maxima-5.9.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/maxima-5.9.1.ebuild,v 1.1 2004/10/06 04:30:13 cretin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/maxima-5.9.1.ebuild,v 1.2 2004/10/07 13:18:47 phosphan Exp $ inherit eutils @@ -82,11 +82,11 @@ pkg_postinst() { then einfo "In order to use Maxima with emacs, add the following to your" einfo ".emacs file:" - einfo "(setq load-path (cons "/usr/share/maxima/5.9.0/emacs" load-path))" - einfo "(autoload 'maxima-mode "maxima" "Maxima mode" t)" - einfo "(autoload 'maxima "maxima" "Maxima interactive" t)" - einfo "(setq auto-mode-alist (cons '("\\.max" . maxima-mode) auto-mode-alist))" - einfo "(autoload 'emaxima-mode "emaxima" "EMaxima" t)" + einfo '(setq load-path (cons "/usr/share/maxima/5.9.0/emacs" load-path))' + einfo "(autoload 'maxima-mode \"maxima\" \"Maxima mode\" t)" + einfo "(autoload 'maxima \"maxima\" \"Maxima interactive\" t)" + einfo "(setq auto-mode-alist (cons '(\"\\\\.max\" . maxima-mode) auto-mode-alist))" + einfo "(autoload 'emaxima-mode \"emaxima\" \"EMaxima\" t)" einfo "(add-hook 'emaxima-mode-hook 'emaxima-mark-file-as-emaxima)" fi } |