Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 96001 | Differences between
and this patch

Collapse All | Expand All

(-)xtem-8.26/xteminstall (-7 / +7 lines)
Lines 1-4 Link Here
1
#!/bin/sh
1
#!/bin/bash
2
#^^^^^^^^^ modify first line if necessary, don't delete this line
2
#^^^^^^^^^ modify first line if necessary, don't delete this line
3
# (Bourne shell -- maybe Bash), the bourne shell call specified in first line
3
# (Bourne shell -- maybe Bash), the bourne shell call specified in first line
4
# is used for creation/modification of some more scripts!
4
# is used for creation/modification of some more scripts!
Lines 16-22 Link Here
16
umask 022			; # prevents group/other-write permission
16
umask 022			; # prevents group/other-write permission
17
				  # for new files (e.g. at program compilation)
17
				  # for new files (e.g. at program compilation)
18
18
19
INSTPATH=""			; # normally empty, will then be set
19
INSTPATH=${WORKDIR}			; # normally empty, will then be set
20
				  # automatically (see below);
20
				  # automatically (see below);
21
				  # must be set if used with "mount NFS"
21
				  # must be set if used with "mount NFS"
22
				  # and using different export and mount pathes
22
				  # and using different export and mount pathes
Lines 26-36 Link Here
26
				  #   $INSTPATH/xtem-n.nn/xteminstall
26
				  #   $INSTPATH/xtem-n.nn/xteminstall
27
				  # (n.nn being the current version)
27
				  # (n.nn being the current version)
28
28
29
BINPATH="/usr/local/bin"	; # into this directory executeables and shell 
29
BINPATH="${D}usr/bin"	; # into this directory executeables and shell 
30
				  # scripts are copied; must be included in 
30
				  # scripts are copied; must be included in 
31
				  # search path variable $PATH
31
				  # search path variable $PATH
32
32
33
MANPATH="/usr/local/man/man1"	; # into this directory the man-page 
33
MANPATH="${D}usr/share/man/man1"	; # into this directory the man-page 
34
				  # is to be installed
34
				  # is to be installed
35
    
35
    
36
WISHCALL="/usr/bin/wish"	; # command to call wish 
36
WISHCALL="/usr/bin/wish"	; # command to call wish 
Lines 39-45 Link Here
39
TCLCALL="/usr/bin/tclsh"	; # command to call tclsh 
39
TCLCALL="/usr/bin/tclsh"	; # command to call tclsh 
40
				  # (Tcl without Tk)
40
				  # (Tcl without Tk)
41
41
42
PRINTCOM="ABORT"		; # print command name list 
42
PRINTCOM="lpr"		; # print command name list 
43
				  # (without options, separated by blanks),
43
				  # (without options, separated by blanks),
44
				  # the print commands must exist,if more than 1 element:
44
				  # the print commands must exist,if more than 1 element:
45
				  # first element will become default printer when
45
				  # first element will become default printer when
Lines 65-75 Link Here
65
				  # each language is enclosed in braces and can 
65
				  # each language is enclosed in braces and can 
66
				  # be followed by any number of synonyms
66
				  # be followed by any number of synonyms
67
67
68
DEFLANGUAGE="german"		; # specifies the defaultlanguage
68
DEFLANGUAGE="english"		; # specifies the defaultlanguage
69
69
70
CC="gcc"			; # C-compiler for translation of C Programs
70
CC="gcc"			; # C-compiler for translation of C Programs
71
71
72
CC_OPTS=""			; # options for C-compiler (e.g. "-DAIX")
72
CC_OPTS="${CFLAGS}"		; # options for C-compiler (e.g. "-DAIX")
73
73
74
XiMaxBoxWidth=120		; # maximum box width (characters) 
74
XiMaxBoxWidth=120		; # maximum box width (characters) 
75
				  # for (large) select boxes
75
				  # for (large) select boxes

Return to bug 96001