File: INSTALL

package info (click to toggle)
gretl 1.6.0-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 18,604 kB
  • ctags: 12,954
  • sloc: ansic: 184,106; sh: 8,522; makefile: 1,634; lisp: 1,157; perl: 917; xml: 175
file content (93 lines) | stat: -rw-r--r-- 3,645 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
Gretl uses GNU autoconf.  Here's the quick way to get going:

  ./configure
  make
  make check
  make install

* You may want to do "./configure --help" first to see what options are
  available.  

* By default the installation goes under /usr/local.  To install
  elsewhere use "./configure --prefix=/your/prefix".  See also the
  notes on gnome below.

* On systems where GNU make is not the default you may need to use the
  "--with-gmake" option to ./configure.

* See below the "Dependencies" section for discussion of further
  configure options.

Dependencies: gretl relies on various libraries and auxiliary
programs, as follows:

Package     gretl status   functionality
===============================================================

gtk          required       provides the gretl GUI

xml          required       open and save data files in the
                            default format

gnuplot      required       generate graphs

lapack	     required	    linear algebra operations

gdk-pixbuf   required       handle graphs in PNG format; make
                            gnuplot graphs interactive

libpng       optional       enhance gretl's ability to work
                            with PNG graphs created by gnuplot

readline     optional       provides a nice editable command line
                            in gretlcli, the command-line program

gnome        optional       gretl is integrated into the gnome
                            desktop (file icons and associations,
                            help system and so on)

GMP          optional       supports gretl's Multiple Precision OLS
                            plugin

gtksourceview optional      syntax highlighting for gretl scripts

=================================================================

Notes:

* By default gretl attempts to build against the gtk 2.0
  libraries.  If you want to prevent this (i.e., if you have gtk 2.0
  installed but would prefer to build gretl using the traditional gtk
  1.2) specify the option "--without-gtk2".  This slightly reduces
  gretl's functionality.

* When gretl is built against gtk 1.2, it looks for an installed
  version of libole2 to link against; if you want to prevent this,
  specify the option "--without-libole2".  Then gretl will use the
  subset of libole2 code supplied in the source package.  This does
  not reduce gretl's functionality.

* When gretl is built against gtk 1.2, it looks for an installed
  version of libgtkextra to link against; if you want to prevent this,
  specify the option "--without-gtkextra".  Then gretl will use the
  subset of gtkextra code supplied in the source package.  Again, this
  does not reduce gretl's functionality.

* The gretl configure script looks for the gnome desktop, and arranges
  for gretl to be built with gnome support if gnome is found on your
  system.  If you want to disable this, add the option
  "--without-gnome" when running ./configure.

* By default, gnome-specific gretl files (e.g. pixmaps, help files,
  the gretl.desktop file) are installed under the prefix that is
  returned by the command "gnome-config --prefix" (gnome 1.4) or
  "pkg-config --variable=prefix libgnome-2.0" (gnome 2.0).  This will
  generally be correct, but if you want to override this behavior you
  may use the option "--with-gnome-install=DIR" when running
  configure. Substitute for "DIR" the prefix you want to use.

* If you want to build gretl without a dependency on GMP, even though
  libgmp is on your system, specify the option "--without-gmp".  This
  reduces gretl's functionality and is not recommended.

Allin Cottrell, September 2003.