mdw-conf: Separate out config lookups into its own script.
[profile] / setup
diff --git a/setup b/setup
index 1d30774..25e9dd3 100755 (executable)
--- a/setup
+++ b/setup
@@ -68,9 +68,7 @@ fi
 echo "Installing useful scripts..."
 
 scripts="
-  lesspipe.sh start-ssh-agent svnwrap movemail-hack"
-[ "$xstuff" ] && scripts="$scripts
-  xrun"
+  lesspipe.sh start-ssh-agent svnwrap"
 for script in $scripts; do
   $echon "  $script:$echoc"
   found=
@@ -95,12 +93,11 @@ echo "      all done."
 ### Install some more complicated programs
 echo "Installing packages..."
 systems="
-  mLib:2.0.3:mLib-config
+  mlib:2.0.4:crc-mktab
   chkpath:1.1.0:tmpdir
 "
 [ "$xstuff" ] && systems="$systems
-  mgLib:1.1.0:mgLib-config
-  xtoys:1.3.0:xscsize
+  xtoys:1.4.0:xatom
 "
 for system in $systems; do
   set -- $(echo $system | tr : ' ')
@@ -147,6 +144,8 @@ dotfiles="
   vimrc mg
   mailrc signature
   gitconfig cgrc tigrc
+  gdbinit
+  guile
   lisp-init.lisp:.cmucl-init.lisp
     lisp-init.lisp:.sbclrc
     lisp-init.lisp:.clisprc.lisp
@@ -157,7 +156,10 @@ dotfiles="
   putty-defaults:.putty/sessions/Default%20Settings
   e-keybindings.cfg:.enlightenment/keybindings.cfg
   evnc-keybindings.cfg:.enlightenment-vnc/keybindings.cfg
-  jue-peek.jpg:.enlightenment/backgrounds/jue-peek.jpg"
+  e16-bindings:.e16/bindings.cfg
+  e16-config:.e16/e_config--1.0.cfg
+  jue-peek.jpg:.enlightenment/backgrounds/jue-peek.jpg
+  jue-peek.jpg:.e16/backgrounds/jue-peek.jpg"
 echo "Installing dotfiles..."
 for d in $dotfiles; do
   target=.$d
@@ -175,7 +177,13 @@ echo "     all done."
 
 ### Install useful scripts included in this package
 scripts="
-  mdw-editor"
+  mdw-editor
+  mdw-conf
+  movemail-hack
+  emerge-hack"
+[ "$xstuff" ] && scripts="$scripts
+  xrun
+  xshutdown"
 echo "Installing scripts..."
 mkdir -p $HOME$sub/bin
 for s in $scripts; do
@@ -189,7 +197,7 @@ echo "      all done."
 ### Set up the Emacs config
 $echon "Finding a suitable emacs:$echoc"
 emacs=no
-for i in emacs21 emacs; do
+for i in emacs22 emacs21 emacs; do
   if type -p >/dev/null $i; then
     emacs=$i
     break