~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to debian/patches/04_axiom.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA, Kamaraju Kusumanchi, kohda
  • Date: 2009-04-26 19:35:14 UTC
  • mfrom: (1.1.10 upstream) (4.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090426193514-9yo3oggdslgdls4b
Tags: 1:1.0.7.2-1
[Kamaraju Kusumanchi <kamaraju@gmail.com>]
* New upstream release
* texmacs crashes if /usr/share/texmacs/TeXmacs/misc/pixmaps/unknown.ps
  is not present. Do not remove it. (Closes: #484073, #497021)
* update patches 03_mupad.dpatch, 04_axiom.dpatch, 11-desktop-file.dpatch
* fix the mime problem in gnome. Thanks to Andrea Gamba for the fix.
[kohda]
* Refined a fix for the mime problem in gnome a bit.
* Try to fix /bin/sh problem (debian/fixsh) but it is not complete fix yet.
* Try to fix hard coded settings for ipa fonts(patches/09_ipa.dpatch), 
  especially for Debian where no ipa fonts exist yet.
* Fixed obsolete Build-Depends: changed libltdl3-dev to 
  libltdl-dev | libltdl7-dev (the latter for Ubuntu?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
exit 0
25
25
 
26
26
@DPATCH@
27
 
diff -urNad /home/rt/debian/own/texmacs/texmacs-1.0.3/plugins/axiom/progs/init-axiom.scm texmacs-1.0.3/plugins/axiom/progs/init-axiom.scm
28
 
--- /home/rt/debian/own/texmacs/texmacs-1.0.3/plugins/axiom/progs/init-axiom.scm        2004-01-13 21:00:39.000000000 +0100
29
 
+++ texmacs-1.0.3/plugins/axiom/progs/init-axiom.scm    2004-01-23 21:12:22.000000000 +0100
30
 
@@ -17,7 +17,7 @@
31
 
   (lazy-input-converter (axiom-input) axiom))
32
 
 
33
 
 (plugin-configure axiom
34
 
-  (:require (url-exists-in-path? "AXIOMsys"))
35
 
+  (:require (url-exists-in-path? "/usr/bin/axiom"))
36
 
   (:initialize (axiom-initialize))
37
 
   (:launch "tm_axiom")
38
 
   (:session "Axiom"))
39
27
diff -urNad /home/rt/debian/own/texmacs/texmacs-1.0.3/plugins/axiom/src/tm_axiom.c texmacs-1.0.3/plugins/axiom/src/tm_axiom.c
40
28
--- /home/rt/debian/own/texmacs/texmacs-1.0.3/plugins/axiom/src/tm_axiom.c      2004-01-13 21:00:39.000000000 +0100
41
29
+++ texmacs-1.0.3/plugins/axiom/src/tm_axiom.c  2004-01-23 21:12:20.000000000 +0100
43
31
     case 0: /* Axiom */
44
32
       dup2(p1[1],1); close(p1[1]); close(p1[0]);
45
33
       dup2(p2[0],0); close(p2[0]); close(p2[1]);
46
 
-      execlp("AXIOMsys","AXIOMsys","-noclef",0);
 
34
-      execlp("AXIOMsys","AXIOMsys","-noclef",NULL);
47
35
-      fatal("exec AXIOMsys");
48
36
+      execlp("/usr/bin/axiom","/usr/bin/axiom","-noclef","-noht","-nogr",0);
49
37
+      fatal("exec /usr/bin/axiom");