Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima/files: maxima-rmaxima.patch
Date: Tue, 30 Oct 2012 16:38:16
Message-Id: 20121030163803.C3FF021600@flycatcher.gentoo.org
1 grozin 12/10/30 16:38:03
2
3 Modified: maxima-rmaxima.patch
4 Log:
5 Fix maxima-rmaxima.patch for cases when maxima is compiled by several lisps, some support readline, some not
6
7 (Portage version: 2.2.0_alpha142/cvs/Linux i686, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.2 sci-mathematics/maxima/files/maxima-rmaxima.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/maxima/files/maxima-rmaxima.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/maxima/files/maxima-rmaxima.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/maxima/files/maxima-rmaxima.patch?r1=1.1&r2=1.2
15
16 Index: maxima-rmaxima.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/files/maxima-rmaxima.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- maxima-rmaxima.patch 17 Sep 2010 11:23:55 -0000 1.1
23 +++ maxima-rmaxima.patch 30 Oct 2012 16:38:03 -0000 1.2
24 @@ -1,19 +1,25 @@
25 ---- src/Makefile.am.orig 2010-02-01 21:58:17.353941395 +1300
26 -+++ src/Makefile.am 2010-02-01 22:09:12.859975783 +1300
27 -@@ -3,8 +3,16 @@
28 - if WIN32
29 +diff -r -U2 maxima-5.28.0.orig/src/Makefile.am maxima-5.28.0/src/Makefile.am
30 +--- maxima-5.28.0.orig/src/Makefile.am 2012-06-15 12:21:34.000000000 +0700
31 ++++ maxima-5.28.0/src/Makefile.am 2012-10-30 22:22:29.000000000 +0700
32 +@@ -4,5 +4,21 @@
33 bin_SCRIPTS = maxima maxima-command.ico maxima.bat set_lang.vbs
34 else
35 -+if CLISP
36 -+bin_SCRIPTS = maxima
37 ++if SBCL
38 + bin_SCRIPTS = maxima rmaxima
39 +else
40 -+if GCL
41 -+bin_SCRIPTS = maxima
42 ++if CMUCL
43 ++bin_SCRIPTS = maxima rmaxima
44 +else
45 - bin_SCRIPTS = maxima rmaxima
46 - endif
47 ++if ECL
48 ++bin_SCRIPTS = maxima rmaxima
49 ++else
50 ++if OPENMCL
51 ++bin_SCRIPTS = maxima rmaxima
52 ++else
53 ++bin_SCRIPTS = maxima
54 ++endif
55 +endif
56 +endif
57 ++endif
58 + endif
59
60 - LOADDEFSYSTEM = (load "$(top_srcdir)/lisp-utils/defsystem.lisp")
61 - LOADMAKEPROCLAIM = (load "$(top_srcdir)/lisp-utils/make-proclaim.lisp")