cleaned up behavior when no custom files are defined yet.
[feisty_meow.git] / scripts / core / variables.sh
1 #!/bin/bash
2
3 ##############
4
5 # variables script:
6 #   Defines the environment variables used by the personalized unix
7 #   environment.
8 # Author: Chris Koeritz
9
10 ##############
11
12 if [ ! -z "$SHELL_DEBUG" ]; then echo variables initialization begins...; fi
13
14 ##############
15
16 # System variables...
17
18 # OS variable records the operating system we think we found.
19 if [ -z "$OS" ]; then
20   export OS=UNIX
21 fi
22 export IS_DARWIN=$(echo $OSTYPE | grep -i darwin)
23
24 if [ -z "$HOME" ]; then
25   if [ "$OS" == "Windows_NT" ]; then
26     export HOME=/c/home
27     if [ ! -d $HOME ]; then
28       mkdir $HOME
29     fi
30   fi
31 fi
32
33 # patch home to undo cygwin style of drive letter.
34 export HOME=$(echo $HOME | sed -e 's/\/cygdrive\//\//g')
35 #echo HOME is now $HOME
36
37 if [ "$OS" == "Windows_NT" ]; then
38   export HOSTNAME=$(echo $HOSTNAME | tr A-Z a-z)
39 fi
40
41 # ulimit and umask.  umask sets a permission mask for all file
42 # creations.  The mask shown here disallows writing by the "group" and
43 # "others" categories of users.  ulimit sets the user limits.  the core
44 # file size is set to zero.
45 umask 022
46 ulimit -c 0
47
48 ##############
49
50 # Directory variables...
51
52 export SCRIPT_SYSTEM=feisty_meow
53
54 #if [ -z "$FEISTY_MEOW_DIR" ]; then export FEISTY_MEOW_DIR="$HOME/$SCRIPT_SYSTEM"; fi
55 #if [ -z "$FEISTY_MEOW_SCRIPTS" ]; then export FEISTY_MEOW_SCRIPTS="$FEISTY_MEOW_DIR/scripts"; fi
56 #if [ -z "$FEISTY_MEOW_SCRIPTS" ]; then export FEISTY_MEOW_SCRIPTS="$FEISTY_MEOW_SCRIPTS"; fi
57
58 # include helpful functions.
59 source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
60
61 # LIBDIR is an older variable that points at the root of the yeti code.
62 export LIBDIR=$FEISTY_MEOW_DIR
63
64 if [ -z "$FEISTY_MEOW_GENERATED" ]; then
65   # The generated scripts directory is where automatically generated files live.
66   # It is separate from the main body of the shell scripts in order to keep things from
67   # exploding.
68   export FEISTY_MEOW_GENERATED=$HOME/.zz_auto_gen
69 fi
70
71 ##############
72
73 # user variables...
74
75 # define a default name, if one wasn't already set.
76 if [ -z "$NAME" ]; then
77   export NAME='Unset Q. Namington, Fixley Your Name III'
78 fi
79
80 ##############
81
82
83 ##############################################################################
84 # other variables...
85 ##############################################################################
86
87 # pull in the custom overrides for feisty_meow scripts.
88 for i in $FEISTY_MEOW_GENERATED/custom/*.sh; do
89   if [ ! -f "$i" ]; then
90     # skip it if it's not real.
91     continue;
92   fi
93   if [ ! -z "$SHELL_DEBUG" ]; then
94     echo "loading customization: $(basename $(dirname $i))/$(basename $i)"
95   fi
96   source $i
97 done
98
99 # sets the prompts to what we (i.e., i) like...
100 # there are four different prompts.  the first one, PS1, is the one that users
101 # see the most often. 
102 export PS1='\u@\h $ ';
103 ### export PS2='> '; export PS3='#? '; export PS4='+ '
104
105 # variables for perl.
106 export PERLLIB
107 if [ "$OS" != "Windows_NT" ]; then
108   PERLLIB+="/usr/lib/perl5"
109 else
110 #echo "the scripts dir is $FEISTY_MEOW_SCRIPTS"
111   FEISTY_MEOW_SCRIPTS="$(echo $FEISTY_MEOW_SCRIPTS | sed -e 's/\\/\//g')"
112   FEISTY_MEOW_SCRIPTS="$FEISTY_MEOW_SCRIPTS"
113 #echo "the scripts dir is now $FEISTY_MEOW_SCRIPTS"
114   export PERLIO=:perlio
115     # choose perl's IO over the system's so we can handle file bytes exactly.
116 fi
117
118 #make this automatic!
119 PERLLIB+=":$FEISTY_MEOW_SCRIPTS/core:$FEISTY_MEOW_SCRIPTS/text:$FEISTY_MEOW_SCRIPTS/files:$FEISTY_MEOW_SCRIPTS/archival"
120
121 # set this so nechung can find its data.
122 export NECHUNG=$LIBDIR/database/fortunes.dat
123
124 # ensure we use the right kind of rsh for security.
125 export CVS_RSH=ssh
126
127 # sets the history length and max file size so we can get some long history around here.
128 HISTSIZE=1000000
129 HISTFILESIZE=2000000
130
131 # set the editor for subversion if it hasn't already been set.
132 if [ -z "$SVN_EDITOR" ]; then
133 #hmmm: not sure what original reason for having these different was...
134   if [ "$OS"  == "Windows_NT" ]; then
135     export SVN_EDITOR=$(which gvim)
136   else
137     export SVN_EDITOR=$(which vi)
138   fi
139 fi
140
141 # include variables needed for compiling hoople and using its scripts.
142 if [ -z "$FEISTY_MEOW_DIR" ]; then
143   if [ -d "$HOME/feisty_meow" ]; then
144     export FEISTY_MEOW_DIR="$HOME/feisty_meow"
145   fi
146 fi
147
148 # initialize the build variables, if possible.
149 found_build_vars=0
150 if [ ! -z "$FEISTY_MEOW_DIR" ]; then
151   # first guess at using the old school bin directory.
152   bv="$FEISTY_MEOW_DIR/bin/build_variables.sh"
153   if [ -f "$bv" ]; then
154     # the old bin directory is present, so let's use its build vars.
155     source "$bv" "$bv"
156     found_build_vars=1
157   else
158     # try again with the new school location for the file.
159     bv="$FEISTY_MEOW_DIR/scripts/generator/build_variables.sh"
160     if [ -f "$bv" ]; then
161       # yep, that one looks good, so pull in the build defs.
162       source "$bv" "$bv"
163       found_build_vars=1
164     else
165       # try once more with new school and assume we're deep.
166       bv="$FEISTY_MEOW_DIR/../../scripts/generator/build_variables.sh"
167       if [ -f "$bv" ]; then
168         # sweet, there is something there.
169         source "$bv" "$bv"
170         found_build_vars=1
171       fi
172     fi
173   fi
174 fi
175
176 # augment the configuration if we found our build variables.
177 if [ $found_build_vars == 1 ]; then
178
179   # the binary directory contains handy programs we use a lot in yeti.  we set up the path to it
180   # here based on the operating system.
181   # note that yeti has recently become more dependent on hoople.  hoople was always the source of
182   # the binaries, but now we don't ship them with yeti any more as pre-built items.  this reduces
183   # the size of the code package a lot and shortens up our possible exposure to compromised
184   # binaries.  people can bootstrap up their own set from hoople now instead.
185   export BINDIR=$FEISTY_MEOW_DIR/production/binaries
186
187   # add binaries created within build to the path.
188   export PATH="$(dos_to_msys_path $BUILD_TOP/build/bin):$PATH"
189
190   # Shared libraries are located via this variable.
191   export LD_LIBRARY_PATH="$(dos_to_msys_path $LD_LIBRARY_PATH):$(dos_to_msys_path $BINDIR)"
192 fi
193
194 # Set the path for locating applications.
195 export PATH="$(dos_to_msys_path $BINDIR):$(dos_to_msys_path $FEISTY_MEOW_GENERATED):$PATH:/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/lib:/usr/games:/usr/bin:."
196
197 if [ ! -z "$SHELL_DEBUG" ]; then echo variables initialization ends....; fi
198