Set VERSION to 2.3.92.
[elisp/wanderlust.git] / WL-MK
1 ;;; -*- Emacs-Lisp -*-
2 ;;; WL-MK for byte-compile, install, uninstall
3 ;;;
4 ;;; Original by OKUNISHI Fujikazu <fuji0924@mbox.kyoto-inet.or.jp>
5 ;;; Modified by Yuuichi Teranishi <teranisi@gohome.org>
6
7 ;;;;;;;;;;;;;;;;;;;;;   DO NOT EDIT THIS FILE   ;;;;;;;;;;;;;;;;;;;;;
8 ;;;;;;;;;;;;;;;;;;;;;     INTERNAL USE ONLY     ;;;;;;;;;;;;;;;;;;;;;
9
10 ;;; Code
11
12 (defvar WLDIR "./wl")
13 (defvar ELMODIR "./elmo")
14 (defvar DOCDIR "./doc")
15 (defvar ICONDIR "./etc/icons")
16 (defvar UTILSDIR "./utils")
17 (defvar SASLDIR "./utils/sasl/lisp")
18 (defvar WL_PREFIX "wl")
19 (defvar ELMO_PREFIX "wl")
20
21 (defvar COMPRESS-SUFFIX-LIST '("" ".gz" ".Z" ".bz2"))
22
23 (defvar wl-install-utils nil
24   "if Non-nil, install `wl-utils-modules'.")
25 (defvar wl-install-sasl nil
26   "if Non-nil, install sasl utilities.")
27
28 ;;; INFO
29 (defconst wl-ja-info "wl-ja.info")
30 (defconst wl-ja-texi "wl-ja.texi")
31 (defconst wl-en-info "wl.info")
32 (defconst wl-en-texi "wl.texi")
33
34 (defvar wl-info-lang "ja"
35   "The language of info file (\"ja\" or \"en\").")
36
37 ;; for Nemacs (dirty!)
38 (or (fboundp 'file-executable-p)
39     (fset 'file-executable-p 'file-exists-p))
40
41 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
42 \f
43 (require 'cl)
44 (defvar INFODIR nil)
45
46 (condition-case () (require 'custom) (error nil))
47 ;; for wl-vars.el
48 (unless (and (fboundp 'defgroup)
49              (fboundp 'defcustom)
50              ;; ignore broken module
51              (not (featurep 'tinycustom)))
52   (when (and (boundp 'emacs-major-version)
53              (eq emacs-major-version 19)
54              (>= emacs-minor-version 29))
55     (message "%s" "
56   Warning: You don't seem to have \"new custom\" package installed.
57            See README file of APEL package for more information.
58 "))
59   (defmacro defgroup (&rest args))
60   (defmacro defcustom (symbol value &optional doc &rest args)
61     (let ((doc (concat "*" (or doc ""))))
62       (` (defvar (, symbol) (, value) (, doc))))))
63
64 (load "bytecomp" nil t)
65 (unless (fboundp 'byte-compile-file-form-custom-declare-variable)
66   ;; Bind defcustom'ed variables.
67   (put 'custom-declare-variable 'byte-hunk-handler
68        'byte-compile-file-form-custom-declare-variable)
69   (defun byte-compile-file-form-custom-declare-variable (form)
70     (if (memq 'free-vars byte-compile-warnings)
71         (setq byte-compile-bound-variables
72               (cons (nth 1 (nth 1 form)) byte-compile-bound-variables)))
73     form))
74
75 (setq byte-compile-warnings '(free-vars unresolved callargs redefine))
76
77 ;; v18, v19
78 (if (or (boundp 'MULE)
79         (fboundp 'nemacs-version))
80     (setq max-lisp-eval-depth 400))
81
82 ;; FIXME: it is currently needed to byte-compile with Emacs 21.
83 (setq recursive-load-depth-limit nil)
84
85 (condition-case () (require 'easymenu) (error nil))
86
87 (defvar config-wl-package-done nil)
88
89 (defun config-wl-package-subr ()
90   (unless config-wl-package-done
91   (setq config-wl-package-done t)
92   (setq load-path (cons (expand-file-name ".") load-path))
93   (setq load-path (cons (expand-file-name WLDIR)
94                         (cons (expand-file-name ELMODIR) load-path)))
95   (setq wl-icon-dir (expand-file-name ICONDIR))
96 ;;; load custom file if exists.
97   (load "./WL-CFG" t nil t)
98 ;;; load-path
99   (if wl-install-utils
100       (setq load-path (cons (expand-file-name UTILSDIR) load-path)))
101   (if wl-install-sasl
102       (setq load-path (cons (expand-file-name SASLDIR) load-path)))
103   (require 'install)
104   (load "./WL-ELS")
105   (condition-case ()
106       (require 'mime-setup)
107     (error (error "No MIME module was detected. Please install SEMI or tm.")))
108   (princ (concat "\nMIME module is " (if wl-use-semi "SEMI" "tm-8") ".\n"))))
109
110 (defun config-wl-pixmap-dir (&optional packagedir)
111   "Examine pixmap directory where icon files should go."
112   (let ((pixmap-dir (car command-line-args-left)))
113     (defvar PIXMAPDIR
114       (if (string= pixmap-dir "NONE")
115           (if packagedir
116               (expand-file-name "etc/wl/" packagedir)
117             (if (or (featurep 'xemacs)
118                     (and (boundp 'emacs-major-version)
119                          (>= emacs-major-version 21)))
120                 (expand-file-name "wl/icons/" data-directory)))
121         pixmap-dir)))
122   (if PIXMAPDIR
123       (princ (format "PIXMAPDIR is %s\n" PIXMAPDIR)))
124   (setq command-line-args-left (cdr command-line-args-left)))
125
126 (defun config-wl-package ()
127   (config-wl-package-subr)
128   ;; LISPDIR check.
129   (let ((elispdir (car command-line-args-left)))
130     (if (string= elispdir "NONE")
131         (defvar LISPDIR (install-detect-elisp-directory))
132       (defvar LISPDIR elispdir)))
133   (princ (format "LISPDIR is %s\n" LISPDIR))
134   (setq command-line-args-left (cdr command-line-args-left))
135   ;; PIXMAPDIR check.
136   (config-wl-pixmap-dir)
137   (princ "\n"))
138
139
140 (defun wl-scan-source (path)
141   (let (ret)
142     (mapcar
143      '(lambda (x)
144         (mapcar '(lambda (y)
145                    (setq ret (append (list y (concat y "c")) ret)))
146                 (directory-files x nil "\\(.+\\)\\.el$" t)))
147      path)
148     ret))
149
150
151 (defun wl-uninstall (objs path)
152   ;(message (mapconcat 'identity objs " "))
153   (mapcar
154    '(lambda (x)
155       (let ((filename (expand-file-name x path)))
156         (if (and (file-exists-p filename)
157                  (file-writable-p filename))
158             (progn
159               (princ (format "%s was uninstalled.\n" filename))
160               (delete-file filename)))))
161    objs))
162
163
164 (defun compile-wl-package ()
165   ;; For nemacs byte compiler's strange behavior(?).
166   (config-wl-package)
167   (if (fboundp 'nemacs-version)
168       (load (expand-file-name "wl.el" WLDIR)))
169   (mapcar
170    '(lambda (x)
171       (compile-elisp-modules (cdr x) (car x)))
172    modules-alist))
173
174 (defun install-wl-icons ()
175   (if (not (file-directory-p PIXMAPDIR))
176       (make-directory PIXMAPDIR t))
177   (let* ((case-fold-search t)
178          (icons (directory-files ICONDIR t "\\.x[bp]m$"))
179          icon dest)
180     (while icons
181       (setq icon (car icons)
182             icons (cdr icons)
183             dest (expand-file-name (file-name-nondirectory icon) PIXMAPDIR))
184       (princ (format "%s->%s\n" icon dest))
185       (copy-file icon dest t))))
186
187 (defun install-wl-package ()
188   (compile-wl-package)
189   (let ((wl-install-dir (expand-file-name WL_PREFIX LISPDIR))
190         (elmo-install-dir (expand-file-name ELMO_PREFIX LISPDIR)))
191     (mapcar
192      '(lambda (x)
193         (install-elisp-modules (cdr x) (car x)
194                                (if (string= (car x) ELMODIR)
195                                    elmo-install-dir
196                                  wl-install-dir)))
197      modules-alist))
198   (if PIXMAPDIR
199       (install-wl-icons)))
200
201
202 (defun uninstall-wl-package ()
203   (config-wl-package)
204   (let ((wl-install-dir (expand-file-name WL_PREFIX
205                                           LISPDIR))
206         (elmo-install-dir (expand-file-name ELMO_PREFIX
207                                             LISPDIR)))
208     (wl-uninstall (wl-scan-source (list WLDIR UTILSDIR SASLDIR))
209                   wl-install-dir)
210     (wl-uninstall (wl-scan-source (list ELMODIR))
211                   elmo-install-dir))
212   (if PIXMAPDIR
213       (let* ((case-fold-search t)
214              (icons (directory-files PIXMAPDIR t "\\.x[bp]m$"))
215              icon)
216         (while icons
217           (setq icon (car icons)
218                 icons (cdr icons))
219           (if (and (file-exists-p icon)
220                    (file-writable-p icon))
221               (progn
222                 (princ (format "%s was uninstalled.\n" icon))
223                 (delete-file icon)))))))
224
225
226 (defun config-wl-package-xmas ()
227   (if (not (featurep 'xemacs))
228       (error "This directive is only for XEmacs."))
229   (config-wl-package-subr)
230   ;; PACKAGEDIR check.
231   (let (package-dir)
232     (and (setq package-dir (car command-line-args-left))
233          (if (string= "NONE" package-dir)
234              (defvar PACKAGEDIR
235                (if (boundp 'early-packages)
236                    (let ((dirs (append (if early-package-load-path
237                                            early-packages)
238                                        (if late-package-load-path
239                                            late-packages)
240                                        (if last-package-load-path
241                                            last-packages)))
242                          dir)
243                      (while (not (file-exists-p
244                                   (setq dir (car dirs))))
245                        (setq dirs (cdr dirs)))
246                      dir)))
247            (defvar PACKAGEDIR package-dir)))
248     (princ (format "PACKAGEDIR is %s\n" PACKAGEDIR))
249     (setq command-line-args-left (cdr command-line-args-left)))
250   ;; PIXMAPDIR check.
251   (config-wl-pixmap-dir PACKAGEDIR)
252   (princ "\n"))
253
254 ;; from SEMI-MK
255 (defun compile-wl-package-xmas ()
256   (config-wl-package-xmas)
257   (setq autoload-package-name "wl")
258   (add-to-list 'command-line-args-left WLDIR)
259   (batch-update-directory)
260   (add-to-list 'command-line-args-left WLDIR)
261   (Custom-make-dependencies)
262   ;; WL-AUTOLOAD-MODULES
263   (compile-elisp-modules WL-AUTOLOAD-MODULES WLDIR)
264   (mapcar
265    '(lambda (x)
266       (compile-elisp-modules (cdr x) (car x)))
267    modules-alist))
268
269 (defun install-wl-package-xmas ()
270   (compile-wl-package-xmas)
271   (let ((LISPDIR (expand-file-name "wl"
272                                     (expand-file-name "lisp"
273                                                       PACKAGEDIR)))
274         (DATADIR  (expand-file-name "wl"
275                                     (expand-file-name "etc"
276                                                       PACKAGEDIR)))
277         (INFODIR  (expand-file-name "info" PACKAGEDIR)))
278     (or (file-exists-p DATADIR)
279         (make-directory DATADIR t))
280     (or (file-exists-p INFODIR)
281         (make-directory INFODIR t))
282     ;; copy xpm files
283     (install-wl-icons)
284
285     (mapcar '(lambda (x)
286              (install-elisp-modules (cdr x) (car x) LISPDIR))
287                   modules-alist)
288     ;; WL-AUTOLOAD-MODULES
289     (install-elisp-modules WL-AUTOLOAD-MODULES WLDIR LISPDIR)
290     ;;
291     (wl-texinfo-format)
292     (wl-texinfo-install)))
293
294 \f
295 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
296 ;;; Texinfo stuff
297
298 (defun wl-texinfo-format-file (lang)
299   (let ((infofile (symbol-value (intern (format "wl-%s-info" lang))))
300         (texifile (symbol-value (intern (format "wl-%s-texi" lang)))))
301     (require 'wl-vars) ;; for 'wl-cs-local
302     (or (file-newer-than-file-p (expand-file-name infofile DOCDIR)
303                                 (expand-file-name texifile DOCDIR))
304         (let (obuf beg)
305           ;; Support old texinfmt.el
306           (require 'ptexinfmt (expand-file-name "ptexinfmt.el" UTILSDIR))
307           (find-file (expand-file-name texifile DOCDIR))
308           (setq obuf (current-buffer))
309           ;; We can't know file names if splitted.
310           (texinfo-format-buffer t)
311           ;; Emacs20.2's default is 'raw-text-unix.
312           (and (fboundp 'set-buffer-file-coding-system)
313                (set-buffer-file-coding-system wl-cs-local))
314           (save-buffer)
315           (kill-buffer (current-buffer)) ;; info
316           (kill-buffer obuf)) ;; texi
317         )))
318
319 (defun wl-texinfo-format ()
320   (unless INFODIR
321     (setq INFODIR (wl-detect-info-directory)))
322   (cond ((listp wl-info-lang)
323          (mapcar 'wl-texinfo-format-file wl-info-lang))
324         ((stringp wl-info-lang)
325          (wl-texinfo-format-file wl-info-lang))))
326
327 (defun wl-texinfo-install-file (lang)
328   (let ((infofile (symbol-value (intern (format "wl-%s-info" lang)))))
329     (install-file infofile DOCDIR INFODIR)))
330
331 (defun wl-texinfo-install ()
332   (cond ((listp wl-info-lang)
333          (mapcar 'wl-texinfo-install-file wl-info-lang))
334         ((stringp wl-info-lang)
335          (wl-texinfo-install-file wl-info-lang))))
336
337 (defun wl-primary-info-file ()
338   "Get primary info file (for wl-detect-info-directory)."
339   (cond
340    ((listp wl-info-lang)
341     (let ((wl-info-lang (car wl-info-lang)))
342       (wl-primary-info-file)))
343    ((stringp wl-info-lang)
344     (symbol-value (intern (format "wl-%s-info" wl-info-lang))))))
345
346 (defun wl-detect-info-directory ()
347   (config-wl-package-subr)
348   (if (fboundp 'nemacs-version)
349       (error "Cannot format info on Nemacs. Please use another formatter."))
350   ;; INFODIR check.
351   (require 'info)
352   (let ((infodir (car command-line-args-left))
353         (info (wl-primary-info-file))
354         previous INFODIR)
355     (setq INFODIR
356           (if (string= infodir "NONE")
357               (if (setq previous
358                         (exec-installed-p info Info-directory-list
359                                           COMPRESS-SUFFIX-LIST))
360                   ;;(progn
361                   ;;(condition-case nil (delete-file previous))
362                   (directory-file-name (file-name-directory previous));)
363                 (car Info-directory-list))
364             infodir))
365     (setq command-line-args-left (cdr command-line-args-left))
366     (princ (format "INFODIR is %s\n\n" INFODIR))
367     INFODIR))
368
369 (defun install-wl-info ()
370   (wl-texinfo-format)
371   (wl-texinfo-install))
372
373 \f
374 ;;; ToDo
375 ;;; * MORE refine code (^_^;
376
377 ;;; End