File: INSTALL

package info (click to toggle)
yorick-cubeview 2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: makefile: 61; sh: 7
file content (101 lines) | stat: -rw-r--r-- 3,247 bytes parent folder | download | duplicates (4)
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
94
95
96
97
98
99
100
101
$Id: INSTALL,v 1.1 2008-03-07 10:03:02 paumard Exp $

        --== Cubeview for Yorick installation instructions==--

I) Install necessary and recommended dependencies
 yorick, yorick-yutils, yorick-gy, gtk3
II) Copy cubeview's files to the right location
 1) system-wide installation
 2) single-user installation

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

I) Install necessary and recommended dependencies

Cubeview may be packaged for your GNU/Linux distribution. Else:

Yorick:
https://github.com/dhmunro/yorick

yorick-yutils:
https://github.com/frigaut/yorick-yutils

yorick-gy:
https://github.com/paumard/yorick-gy

Gtk+ 3:
http://www.gtk.org/

II) Copy cubeview's files to the right location

 In short:
   ./configure
   make [DEST_Y_HOME=... DEST_Y_SITE=...] install

 1) system-wide installation

 - update Makefile: yorick -batch make.i

 - to install in the main yorick directories, simply type "make
   install" and you should be done. The "cubeview" script will end-up
   in Y_HOME/bin, make sure there is a link in your path.

 - you can fine-tune the installation directories using some variables.
   Either edit the Makefile or use this syntax:
     make SOME_OPTION=some/value install

   List of options with default values:

    DESTDIR=""

    DEST_Y_SITE=$(DESTDIR)/$(Y_SITE)
    DEST_Y_HOME=$(DESTDIR)/$(Y_HOME)

    BIN_DIR=$(Y_HOME)/bin
    MAN_DIR=$(Y_SITE)/man
    DEST_BIN_DIR=$(DESTDIR)/$(BIN_DIR)
    DEST_MAN_DIR=$(DESTDIR)/$(MAN_DIR)

   Y_SITE and Y_HOME above have the same values as in yorick. DESTDIR
   is mostly useful for packaging purposes.

   If Y_SITES and Y_HOMES (note the trailing "S") are defined in
   yorick, it is a good idea to install Cubeview in directories listed
   there: set DEST_Y_SITE (resp. DEST_Y_HOME) to one of the
   directories listed in Y_SITES (resp. Y_HOMES).

   Set DEST_BIN_DIR to some directory in your path
   (e.g. /usr/local/bin) and DEST_MAN_DIR to something in your
   $MANPATH (e.g. /usr/local/share/man).

   The files will be installed as follows:
    $(DEST_Y_SITE)/i:       *.i except check.i and cubeview_start.i;
    $(DEST_Y_SITE)/glade:   cubeview.glade;
    $(DEST_Y_HOME)/i-start: cubeview_start.i
    $(DEST_BIN_DIR):        cubeview (chmod a+x);
    $(DEST_MAN_PATH)/man1:  cubeview.1.gz

 2) single user installation

It is possible to do a "system-wide" type of installation even inside
a user's home directory. See the "add_y_home" function in pathfun.i
(which comes with Yorick). A simplified installation is also possible:

 - determine what your Y_USER directory is. (enter yorick and type
   "Y_USER"). If this directory doesn't exist, create one of
   ~/Yorick/, ~/yorick/ or ~/.yorick/, whichever suites your taste
   better. It will henceforth be detected as Y_USER by Yorick; 

 - copy all *.i, and *.glade files into Y_USER (check.i and
   cubeview_start.i are not required here);

 - copy cubeview_start.i into Y_USER/i-start/

 - copy the "cubeview" shell script somewhere in your path;

 - copy cubeview.1 wherever you like your manpages. You can read it
   using its full path even if it is not installed properly: e.g.
    man ./cubeview.1

 - make sure the "cubeview" shell script is executable: e.g. 
      chmod a+x /path/to/cubeview