file uu-decode.pbm was added on branch t-gnus-6_17 on 2005-05-01 23:25:48 +0000
[elisp/gnus.git-] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;;      Katsumi Yamaoka <yamaoka@jpl.org>
7 ;; Version: 4.19
8 ;; Keywords: news, path
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 ;; Set coding priority of Shift-JIS to the bottom.
32 (if (featurep 'xemacs)
33     (defalias 'set-coding-priority 'ignore)
34   (defalias 'coding-priority-list 'ignore)
35   (defalias 'set-coding-priority-list 'ignore))
36 (cond ((and (featurep 'xemacs) (featurep 'mule))
37        (if (memq 'shift-jis (coding-priority-list))
38            (set-coding-priority-list
39             (append (delq 'shift-jis (coding-priority-list)) '(shift-jis)))))
40       ((featurep 'mule)
41        (if (memq 'coding-category-sjis coding-category-list)
42            (set-coding-priority
43             (append (delq 'coding-category-sjis
44                           (copy-sequence coding-category-list))
45                     '(coding-category-sjis))))))
46
47 (defalias 'facep 'ignore)
48
49 (require 'cl)
50
51 (unless (and
52          ;; `dolist' might not be available because of ``-no-autoloads''.
53          (fboundp 'dolist)
54          ;; It may have been defined in egg.el.
55          (dolist (var nil t)))
56   (load "cl-macs" nil t))
57
58 (defvar srcdir (or (getenv "srcdir") "."))
59 (defvar loaddir (and load-file-name (file-name-directory load-file-name)))
60
61 (defvar dgnushack-w3-directory (let ((w3dir (getenv "W3DIR")))
62                                  (unless (zerop (length w3dir))
63                                    (file-name-as-directory w3dir))))
64
65 (let ((urldir (getenv "URLDIR")))
66   (unless (zerop (length urldir))
67     (setq urldir (file-name-as-directory urldir))
68     (push (file-name-as-directory urldir) load-path))
69   (when (and dgnushack-w3-directory
70              (not (string-equal urldir dgnushack-w3-directory)))
71     (push dgnushack-w3-directory load-path)))
72
73 ;; If we are building w3 in a different directory than the source
74 ;; directory, we must read *.el from source directory and write *.elc
75 ;; into the building directory.  For that, we define this function
76 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
77 (defun byte-compile-dest-file (filename)
78   "Convert an Emacs Lisp source file name to a compiled file name.
79  In addition, remove directory name part from FILENAME."
80   (setq filename (byte-compiler-base-file-name filename))
81   (setq filename (file-name-sans-versions filename))
82   (setq filename (file-name-nondirectory filename))
83   (if (memq system-type '(win32 w32 mswindows windows-nt))
84       (setq filename (downcase filename)))
85   (cond ((eq system-type 'vax-vms)
86          (concat (substring filename 0 (string-match ";" filename)) "c"))
87         ((string-match emacs-lisp-file-regexp filename)
88          (concat (substring filename 0 (match-beginning 0)) ".elc"))
89         (t (concat filename ".elc"))))
90
91 (require 'bytecomp)
92 ;; To avoid having defsubsts and inlines happen.
93 ;(if (featurep 'xemacs)
94 ;    (require 'byte-optimize)
95 ;  (require 'byte-opt))
96 ;(defun byte-optimize-inline-handler (form)
97 ;  "byte-optimize-handler for the `inline' special-form."
98 ;  (cons 'progn (cdr form)))
99 ;(defalias 'byte-compile-file-form-defsubst 'byte-compile-file-form-defun)
100
101 (when (and (not (featurep 'xemacs))
102            (= emacs-major-version 21)
103            (= emacs-minor-version 3)
104            (condition-case code
105                (let ((byte-compile-error-on-warn t))
106                  (byte-optimize-form (quote (pop x)) t)
107                  nil)
108              (error (string-match "called for effect"
109                                   (error-message-string code)))))
110   (defadvice byte-optimize-form-code-walker (around silence-warn-for-pop
111                                                     (form for-effect)
112                                                     activate)
113     "Silence the warning \"...called for effect\" for the `pop' form.
114 It is effective only when the `pop' macro is defined by cl.el rather
115 than subr.el."
116     (let (tmp)
117       (if (and (eq (car-safe form) 'car)
118                for-effect
119                (setq tmp (get 'car 'side-effect-free))
120                (not byte-compile-delete-errors)
121                (not (eq tmp 'error-free))
122                (eq (car-safe (cadr form)) 'prog1)
123                (let ((var (cadr (cadr form)))
124                      (last (nth 2 (cadr form))))
125                  (and (symbolp var)
126                       (null (nthcdr 3 (cadr form)))
127                       (eq (car-safe last) 'setq)
128                       (eq (cadr last) var)
129                       (eq (car-safe (nth 2 last)) 'cdr)
130                       (eq (cadr (nth 2 last)) var))))
131           (progn
132             (put 'car 'side-effect-free 'error-free)
133             (unwind-protect
134                 ad-do-it
135               (put 'car 'side-effect-free tmp)))
136         ad-do-it))))
137
138 (when (and (not (featurep 'xemacs))
139            (byte-optimize-form '(and (> 0 1) foo) t))
140   (defadvice byte-optimize-form-code-walker
141     (around fix-bug-in-and/or-forms (form for-effect) activate)
142     "Optimize the rest of the and/or forms.
143 It has been fixed in XEmacs before releasing 21.4 and also has been
144 fixed in Emacs after 21.3."
145     (if (and for-effect (memq (car-safe form) '(and or)))
146         (let ((fn (car form))
147               (backwards (reverse (cdr form))))
148           (while (and backwards
149                       (null (setcar backwards
150                                     (byte-optimize-form (car backwards) t))))
151             (setq backwards (cdr backwards)))
152           (if (and (cdr form) (null backwards))
153               (byte-compile-log
154                "  all subforms of %s called for effect; deleted" form))
155           (when backwards
156             (setcdr backwards
157                     (mapcar 'byte-optimize-form (cdr backwards))))
158           (setq ad-return-value (cons fn (nreverse backwards))))
159       ad-do-it)))
160
161 ;; Add `early-package-load-path' to `load-path' for XEmacs.  Those paths
162 ;; won't appear in `load-path' when XEmacs starts with the `-no-autoloads'
163 ;; option because of a bug. :<
164 (when (and (featurep 'xemacs)
165            (string-match "--package-path=\\([^ ]+\\)"
166                          system-configuration-options))
167   (let ((paths
168          (apply 'nconc
169                 (mapcar
170                  (lambda (path)
171                    (when (file-directory-p
172                           (setq path (expand-file-name "lisp" path)))
173                      (directory-files path t)))
174                  (split-string (match-string 1 system-configuration-options)
175                                "::"))))
176         path adds)
177     (while paths
178       (setq path (car paths)
179             paths (cdr paths))
180       (when (and path
181                  (not (or (string-match "/\\.\\.?\\'" path)
182                           (member (file-name-as-directory path) load-path)
183                           (member path load-path)))
184                  (file-directory-p path))
185         (push (file-name-as-directory path) adds)))
186     (setq load-path (nconc (nreverse adds) load-path))))
187
188 (if (file-exists-p (expand-file-name "dgnuspath.el" srcdir))
189     (load (expand-file-name "dgnuspath.el" srcdir) nil nil t)
190   (message "  ** There's no dgnuspath.el file"))
191
192 (condition-case err
193     (load "~/.lpath.el" t nil t)
194   (error (message "Error in \"~/.lpath.el\" file: %s" err)))
195
196 ;; Don't load path-util until `char-after' and `char-before' have been
197 ;; optimized because it requires `poe' and then modify the functions.
198
199 ;; If the APEL modules are installed under the non-standard directory,
200 ;; for example "/var/home/john/lisp/apel-VERSION/", you should add that
201 ;; name using the configure option "--with-addpath=".
202 ;; And also the directory where the EMU modules are installed, for
203 ;; example "/usr/local/share/mule/19.34/site-lisp/", it should be
204 ;; included in the standard `load-path' or added by the configure
205 ;; option "--with-addpath=".
206 (let ((path (or (locate-library "path-util")
207                 (locate-library "apel/path-util")));; backward compat.
208       parent lpath)
209   (if path
210       (progn
211         (when (string-match "/$" (setq path (file-name-directory path)))
212           (setq path (substring path 0 (match-beginning 0))))
213         ;; path == "/var/home/john/lisp/apel-VERSION"
214         (when (string-match "/$" (setq parent (file-name-directory path)))
215           (setq parent (substring path 0 (match-beginning 0))))
216         ;; parent == "/var/home/john/lisp"
217         (if (setq lpath (or (member path load-path)
218                             (member (file-name-as-directory path) load-path)))
219             (unless (or (member parent load-path)
220                         (member (file-name-as-directory parent) load-path))
221               (push parent (cdr lpath)))
222           (push path load-path)
223           (unless (or (member parent load-path)
224                       (member (file-name-as-directory parent) load-path))
225             (push parent (cdr load-path))))
226         (require 'advice)
227         (require 'path-util))
228     (error "
229 APEL modules are not found in %s.
230 Try to re-configure with --with-addpath=APEL_PATH and run make again.
231 "
232            load-path)))
233
234 (unless (locate-library "mel")
235   (add-path "flim"))
236 (unless (module-installed-p 'mel)
237   ;; FLIM 1.14 may have installed in two "flim" subdirectories.
238   (push (expand-file-name "flim"
239                           (file-name-directory (get-latest-path "^apel$" t)))
240         load-path)
241   (unless (module-installed-p 'mel)
242     (error "
243 FLIM modules does not found in %s.
244 Try to re-configure with --with-addpath=FLIM_PATH and run make again.
245 "
246            load-path)))
247 (add-path "semi")
248
249 (when (and (featurep 'xemacs)
250            (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
251              (modify-syntax-entry ?= " " table)
252              (with-temp-buffer
253                (with-syntax-table table
254                  (insert "foo=bar")
255                  (goto-char (point-min))
256                  (forward-sexp 1)
257                  (eolp)))))
258   ;; The original `with-syntax-table' uses `copy-syntax-table' which
259   ;; doesn't seem to copy modified syntax entries in XEmacs 21.5.
260   (defmacro with-syntax-table (syntab &rest body)
261     "Evaluate BODY with the SYNTAB as the current syntax table."
262     `(let ((stab (syntax-table)))
263        (unwind-protect
264            (progn
265              ;;(set-syntax-table (copy-syntax-table ,syntab))
266              (set-syntax-table ,syntab)
267              ,@body)
268          (set-syntax-table stab)))))
269
270 (push srcdir load-path)
271 (push loaddir load-path)
272 (load (expand-file-name "lpath.el" loaddir) nil t)
273
274 (require 'custom)
275
276 ;; Bind functions defined by `defun-maybe'.
277 (put 'defun-maybe 'byte-hunk-handler 'byte-compile-file-form-defun-maybe)
278 (defun byte-compile-file-form-defun-maybe (form)
279   (if (and (not (fboundp (nth 1 form)))
280            (memq 'unresolved byte-compile-warnings))
281       (setq byte-compile-function-environment
282             (cons (cons (nth 1 form)
283                         (cons 'lambda (cdr (cdr form))))
284                   byte-compile-function-environment)))
285   form)
286
287 ;; Unknown variables and functions.
288 (unless (featurep 'xemacs)
289   (defalias 'Custom-make-dependencies 'ignore)
290   (defalias 'update-autoloads-from-directory 'ignore))
291
292 (defalias 'device-sound-enabled-p 'ignore)
293 (defalias 'play-sound-file 'ignore)
294 (defalias 'nndb-request-article 'ignore)
295 (defalias 'efs-re-read-dir 'ignore)
296 (defalias 'ange-ftp-re-read-dir 'ignore)
297 (defalias 'define-mail-user-agent 'ignore)
298
299 (eval-and-compile
300   (when (featurep 'xemacs)
301     (unless (fboundp 'defadvice)
302       (autoload 'defadvice "advice" nil nil 'macro))
303     (autoload 'Info-directory "info" nil t)
304     (autoload 'Info-menu "info" nil t)
305     (autoload 'annotations-at "annotations")
306     (autoload 'apropos "apropos" nil t)
307     (autoload 'apropos-command "apropos" nil t)
308     (autoload 'bbdb-complete-name "bbdb-com" nil t)
309     (autoload 'browse-url "browse-url" nil t)
310     (autoload 'c-mode "cc-mode" nil t)
311     (autoload 'customize-apropos "cus-edit" nil t)
312     (autoload 'customize-save-variable "cus-edit" nil t)
313     (autoload 'customize-variable "cus-edit" nil t)
314     (autoload 'delete-annotation "annotations")
315     (autoload 'dolist "cl-macs" nil nil 'macro)
316     (autoload 'enriched-decode "enriched")
317     (autoload 'executable-find "executable")
318     (autoload 'font-lock-fontify-buffer "font-lock" nil t)
319     (autoload 'info "info" nil t)
320     (autoload 'make-annotation "annotations")
321     (autoload 'make-display-table "disp-table")
322     (autoload 'pp "pp")
323     (autoload 'ps-despool "ps-print" nil t)
324     (autoload 'ps-spool-buffer "ps-print" nil t)
325     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
326     (autoload 'read-passwd "passwd")
327     (autoload 'regexp-opt "regexp-opt")
328     (autoload 'reporter-submit-bug-report "reporter")
329     (if (emacs-version>= 21 5)
330         (autoload 'setenv "process" nil t)
331       (autoload 'setenv "env" nil t))
332     (autoload 'sgml-mode "psgml" nil t)
333     (autoload 'smtpmail-send-it "smtpmail")
334     (autoload 'sort-numeric-fields "sort" nil t)
335     (autoload 'sort-subr "sort")
336     (autoload 'trace-function-background "trace" nil t)
337     (autoload 'w3-do-setup "w3")
338     (autoload 'w3-prepare-buffer "w3-display")
339     (autoload 'w3-region "w3-display" nil t)
340     (defalias 'frame-char-height 'frame-height)
341     (defalias 'frame-char-width 'frame-width)
342     (defalias 'frame-parameter 'frame-property)
343     (defalias 'make-overlay 'ignore)
344     (defalias 'overlay-end 'ignore)
345     (defalias 'overlay-get 'ignore)
346     (defalias 'overlay-put 'ignore)
347     (defalias 'overlay-start 'ignore)
348     (defalias 'overlays-in 'ignore)
349     (defalias 'replace-dehighlight 'ignore)
350     (defalias 'replace-highlight 'ignore)
351     (defalias 'run-with-idle-timer 'ignore)
352     (defalias 'w3-coding-system-for-mime-charset 'ignore)))
353
354 ;; T-gnus stuff.
355 (eval-and-compile
356   (when (featurep 'xemacs)
357     (autoload 'c-mode "cc-mode" nil t)
358     (autoload 'font-lock-mode "font-lock" nil t)
359     (autoload 'read-kbd-macro "edmacro" nil t)
360     (autoload 'turn-on-font-lock "font-lock" nil t))
361   (autoload 'nnheader-detect-coding-region "nnheader")
362   (autoload 'std11-extract-addresses-components "nnheader")
363   (autoload 'std11-fold-region "nnheader")
364   (autoload 'std11-narrow-to-field "nnheader")
365   (autoload 'std11-unfold-region "nnheader"))
366
367 (defconst dgnushack-unexporting-files
368   (append '("dgnushack.el" "dgnuspath.el" "dgnuskwds.el" "lpath.el"
369             "legacy-gnus-agent.el")
370           (unless (or (condition-case code
371                           (require 'w3-parse)
372                         (error
373                          (message "No w3: %s%s, retrying..."
374                                   (error-message-string code)
375                                   (if (setq code (locate-library "w3-parse"))
376                                       (concat " (" code ")")
377                                     ""))
378                          nil))
379                       ;; Maybe mis-configured Makefile is used (e.g.
380                       ;; configured for FSFmacs but XEmacs is running).
381                       (let ((lp (delete dgnushack-w3-directory
382                                         (copy-sequence load-path))))
383                         (if (let ((load-path lp))
384                               (condition-case nil
385                                   (require 'w3-parse)
386                                 (error nil)))
387                             ;; If success, fix `load-path' for compiling.
388                             (progn
389                               (setq load-path lp)
390                               (message " => fixed; W3DIR=%s"
391                                        (file-name-directory
392                                         (locate-library "w3-parse")))
393                               t)
394                           (message " => ignored")
395                           nil)))
396             '("nnultimate.el" "webmail.el" "nnwfm.el"))
397           (condition-case code
398               (progn (require 'mh-e) nil)
399             (error
400              (message "No mh-e: %s%s (ignored)"
401                       (error-message-string code)
402                       (if (setq code (locate-library "mh-e"))
403                           (concat " (" code ")")
404                         ""))
405              '("gnus-mh.el")))
406           (condition-case code
407               (progn (require 'xml) nil)
408             (error
409              (message "No xml: %s%s (ignored)"
410                       (error-message-string code)
411                       (if (setq code (locate-library "xml"))
412                           (concat " (" code ")")
413                         ""))
414              '("nnrss.el")))
415           (condition-case code
416               (progn (require 'bbdb) nil)
417             (error
418              (message "No bbdb: %s%s (ignored)"
419                       (error-message-string code)
420                       (if (setq code (locate-library "bbdb"))
421                           (concat " (" code ")")
422                         ""))
423              '("gnus-bbdb.el")))
424           (unless (featurep 'xemacs)
425             '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el"
426               "run-at-time.el"))
427           (when (and (fboundp 'base64-decode-string)
428                      (subrp (symbol-function 'base64-decode-string)))
429             '("base64.el"))
430           (when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
431             '("md5.el"))
432           (when (featurep 'xemacs)
433             '("gnus-load.el")))
434   "Files which will not be installed.")
435
436 (defconst dgnushack-exporting-files
437   (let ((files (directory-files srcdir nil "^[^=].*\\.el$" t)))
438     (dolist (file dgnushack-unexporting-files)
439       (setq files (delete file files)))
440     (sort files 'string-lessp))
441   "Files which will be compiled and installed.")
442
443 (defun dgnushack-exporting-files ()
444   "Print name of files which will be installed."
445   (princ (mapconcat 'identity dgnushack-exporting-files " ")))
446
447 (defconst dgnushack-dont-compile-files
448   '("gnus-load.el"
449     "mm-bodies.el" "mm-decode.el" "mm-encode.el" "mm-extern.el"
450     "mm-partial.el" "mm-url.el" "mm-uu.el" "mm-view.el" "mml-sec.el"
451     "mml-smime.el" "mml.el" "mml1991.el" "mml2015.el")
452   "Files which should not be byte-compiled.")
453
454 (defun dgnushack-compile-verbosely ()
455   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
456 patches to gnus, you should consider modifying make.bat to call
457 dgnushack-compile-verbosely.  All other users should continue to use
458 dgnushack-compile."
459   (dgnushack-compile t))
460
461 (defun dgnushack-compile (&optional warn)
462   ;;(setq byte-compile-dynamic t)
463   (unless warn
464     (setq byte-compile-warnings
465           '(free-vars unresolved callargs redefine)))
466
467   ;; Show `load-path'.
468   (message "load-path=(\"%s\")"
469            (mapconcat 'identity load-path "\"\n           \""))
470
471   (dolist (file dgnushack-exporting-files)
472     (setq file (expand-file-name file srcdir))
473     (when (and (file-exists-p
474                 (setq elc (concat (file-name-nondirectory file) "c")))
475                (file-newer-than-file-p file elc))
476       (delete-file elc)))
477
478   ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
479   ;; installed.
480   (when (featurep 'xemacs)
481     (setq gnus-xmas-glyph-directory "dummy"))
482
483   (let ((files dgnushack-exporting-files)
484         ;;(byte-compile-generate-call-tree t)
485         file elc)
486     (while (setq file (pop files))
487       (unless (member file dgnushack-dont-compile-files)
488         (setq file (expand-file-name file srcdir))
489         (when (or (not (file-exists-p
490                         (setq elc (concat (file-name-nondirectory file) "c"))))
491                   (file-newer-than-file-p file elc))
492           (ignore-errors
493             (byte-compile-file file)))))))
494
495 (defun dgnushack-recompile ()
496   (require 'gnus)
497   (byte-recompile-directory "." 0))
498
499 (defvar dgnushack-gnus-load-file
500   (if (featurep 'xemacs)
501       (expand-file-name "auto-autoloads.el" srcdir)
502     (expand-file-name "gnus-load.el" srcdir)))
503
504 (defvar dgnushack-cus-load-file
505   (if (featurep 'xemacs)
506       (expand-file-name "custom-load.el" srcdir)
507     (expand-file-name "cus-load.el" srcdir)))
508
509 (defun dgnushack-make-cus-load ()
510   (load "cus-dep")
511   (let ((cusload-base-file dgnushack-cus-load-file))
512     (if (fboundp 'custom-make-dependencies)
513         (custom-make-dependencies)
514       (Custom-make-dependencies))
515     (when (featurep 'xemacs)
516       (message "Compiling %s..." dgnushack-cus-load-file)
517       (byte-compile-file dgnushack-cus-load-file))))
518
519 (defun dgnushack-make-auto-load ()
520   (require 'autoload)
521   (unless (make-autoload '(define-derived-mode child parent name
522                             "docstring" body)
523                          "file")
524     (defadvice make-autoload (around handle-define-derived-mode activate)
525       "Handle `define-derived-mode'."
526       (if (eq (car-safe (ad-get-arg 0)) 'define-derived-mode)
527           (setq ad-return-value
528                 (list 'autoload
529                       (list 'quote (nth 1 (ad-get-arg 0)))
530                       (ad-get-arg 1)
531                       (nth 4 (ad-get-arg 0))
532                       t nil))
533         ad-do-it))
534     (put 'define-derived-mode 'doc-string-elt 3))
535   (let ((generated-autoload-file dgnushack-gnus-load-file)
536         (make-backup-files nil)
537         (autoload-package-name "gnus"))
538     (if (featurep 'xemacs)
539         (if (file-exists-p generated-autoload-file)
540             (delete-file generated-autoload-file))
541       (with-temp-file generated-autoload-file
542         (insert ?\014)))
543     (if (featurep 'xemacs)
544         (let ((si:message (symbol-function 'message)))
545           (defun message (fmt &rest args)
546             (cond ((and (string-equal "Generating autoloads for %s..." fmt)
547                         (file-exists-p (file-name-nondirectory (car args))))
548                    (funcall si:message
549                             fmt (file-name-nondirectory (car args))))
550                   ((string-equal "No autoloads found in %s" fmt))
551                   ((string-equal "Generating autoloads for %s...done" fmt))
552                   (t (apply si:message fmt args))))
553           (unwind-protect
554               (batch-update-autoloads)
555             (fset 'message si:message)))
556       (batch-update-autoloads))))
557
558 (defun dgnushack-make-load ()
559   (unless (featurep 'xemacs)
560     (message "Generating %s..." dgnushack-gnus-load-file)
561     (with-temp-file dgnushack-gnus-load-file
562       (insert-file-contents dgnushack-cus-load-file)
563       (delete-file dgnushack-cus-load-file)
564       (goto-char (point-min))
565       (search-forward ";;; Code:")
566       (forward-line)
567       (delete-region (point-min) (point))
568       (insert "\
569 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
570 ;;
571 ;;; Code:
572 ")
573       (goto-char (point-max))
574       (if (search-backward "custom-versions-load-alist" nil t)
575           (forward-line -1)
576         (forward-line -1)
577         (while (eq (char-after) ?\;)
578           (forward-line -1))
579         (forward-line))
580       (delete-region (point) (point-max))
581       (insert "\n")
582       ;; smiley-* are duplicated. Remove them all.
583       (let ((point (point)))
584         (insert-file-contents dgnushack-gnus-load-file)
585         (goto-char point)
586         (while (search-forward "smiley-" nil t)
587           (beginning-of-line)
588           (if (looking-at "(autoload ")
589               (delete-region (point) (progn (forward-sexp) (point)))
590             (forward-line))))
591       ;;
592       (goto-char (point-max))
593       (when (search-backward "\n(provide " nil t)
594         (forward-line -1)
595         (delete-region (point) (point-max)))
596       (insert "\
597
598 \(provide 'gnus-load)
599
600 ;;; Local Variables:
601 ;;; version-control: never
602 ;;; no-byte-compile: t
603 ;;; no-update-autoloads: t
604 ;;; End:
605 ;;; gnus-load.el ends here
606 ")
607       ))
608   (message "Compiling %s..." dgnushack-gnus-load-file)
609   (byte-compile-file dgnushack-gnus-load-file)
610   (when (featurep 'xemacs)
611     (message "Creating dummy gnus-load.el...")
612     (with-temp-file (expand-file-name "gnus-load.el")
613       (insert "\
614
615 \(provide 'gnus-load)
616
617 ;;; Local Variables:
618 ;;; version-control: never
619 ;;; no-byte-compile: t
620 ;;; no-update-autoloads: t
621 ;;; End:
622 ;;; gnus-load.el ends here"))))
623
624 \f
625 (defconst dgnushack-info-file-regexp-en
626   (let ((names '("gnus" "message" "emacs-mime"))
627         regexp name)
628     (while (setq name (pop names))
629       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
630                            (when names "\\|"))))
631     regexp)
632   "Regexp matching English info files.")
633
634 (defconst dgnushack-info-file-regexp-ja
635   (let ((names '("gnus-ja" "message-ja"))
636         regexp name)
637     (while (setq name (pop names))
638       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
639                            (when names "\\|"))))
640     regexp)
641   "Regexp matching Japanese info files.")
642
643 (defun dgnushack-remove-extra-files-in-package ()
644   "Remove extra files in the lisp directory of the XEmacs package."
645   (let ((lisp-dir (expand-file-name (concat "lisp/"
646                                             ;; GNUS_PRODUCT_NAME
647                                             (cadr command-line-args-left)
648                                             "/")
649                                     ;; PACKAGEDIR
650                                     (car command-line-args-left))))
651     (setq command-line-args-left nil)
652     (when (file-directory-p lisp-dir)
653       (let (files)
654         (dolist (file dgnushack-exporting-files)
655           (setq files (nconc files (list file (concat file "c")))))
656         (dolist (file (directory-files lisp-dir nil nil t t))
657           (unless (member file files)
658             (setq file (expand-file-name file lisp-dir))
659             (message "Removing %s..." file)
660             (condition-case nil
661                 (delete-file file)
662               (error nil))))))))
663
664 (defun dgnushack-install-package-manifest ()
665   "Install MANIFEST file as an XEmacs package."
666   (let* ((package-dir (pop command-line-args-left))
667          (product-name (pop command-line-args-left))
668          (pkginfo-dir (expand-file-name "pkginfo" package-dir))
669          (name (expand-file-name (concat "MANIFEST." product-name)
670                                  pkginfo-dir))
671          make-backup-files)
672     (unless (file-directory-p pkginfo-dir)
673       (message "Creating directory %s/..." pkginfo-dir)
674       (make-directory pkginfo-dir))
675     (message "Generating %s..." name)
676     (with-temp-file name
677       (insert "pkginfo/MANIFEST." product-name "\n")
678       (let ((lisp-dir (concat "lisp/" product-name "/"))
679             (files (sort (directory-files "." nil "\\.elc?$" t) 'string-lessp))
680             file)
681         (while (setq file (pop files))
682           (unless (member file dgnushack-unexporting-files)
683             (insert lisp-dir file "\n")))
684         (setq files
685               (sort (directory-files "../texi/" nil
686                                      (concat dgnushack-info-file-regexp-en
687                                              "\\|"
688                                              dgnushack-info-file-regexp-ja)
689                                      t)
690                     'string-lessp))
691         (while (setq file (pop files))
692           (insert "info/" file "\n"))))))
693
694 ;;; dgnushack.el ends here