5 ###--------------------------------------------------------------------------
13 : ${REPO=https://ftp.distorted.org.uk/pub/mdw/profile}
15 export PATH=/usr/local/bin:$HOME$sub/bin:/usr/bin:/usr/ccs/bin:/bin
17 ###--------------------------------------------------------------------------
18 ### Sort out command line.
21 while [ $# -gt 0 ]; do
26 -*) echo >&2 "$0: bad option"; exit 1;;
32 ###--------------------------------------------------------------------------
33 ### Environment autoconfiguration.
35 ## Find out where I am
38 ## Suss out how to print things
39 out=$(echo -n "foo"; echo "bar")
40 if [ "$out" = "foobar" ]; then
48 ## Find out how to fetch things over the net
49 $echon "Finding URL fetcher:$echoc"
50 if curl >/dev/null 2>&1 --version || [ $? -eq 2 ]; then
53 elif wget >/dev/null 2>&1 --version; then
58 echo >&2 "$0: failed to find URL fetcher"
62 ###--------------------------------------------------------------------------
63 ### Create the necessary directories.
65 echo "Creating directories..."
66 for i in bin lib/emacs src; do
68 if [ -d $HOME$sub/$i ]; then
69 echo " already exists."
77 ###--------------------------------------------------------------------------
78 ### Install some more complicated programs.
80 echo "Installing packages..."
85 [ "$xstuff" ] && systems="$systems
88 for system in $systems; do
89 set -- $(echo $system | tr : ' ')
92 if $false $prog >/dev/null 2>&1 --version; then
93 echo " already installed."
96 $echon " downloading$echoc"
98 rm -rf $sys.tar.gz $sys-$ver
99 $GETURL $sys.tar.gz $REPO/$sys.tar.gz
100 $echon " unpacking$echoc"
101 dir=$(gzip -cd $sys.tar.gz | tar tf - | head -1)
102 gzip -cd $sys.tar.gz | tar xf -
103 $echon " configuring$echoc"
109 PKG_CONFIG_PATH=$HOME$sub/lib/pkgconfig \
111 $echon " building$echoc"
113 $echon " installing$echoc"
114 make install >>buildlog 2>&1
121 ###--------------------------------------------------------------------------
122 ### Install global configuration.
124 echo -n "Installing dotfile configuration:"
125 if [ -f $HOME$sub/.mdw.conf ]; then
126 echo " already installed."
128 cp mdw.conf $HOME$sub/.mdw.conf
132 ## Symlink the various dotfiles into place
134 bash_profile bash_logout bashrc inputrc bash_completion
135 emacs emacs-calc vm gnus.el ercrc.el
136 vimrc mg zile lesskey sqliterc
137 parallel-config:.parallel/config
138 ipython-config.py:.ipython/profile_default/ipython_config.py
139 ipython-key-bindings.py:.ipython/profile_default/startup/50-key-bindings.py
141 mailrc signature muttrc
147 mc-ini:.mc/ini mc-panels.ini:.mc/panels.ini
148 pulse-daemon.conf:.pulse/daemon.conf
150 tclshrc:.tclshrc tclshrc:.wishrc
151 lisp-init.lisp:.cmucl-init.lisp
152 lisp-init.lisp:.sbclrc
153 lisp-init.lisp:.clisprc.lisp
154 lisp-init.lisp:.eclrc
156 mdw-build.conf:.config/mdw-build.conf
157 w3m-config:.w3m/config elinks.conf:.elinks/elinks.conf
158 dircolors colordiffrc screenrc tmux.conf cvsrc indent.pro"
159 [ "$xstuff" ] && dotfiles="$dotfiles
160 xinitrc xsession xmodmap vncrc vncsession
163 putty-defaults:.putty/sessions/Default%20Settings
164 mdw.session:.config/gnome-session/sessions/mdw.session
165 eterm-theme.cfg:.Eterm/themes/Eterm/theme.cfg
166 e-keybindings.cfg:.enlightenment/keybindings.cfg
167 evnc-keybindings.cfg:.enlightenment-vnc/keybindings.cfg
168 e16-bindings:.e16/bindings.cfg
170 gtk3.css:.config/gtk-3.0/gtk.css
171 gtk3-settings.ini:.config/gtk-3.0/settings.ini"
172 echo "Installing dotfiles..."
173 for d in $dotfiles; do
176 *:*) target=${d#*:} d=${d%%:*};;
181 ln -s $here/dot/$d $ft.new
187 ## CPP-hack files which need it.
189 [ "$xstuff" ] && cppfiles="$cppfiles
191 echo "Hacking files with C preprocessor..."
192 defs="-DHOME=$HOME -DPROFILE=$here"
193 defs="$defs -DEMACSWD=$(bin/mdw-conf emacs-width 77)"
194 for c in $cppfiles; do
197 *:*) target=${c#*:} c=${c%%:*};;
202 cpp -P $defs dot/$c -o $ft.new
208 ## Substitute things which need substituting.
212 pulse-default.pa.in:.pulse/default.pa"
213 echo "Installing dotfiles with substitutions..."
214 for d in $dotfilessubst; do
216 *:*) target=${d#*:} d=${d%%:*};;
217 *) target=.$d d=$d.in;;
224 ### generated by $here/setup; do not edit!\\
226 /@home@/ s
\a\a$HOME
\ag
227 /@profile@/ s
\a\a$here
\ag
228 /@releasekey@/ s
\a\a$(bin/mdw-conf releasekey 481334C2)
\ag
235 ## Symlink backgrounds.
236 backgrounds=$(cd bg && echo *)
237 if [ "$xstuff" ]; then
238 echo "Installing backgrounds..."
239 for b in $backgrounds; do
240 for e in enlightenment e16; do
241 dir=$HOME$sub/.$e/backgrounds
244 ln -s $here/bg/$b $t.new
252 ###--------------------------------------------------------------------------
253 ### Install useful scripts included in this package.
259 mdw-build mdw-sbuild mdw-sbuild-server
260 update-buildable-branch
274 [ "$xstuff" ] && scripts="$scripts
276 un-backslashify-selection
280 echo "Installing scripts..."
281 mkdir -p $HOME$sub/bin
282 for s in $scripts; do
284 ln -s $here/bin/$s $ft.new
292 echo "Installing hacks..."
295 ft=$HOME$sub/bin/hacks/$d
297 ln -s $here/hacks/$h $ft/$h.new
303 ###--------------------------------------------------------------------------
304 ### Set up the Emacs config.
306 $echon "Finding a suitable emacs:$echoc"
308 for i in emacs24 emacs23 emacs22 emacs21 emacs; do
309 if type -p >/dev/null $i; then
314 if [ $emacs = no ]; then
321 echo "Installing Emacs packages..."
326 git git-blame vc-git stgit
329 for elib in $emacspkg; do
330 $echon " $elib:$echoc"
331 if $false $emacs >/dev/null 2>&1 --no-site-file --batch --eval '
333 (setq load-path (nconc load-path (list "~/lib/emacs")))
334 (kill-emacs (condition-case nil
335 (progn (load-library "'"$elib"'") 0)
337 echo " already installed."
339 if [ -f el/$elib.el ]; then
340 cp el/$elib.el $HOME$sub/lib/emacs/$elib.el
342 $echon " downloading$echoc"
343 $GETURL $HOME$sub/lib/emacs/$elib.el $REPO/$elib.el
345 $echon " compiling$echoc"
346 (cd $HOME$sub/lib/emacs;
347 $emacs >/dev/null 2>&1 --no-site-file --batch \
348 --eval '(byte-compile-file "'"$elib.el"'")')
354 $echon "Setting up Emacs configuration:$echoc"
355 $echon " linking$echoc"
356 for f in dot-emacs.el Makefile; do
357 set -- $(echo $link | tr : ' ')
358 ln -s $here/el/$f $HOME$sub/lib/emacs/$f.new
359 mv $HOME$sub/lib/emacs/$f.new $HOME$sub/lib/emacs/$f
361 $echon " compiling$echoc"
362 { cd $HOME$sub/lib/emacs && make EMACS=$emacs; } >/dev/null 2>&1
365 ###----- That's all, folks --------------------------------------------------