`(("SYS:SRC;**;*.*.*" ,(#2# "src/**/*.*"))
("SYS:CONTRIB;**;*.*.*" ,(#2# "contrib/**/*.*"))))))
+#+sbcl (require :sb-posix)
+#+(and unix (or sbcl clisp cmu))
+(let ((#1=#:home (pathname (concatenate 'string
+ (or #+sbcl (sb-posix:getenv "HOME")
+ #+clisp (ext:getenv "HOME")
+ #+cmu (unix:unix-getenv "HOME")
+ "/home/mdw")
+ "/"))))
+ (setf (logical-pathname-translations "HOME")
+ `(("HOME:**;*.*.*" ,(merge-pathnames "**/*.*" #1#)))))
+
;; Various fixings.
#+clisp (setf custom:*parse-namestring-ansi* t)