chiark / gitweb /
78adb5daa73194a04dde522b07d5fcefeec2edef
[profile] / setup
1 #! /bin/sh
2
3 set -e
4
5 umask 002
6
7 sub=
8 mkdir -p $HOME$sub
9
10 : ${REPO=http://guvnor.distorted.org.uk/ftp/pub/mdw}
11
12 export PATH=/usr/local/bin:$HOME$sub/bin:/usr/bin:/usr/ccs/bin:/bin
13
14 ### Sort out command line
15 xstuff= false=
16 while [ $# -gt 0 ]; do
17   case "$1" in
18     -x) xstuff=t;;
19     -n) false=false;;
20     --) shift; break;;
21     -*) echo >&2 "$0: bad option"; exit 1;;
22     *) break;;
23   esac
24   shift
25 done
26
27 ### Find out where I am
28 here=$(pwd)
29
30 ### Suss out how to print things
31 out=$(echo -n "foo"; echo "bar")
32 if [ "$out" = "foobar" ]; then
33   echon="echo -n"
34   echoc=""
35 else
36   echon="echo"
37   echoc='\c'
38 fi
39
40 ### Create the necessary directories
41 echo "Creating directories..."
42 for i in bin lib/emacs src; do
43   $echon "  $i:$echoc"
44   if [ -d $HOME$sub/$i ]; then
45     echo " already exists."
46   else
47     mkdir -p $HOME$sub/$i
48     echo " done."
49   fi
50 done
51 echo "  all done."
52
53 ### Find out how to fetch things over the net
54 $echon "Finding URL fetcher:$echoc"
55 if curl >/dev/null 2>&1 --version || [ $? -eq 2 ]; then
56   GETURL="curl -fs -o"
57   echo " curl."
58 elif wget >/dev/null 2>&1 --version; then
59   GETURL="wget -q -O"
60   echo " wget."
61 else
62   echo " failed!"
63   echo >&2 "$0: failed to find URL fetcher"
64   exit 1
65 fi
66
67 ### Install necessary things
68 echo "Installing useful scripts..."
69
70 for script in lesspipe.sh start-ssh-agent svnwrap; do
71   $echon "  $script:$echoc"
72   found=
73   for p in /bin /usr/bin /usr/local/bin $(echo $PATH | tr : ' '); do
74     if $false [ -x $p/$script ]; then
75       found=t
76       break
77     fi
78   done
79   if [ "$found" ]; then
80     echo " already installed."
81   else
82     $echon " downloading$echoc"
83     $GETURL $HOME$sub/bin/$script $REPO/$script
84     chmod +x $HOME$sub/bin/$script
85     echo " done."
86   fi
87 done
88
89 echo "  all done."
90
91 ### Install some more complicated programs
92 echo "Installing packages..."
93 systems="
94   mLib:2.0.3:mLib-config
95   chkpath:1.1.0:tmpdir
96 "
97 [ "$xstuff" ] && systems="$systems
98   mgLib:1.1.0:mgLib-config
99   xtoys:1.3.0:xscsize
100 "
101 for system in $systems; do
102   set -- $(echo $system | tr : ' ')
103   sys=$1 ver=$2 prog=$3
104   $echon "  $sys:$echoc"
105   if $false $prog >/dev/null 2>&1 --version; then
106     echo " already installed."
107   else
108     ( set -e
109       $echon " downloading$echoc"
110       cd $HOME$sub/src
111       rm -rf $sys-$ver.tar.gz $sys-$ver
112       $GETURL $sys-$ver.tar.gz $REPO/$sys-$ver.tar.gz
113       $echon " unpacking$echoc"
114       gzip -cd $sys-$ver.tar.gz | tar xf -
115       $echon " configuring$echoc"
116       cd $sys-$ver
117       mkdir build
118       cd build
119       ../configure --prefix=$HOME$sub >>buildlog 2>&1
120       $echon " building$echoc"
121       make >>buildlog 2>&1
122       $echon " installing$echoc"
123       make install >>buildlog 2>&1
124       echo " done."
125     )
126   fi
127 done
128 echo "  all done."
129
130 ### Symlink the various dotfiles into place
131 dotfiles=" 
132   bash_profile bash_logout bashrc
133   emacs emacs-calc 
134   vm mailrc
135   lisp-init.lisp:.cmucl-init.lisp
136     lisp-init.lisp:.sbclrc
137     lisp-init.lisp:.clisprc.lisp
138   dircolors screenrc cvsrc"
139 [ "$xstuff" ] && dotfiles="$dotfiles
140   xinitrc xsession Xdefaults
141   eterm-theme.cfg:.Eterm/themes/Eterm/theme.cfg
142   e-keybindings.cfg:.enlightenment/keybindings.cfg
143   jue-peek.jpg:.enlightenment/backgrounds/jue-peek.jpg"
144 mkdir -p $HOME/test
145 echo "Installing dotfiles..."
146 for d in $dotfiles; do
147   target=.$d
148   case $d in
149     *:*) target=${d#*:} d=${d%%:*};;
150   esac
151   ft=$HOME$sub/$target
152   dir=${ft%/*}
153   mkdir -p $dir
154   ln -s $here/$d $ft.new
155   mv $ft.new $ft
156   echo "  $target"
157 done
158 echo "  all done."
159
160 ### Set up the Emacs config
161 echo "Installing Emacs packages..."
162 for elib in make-regexp; do
163   $echon "  $elib:$echoc"
164   if $false emacs >/dev/null 2>&1 --batch --eval '
165        (setq load-path (nconc load-path (list "~/lib/emacs")))
166        (kill-emacs (condition-case nil
167                        (progn (load-library "make-regexp") 0)
168                      (error 1)))'; then
169     echo " already installed."
170   else
171     $echon " downloading$echoc"
172     $GETURL $HOME$sub/lib/emacs/make-regexp.el $REPO/make-regexp.el
173     $echon " compiling$echoc"
174     (cd $HOME$sub/lib/emacs;
175       emacs >/dev/null 2>&1 --batch \
176         --eval '(byte-compile-file "make-regexp.el")')
177     echo " done."
178   fi
179 done
180 echo "  all done."
181
182 $echon "Setting up Emacs configuration:$echoc"
183 $echon " linking$echoc"
184 for link in dot-emacs.el:dot-emacs.el emacs-Makefile:Makefile; do
185   set -- $(echo $link | tr : ' ')
186   from=$1 to=$2
187   ln -s $here/$from $HOME$sub/lib/emacs/$to.new
188   mv $HOME$sub/lib/emacs/$to.new $HOME$sub/lib/emacs/$to
189 done
190 $echon " compiling$echoc"
191 make >/dev/null 2>&1 -C $HOME$sub/lib/emacs
192 echo " done."