~ubuntu-branches/ubuntu/intrepid/malaga/intrepid

« back to all changes in this revision

Viewing changes to INSTALL.txt

  • Committer: Bazaar Package Importer
  • Author(s): Timo Jyrinki
  • Date: 2008-04-15 16:48:51 UTC
  • mfrom: (1.1.5 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080415164851-nc60y7m9jxxorevz
Tags: 7.12-1
* New upstream version
  - Add libcairo-dev dependency since malshow now uses cairo
* Change require to autoload in emacsen-startup (Closes: #446235)
  - Modify upstream malaga.el accordingly
* Update dependencies of malaga-mode to emacs22 | emacsen
* Fix piuparts problem when upgrading from <= 7.8-4 (Closes: #454714)
* Update Standards-Version to 3.7.3 (no changes required)
* Update rules to not ignore make clean error (lintian)
* Update malaga-doc.* to reflect change to single html file, update section

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
                       INSTALLATION GUIDE TO MALAGA 7.11
 
1
                       INSTALLATION GUIDE TO MALAGA 7.12
2
2
                            (C) 1996 Bjoern Beutel
3
3
 
4
4
Malaga should be easily portable to nearly every POSIX system on which an
5
 
ISO-C90-Compiler is running. It also runs on Win32 systems after being compiled
6
 
using the MinGW GCC compiler.
 
5
ISO-C90-Compiler is running.
7
6
 
8
7
Malaga is available as a ".tgz" (GNU tar + GNU zip) archive. For extraction in
9
 
POSIX systems, you need to have GNU tar, version 1.11.2 or later,
10
 
installed. It is freely available from <http://www.gnu.org/software/tar>. 
11
 
For extraction on Win32 systems, you need to have 
12
 
- either 7-Zip (free, <http://www.7-zip.org>), 
13
 
- or PowerArchiver 6.1 (free, <http://www.sfsu.edu/ftp/win/utils>, 
14
 
- or WinZip (commercial, <http://www.winzip.com>),
15
 
or any other file archiver that understands the ".tgz" format.
 
8
POSIX systems, you need to have GNU tar, version 1.11.2 or later, installed. It
 
9
is freely available from <http://www.gnu.org/software/tar>.
16
10
 
17
11
Malaga uses Unicode support routines from GLib, so you need to have GLib,
18
12
version 2.0 or later, installed on your computer system. You can get GLib for
19
13
free from <http://www.gtk.org>.
20
14
 
21
 
For the GUI-based display of analysis data, you need to have GTK+, version 2.0
22
 
or later, installed on your computer system. You can get GTK+ for free from 
23
 
<http://www.gtk.org>. The Win32 binary distribution comes along with the needed
24
 
GTK+ DLLs. You can get GTK+ from <http://www.gtk.org>. 
 
15
For the GUI-based display of analysis data, you need to have GTK+, version 2.8
 
16
or later, installed on your computer system. You can get GTK+ for free from
 
17
<http://www.gtk.org>.
25
18
 
26
19
In the source distribution, the documentation is included as a Texinfo file.
27
20
You'll need GNU Texinfo, version 4.0 or later, to translate it to DVI or HTML.
28
21
If you want to translate it to DVI, you'll also need TeX on your computer. The
29
22
Info files are already included. You can get GNU Texinfo for free from
30
 
<http://www.gnu.org/software/texinfo>. The Win32 binary distribution doesn't
31
 
include the documentation; you'll have to download it from
32
 
<http://www.malaga-grammars.de>.
 
23
<http://www.gnu.org/software/texinfo>.
33
24
 
34
25
There is a Malaga interface to the editor Emacs, "malaga.el", written in Emacs
35
 
Lisp. It provides "malaga-mode" that supports editing Malaga grammar files, 
 
26
Lisp. It provides "malaga-mode" that supports editing Malaga grammar files,
36
27
"malaga-project-mode" that supports editing Malaga project files, and
37
28
"malaga-process-mode", a mode for interactive work with "malaga" and "mallex"
38
29
that also supports debugging. You can get GNU Emacs for free from
39
30
<http://www.gnu.org/software/emacs> and XEmacs from <http://www.xemacs.org>.
40
31
 
41
32
 
42
 
= Installing the Malaga Source Distribution ===================================
 
33
= Installing the Malaga Source Distribution on POSIX systems ===================
43
34
 
44
35
1. All the files you need to install Malaga are stored in a file called
45
 
   "malaga-7.11.tgz". Move to the directory where you want tho create the Malaga
46
 
   directory, copy the file "malaga-7.11.tgz" to this directory and enter the
 
36
   "malaga-7.12.tgz". Move to the directory where you want tho create the Malaga
 
37
   directory, copy the file "malaga-7.12.tgz" to this directory and enter the
47
38
   following commands to unpack the original files:
48
39
 
49
 
     tar zxf malaga-7.11.tgz
 
40
     tar zxf malaga-7.12.tgz
50
41
 
51
 
   You will now discover a new directory "malaga-7.11" which contains all 
 
42
   You will now discover a new directory "malaga-7.12" which contains all 
52
43
   directories and files you need.
53
44
 
54
 
2. Change to the directory "malaga-7.11" and enter "./configure". 
 
45
2. Change to the directory "malaga-7.12" and enter "./configure". 
55
46
   Malaga will be configured for your system.
56
47
 
57
48
3. Enter "make".
64
55
 
65
56
5. If you are using Emacs, add the line
66
57
 
67
 
   (require 'malaga ".../malaga-7.11/malaga.el")
 
58
   (require 'malaga ".../malaga-7.12/malaga.el")
68
59
 
69
60
   to the file ".emacs" in your home directory, so the Malaga extensions will
70
61
   be loaded automatically if you are starting Emacs.
71
 
   (Use the absolute path for ".../malaga-7.11".)
 
62
   (Use the absolute path for ".../malaga-7.12".)
72
63
 
73
64
6. Make sure that your terminal program (or Emacs) is using the UTF-8 character
74
65
   set.
75
66
 
76
67
 
77
 
= Installing the Malaga Win32 Binary Distribution =============================
78
 
 
79
 
1. All the files you need to install Malaga are stored in a file called
80
 
   "malaga-7.11-win32.tgz". Extract this file using either PowerArchiver or
81
 
   WinZip or 7-Zip. 
82
 
 
83
 
2. Add the directory ".../malaga-7.11-win32\bin" to your command path.
84
 
   (Use the absolute path for "...malaga-7.11-win32".)
85
 
 
86
 
3. If you are using Emacs, add the line
87
 
 
88
 
   (require 'malaga ".../malaga-7.11-win32/malaga.el")
89
 
 
90
 
   to the Emacs configuration file "C:\.emacs", so the Malaga extensions will 
91
 
   be loaded automatically if you are starting Emacs.  
92
 
   (Use the absolute path for ".../malaga-7.11-win32".)
93
 
 
94
 
4. Make sure that your terminal program (or Emacs) is using the UTF-8 character
95
 
   set.
96
 
 
97
68
= End of file =================================================================