chiark / gitweb /
bashrc: Kill entitle, and remove some other bits of cruft.
[profile] / setup
CommitLineData
f617db13
MW
1#! /bin/sh
2
3set -e
4
5umask 002
6
4aa875e9 7sub=
f617db13
MW
8mkdir -p $HOME$sub
9
10: ${REPO=http://guvnor.distorted.org.uk/ftp/pub/mdw}
11
12export PATH=/usr/local/bin:$HOME$sub/bin:/usr/bin:/usr/ccs/bin:/bin
13
14### Sort out command line
15xstuff= false=
16while [ $# -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
25done
26
27### Find out where I am
28here=$(pwd)
f617db13
MW
29
30### Suss out how to print things
31out=$(echo -n "foo"; echo "bar")
32if [ "$out" = "foobar" ]; then
33 echon="echo -n"
34 echoc=""
35else
36 echon="echo"
37 echoc='\c'
38fi
39
40### Create the necessary directories
41echo "Creating directories..."
42for 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
50done
51echo " all done."
52
53### Find out how to fetch things over the net
54$echon "Finding URL fetcher:$echoc"
55if curl >/dev/null 2>&1 --version || [ $? -eq 2 ]; then
56 GETURL="curl -fs -o"
57 echo " curl."
58elif wget >/dev/null 2>&1 --version; then
59 GETURL="wget -q -O"
60 echo " wget."
61else
62 echo " failed!"
63 echo >&2 "$0: failed to find URL fetcher"
64 exit 1
65fi
66
67### Install necessary things
68echo "Installing useful scripts..."
69
ed2a32e1 70for script in lesspipe.sh start-ssh-agent svnwrap; do
f617db13
MW
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
87done
88
89echo " all done."
90
91### Install some more complicated programs
92echo "Installing packages..."
93systems="
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"
101for 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
127done
128echo " all done."
129
130### Symlink the various dotfiles into place
131dotfiles="
132 bash_profile bash_logout bashrc
133 emacs emacs-calc
134 vm mailrc
ccaac00b
MW
135 lisp-init.lisp:.cmucl-init.lisp
136 lisp-init.lisp:.sbclrc
137 lisp-init.lisp:.clisprc.lisp
db27ee7d 138 dircolors screenrc cvsrc"
739bccbf
MW
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"
f617db13
MW
144mkdir -p $HOME/test
145echo "Installing dotfiles..."
146for d in $dotfiles; do
739bccbf
MW
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"
f617db13
MW
157done
158echo " all done."
159
160### Set up the Emacs config
161echo "Installing Emacs packages..."
162for elib in make-regexp; do
163 $echon " $elib:$echoc"
164 if $false emacs >/dev/null 2>&1 --batch --eval '
e45ba675 165 (setq load-path (nconc load-path (list "~/lib/emacs")))
f617db13
MW
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
179done
180echo " all done."
181
182$echon "Setting up Emacs configuration:$echoc"
183$echon " linking$echoc"
184for link in dot-emacs.el:dot-emacs.el emacs-Makefile:Makefile; do
185 set -- $(echo $link | tr : ' ')
186 from=$1 to=$2
739bccbf
MW
187 ln -s $here/$from $HOME$sub/lib/emacs/$to.new
188 mv $HOME$sub/lib/emacs/$to.new $HOME$sub/lib/emacs/$to
f617db13
MW
189done
190$echon " compiling$echoc"
191make >/dev/null 2>&1 -C $HOME$sub/lib/emacs
192echo " done."