Synch to No Gnus 200504221124.
[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 ;; 2004, 2005 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 `configure-package-path' to `load-path' for XEmacs.  Those paths
162 ;; won't appear in `load-path' when XEmacs starts with the `-no-autoloads'
163 ;; option or the `-vanilla' option because of a bug. :<
164 (when (and (featurep 'xemacs)
165            (boundp 'configure-package-path)
166            (listp configure-package-path))
167   (let ((paths
168          (apply 'nconc
169                 (mapcar
170                  (lambda (path)
171                    (when (and (stringp path)
172                               (not (string-equal path ""))
173                               (file-directory-p
174                                (setq path (expand-file-name "lisp" path))))
175                      (directory-files path t)))
176                  configure-package-path)))
177         path adds)
178     (while paths
179       (setq path (car paths)
180             paths (cdr paths))
181       (when (and path
182                  (not (or (string-match "/\\.\\.?\\'" path)
183                           (member (file-name-as-directory path) load-path)
184                           (member path load-path)))
185                  (file-directory-p path))
186         (push (file-name-as-directory path) adds)))
187     (setq load-path (nconc (nreverse adds) load-path))))
188
189 (if (file-exists-p (expand-file-name "dgnuspath.el" srcdir))
190     (load (expand-file-name "dgnuspath.el" srcdir) nil nil t))
191
192 (condition-case err
193     (load "~/.lpath.el" t nil t)
194   (error (message "Error in \"~/.lpath.el\" file: %s" err)))
195
196 (when (featurep 'xemacs)
197   (condition-case nil
198       (require 'timer-funcs)
199     (error "
200 You should upgrade your XEmacs packages, especially xemacs-base.\n"))
201
202   ;; The reason that to load `advice' is necessary is:
203   ;; 1. `path-util' loads poe.elc.
204   ;; 2. poe.elc requires the `ad-add-advice' function which is expanded
205   ;;    from `defadvice'.
206   ;; 3. XEmacs is running with the -no-autoloads option.
207   (require 'advice))
208
209 ;; Don't load path-util until `char-after' and `char-before' have been
210 ;; optimized because it requires `poe' and then modify the functions.
211 (condition-case nil
212     (require 'path-util)
213   (error "\nIn %s,
214 APEL was not found or an error occurred.  You will need to run the
215 configure script again adding the --with-addpath=APEL_PATH option.\n"
216          load-path))
217
218 (unless (locate-library "mel")
219   (add-path "flim"))
220 (unless (module-installed-p 'mel)
221   ;; FLIM 1.14 may have installed in two "flim" subdirectories.
222   (push (expand-file-name "flim"
223                           (file-name-directory (get-latest-path "^apel$" t)))
224         load-path)
225   (unless (module-installed-p 'mel)
226     (error "In %s,
227 FLIM was not found.  You will need to run the configure script again
228 adding the --with-addpath=FLIM_PATH option.\n"
229            load-path)))
230 (add-path "semi")
231
232 (when (and (featurep 'xemacs)
233            (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
234              (modify-syntax-entry ?= " " table)
235              (with-temp-buffer
236                (with-syntax-table table
237                  (insert "foo=bar")
238                  (goto-char (point-min))
239                  (forward-sexp 1)
240                  (eolp)))))
241   ;; The original `with-syntax-table' uses `copy-syntax-table' which
242   ;; doesn't seem to copy modified syntax entries in XEmacs 21.5.
243   (defmacro with-syntax-table (syntab &rest body)
244     "Evaluate BODY with the SYNTAB as the current syntax table."
245     `(let ((stab (syntax-table)))
246        (unwind-protect
247            (progn
248              ;;(set-syntax-table (copy-syntax-table ,syntab))
249              (set-syntax-table ,syntab)
250              ,@body)
251          (set-syntax-table stab)))))
252
253 (push srcdir load-path)
254 (push loaddir load-path)
255 (load (expand-file-name "lpath.el" loaddir) nil t)
256
257 (require 'custom)
258
259 ;; Bind functions defined by `defun-maybe'.
260 (put 'defun-maybe 'byte-hunk-handler 'byte-compile-file-form-defun-maybe)
261 (defun byte-compile-file-form-defun-maybe (form)
262   (if (and (not (fboundp (nth 1 form)))
263            (memq 'unresolved byte-compile-warnings))
264       (setq byte-compile-function-environment
265             (cons (cons (nth 1 form)
266                         (cons 'lambda (cdr (cdr form))))
267                   byte-compile-function-environment)))
268   form)
269
270 ;; Unknown variables and functions.
271 (unless (featurep 'xemacs)
272   (defalias 'Custom-make-dependencies 'ignore)
273   (defalias 'update-autoloads-from-directory 'ignore))
274
275 (defalias 'device-sound-enabled-p 'ignore)
276 (defalias 'play-sound-file 'ignore)
277 (defalias 'nndb-request-article 'ignore)
278 (defalias 'efs-re-read-dir 'ignore)
279 (defalias 'ange-ftp-re-read-dir 'ignore)
280 (defalias 'define-mail-user-agent 'ignore)
281
282 (eval-and-compile
283   (when (featurep 'xemacs)
284     (unless (fboundp 'defadvice)
285       (autoload 'defadvice "advice" nil nil 'macro))
286     (autoload 'Info-directory "info" nil t)
287     (autoload 'Info-menu "info" nil t)
288     (autoload 'annotations-at "annotations")
289     (autoload 'apropos "apropos" nil t)
290     (autoload 'apropos-command "apropos" nil t)
291     (autoload 'bbdb-complete-name "bbdb-com" nil t)
292     (autoload 'browse-url "browse-url" nil t)
293     (autoload 'c-mode "cc-mode" nil t)
294     (autoload 'customize-apropos "cus-edit" nil t)
295     (autoload 'customize-save-variable "cus-edit" nil t)
296     (autoload 'customize-set-variable "cus-edit" nil t)
297     (autoload 'customize-variable "cus-edit" nil t)
298     (autoload 'delete-annotation "annotations")
299     (autoload 'dolist "cl-macs" nil nil 'macro)
300     (autoload 'enriched-decode "enriched")
301     (autoload 'executable-find "executable")
302     (autoload 'font-lock-fontify-buffer "font-lock" nil t)
303     (autoload 'info "info" nil t)
304     (autoload 'mail-fetch-field "mail-utils")
305     (autoload 'make-annotation "annotations")
306     (autoload 'make-display-table "disp-table")
307     (autoload 'pp "pp")
308     (autoload 'ps-despool "ps-print" nil t)
309     (autoload 'ps-spool-buffer "ps-print" nil t)
310     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
311     (autoload 'read-passwd "passwd")
312     (autoload 'regexp-opt "regexp-opt")
313     (autoload 'reporter-submit-bug-report "reporter")
314     (if (and (emacs-version>= 21 5)
315              (not (featurep 'sxemacs)))
316         (autoload 'setenv "process" nil t)
317       (autoload 'setenv "env" nil t))
318     (autoload 'sgml-mode "psgml" nil t)
319     (autoload 'smtpmail-send-it "smtpmail")
320     (autoload 'sort-numeric-fields "sort" nil t)
321     (autoload 'sort-subr "sort")
322     (autoload 'trace-function-background "trace" nil t)
323     (autoload 'w3-do-setup "w3")
324     (autoload 'w3-prepare-buffer "w3-display")
325     (autoload 'w3-region "w3-display" nil t)
326     (defalias 'frame-char-height 'frame-height)
327     (defalias 'frame-char-width 'frame-width)
328     (defalias 'frame-parameter 'frame-property)
329     (defalias 'make-overlay 'ignore)
330     (defalias 'overlay-end 'ignore)
331     (defalias 'overlay-get 'ignore)
332     (defalias 'overlay-put 'ignore)
333     (defalias 'overlay-start 'ignore)
334     (defalias 'overlays-in 'ignore)
335     (defalias 'replace-dehighlight 'ignore)
336     (defalias 'replace-highlight 'ignore)
337     (defalias 'w3-coding-system-for-mime-charset 'ignore)))
338
339 ;; T-gnus stuff.
340 (eval-and-compile
341   (when (featurep 'xemacs)
342     (autoload 'c-mode "cc-mode" nil t)
343     (autoload 'font-lock-mode "font-lock" nil t)
344     (autoload 'read-kbd-macro "edmacro" nil t)
345     (autoload 'turn-on-font-lock "font-lock" nil t))
346   (autoload 'nnheader-detect-coding-region "nnheader")
347   (autoload 'std11-extract-addresses-components "nnheader")
348   (autoload 'std11-fold-region "nnheader")
349   (autoload 'std11-narrow-to-field "nnheader")
350   (autoload 'std11-unfold-region "nnheader"))
351
352 (defconst dgnushack-unexporting-files
353   (append '("dgnushack.el" "dgnuspath.el" "dgnuskwds.el" "lpath.el"
354             "legacy-gnus-agent.el")
355           (unless (or (condition-case code
356                           (require 'w3-parse)
357                         (error
358                          (message "No w3: %s%s, retrying..."
359                                   (error-message-string code)
360                                   (if (setq code (locate-library "w3-parse"))
361                                       (concat " (" code ")")
362                                     ""))
363                          nil))
364                       ;; Maybe mis-configured Makefile is used (e.g.
365                       ;; configured for FSFmacs but XEmacs is running).
366                       (let ((lp (delete dgnushack-w3-directory
367                                         (copy-sequence load-path))))
368                         (if (let ((load-path lp))
369                               (condition-case nil
370                                   (require 'w3-parse)
371                                 (error nil)))
372                             ;; If success, fix `load-path' for compiling.
373                             (progn
374                               (setq load-path lp)
375                               (message " => fixed; W3DIR=%s"
376                                        (file-name-directory
377                                         (locate-library "w3-parse")))
378                               t)
379                           (message " => ignored")
380                           nil)))
381             '("nnultimate.el" "webmail.el" "nnwfm.el"))
382           (condition-case code
383               (progn (require 'mh-e) nil)
384             (error
385              (message "No mh-e: %s%s (ignored)"
386                       (error-message-string code)
387                       (if (setq code (locate-library "mh-e"))
388                           (concat " (" code ")")
389                         ""))
390              '("gnus-mh.el")))
391           (condition-case code
392               (progn (require 'xml) nil)
393             (error
394              (message "No xml: %s%s (ignored)"
395                       (error-message-string code)
396                       (if (setq code (locate-library "xml"))
397                           (concat " (" code ")")
398                         ""))
399              '("nnrss.el")))
400           (condition-case code
401               (progn (require 'bbdb) nil)
402             (error
403              (message "No bbdb: %s%s (ignored)"
404                       (error-message-string code)
405                       (if (setq code (locate-library "bbdb"))
406                           (concat " (" code ")")
407                         ""))
408              '("gnus-bbdb.el")))
409           (unless (featurep 'xemacs)
410             '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el"))
411           (when (and (fboundp 'base64-decode-string)
412                      (subrp (symbol-function 'base64-decode-string)))
413             '("base64.el"))
414           (when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
415             '("md5.el"))
416           (when (featurep 'xemacs)
417             '("gnus-load.el")))
418   "Files which will not be installed.")
419
420 (defconst dgnushack-exporting-files
421   (let ((files (directory-files srcdir nil "^[^=].*\\.el$" t)))
422     (dolist (file dgnushack-unexporting-files)
423       (setq files (delete file files)))
424     (sort files 'string-lessp))
425   "Files which will be compiled and installed.")
426
427 (defun dgnushack-exporting-files ()
428   "Print name of files which will be installed."
429   (princ (mapconcat 'identity dgnushack-exporting-files " ")))
430
431 (defconst dgnushack-dont-compile-files
432   '("gnus-load.el"
433     "mm-bodies.el" "mm-decode.el" "mm-encode.el" "mm-extern.el"
434     "mm-partial.el" "mm-uu.el" "mm-view.el" "mml-sec.el" "mml-smime.el"
435     "mml.el" "mml1991.el" "mml2015.el")
436   "Files which should not be byte-compiled.")
437
438 (defun dgnushack-compile-verbosely ()
439   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
440 patches to gnus, you should consider modifying make.bat to call
441 dgnushack-compile-verbosely.  All other users should continue to use
442 dgnushack-compile."
443   (dgnushack-compile t))
444
445 (defun dgnushack-compile (&optional warn)
446   ;;(setq byte-compile-dynamic t)
447   (unless warn
448     (setq byte-compile-warnings
449           '(free-vars unresolved callargs redefine)))
450
451   ;; Show `load-path'.
452   (message "load-path=(\"%s\")"
453            (mapconcat 'identity load-path "\"\n           \""))
454
455   (dolist (file dgnushack-exporting-files)
456     (setq file (expand-file-name file srcdir))
457     (when (and (file-exists-p
458                 (setq elc (concat (file-name-nondirectory file) "c")))
459                (file-newer-than-file-p file elc))
460       (delete-file elc)))
461
462   ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
463   ;; installed.
464   (when (featurep 'xemacs)
465     (setq gnus-xmas-glyph-directory "dummy"))
466
467   (let ((files dgnushack-exporting-files)
468         ;;(byte-compile-generate-call-tree t)
469         file elc)
470     (while (setq file (pop files))
471       (unless (member file dgnushack-dont-compile-files)
472         (setq file (expand-file-name file srcdir))
473         (when (or (not (file-exists-p
474                         (setq elc (concat (file-name-nondirectory file) "c"))))
475                   (file-newer-than-file-p file elc))
476           (ignore-errors
477             (byte-compile-file file)))))))
478
479 (defun dgnushack-recompile ()
480   (require 'gnus)
481   (byte-recompile-directory "." 0))
482
483 (defvar dgnushack-gnus-load-file
484   (if (featurep 'xemacs)
485       (expand-file-name "auto-autoloads.el" srcdir)
486     (expand-file-name "gnus-load.el" srcdir)))
487
488 (defvar dgnushack-cus-load-file
489   (if (featurep 'xemacs)
490       (expand-file-name "custom-load.el" srcdir)
491     (expand-file-name "cus-load.el" srcdir)))
492
493 (defun dgnushack-make-cus-load ()
494   (load "cus-dep")
495   (let ((cusload-base-file dgnushack-cus-load-file))
496     (if (fboundp 'custom-make-dependencies)
497         (custom-make-dependencies)
498       (Custom-make-dependencies))
499     (when (featurep 'xemacs)
500       (message "Compiling %s..." dgnushack-cus-load-file)
501       (byte-compile-file dgnushack-cus-load-file))))
502
503 (defun dgnushack-make-auto-load ()
504   (require 'autoload)
505   (unless (make-autoload '(define-derived-mode child parent name
506                             "docstring" body)
507                          "file")
508     (defadvice make-autoload (around handle-define-derived-mode activate)
509       "Handle `define-derived-mode'."
510       (if (eq (car-safe (ad-get-arg 0)) 'define-derived-mode)
511           (setq ad-return-value
512                 (list 'autoload
513                       (list 'quote (nth 1 (ad-get-arg 0)))
514                       (ad-get-arg 1)
515                       (nth 4 (ad-get-arg 0))
516                       t nil))
517         ad-do-it))
518     (put 'define-derived-mode 'doc-string-elt 3))
519   (let ((generated-autoload-file dgnushack-gnus-load-file)
520         (make-backup-files nil)
521         (autoload-package-name "gnus"))
522     (if (featurep 'xemacs)
523         (if (file-exists-p generated-autoload-file)
524             (delete-file generated-autoload-file))
525       (with-temp-file generated-autoload-file
526         (insert ?\014)))
527     (if (featurep 'xemacs)
528         (let ((si:message (symbol-function 'message)))
529           (defun message (fmt &rest args)
530             (cond ((and (string-equal "Generating autoloads for %s..." fmt)
531                         (file-exists-p (file-name-nondirectory (car args))))
532                    (funcall si:message
533                             fmt (file-name-nondirectory (car args))))
534                   ((string-equal "No autoloads found in %s" fmt))
535                   ((string-equal "Generating autoloads for %s...done" fmt))
536                   (t (apply si:message fmt args))))
537           (unwind-protect
538               (batch-update-autoloads)
539             (fset 'message si:message)))
540       (batch-update-autoloads))))
541
542 (defun dgnushack-make-load ()
543   (unless (featurep 'xemacs)
544     (message "Generating %s..." dgnushack-gnus-load-file)
545     (with-temp-file dgnushack-gnus-load-file
546       (insert-file-contents dgnushack-cus-load-file)
547       (delete-file dgnushack-cus-load-file)
548       (goto-char (point-min))
549       (search-forward ";;; Code:")
550       (forward-line)
551       (delete-region (point-min) (point))
552       (insert "\
553 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
554 ;;
555 ;;; Code:
556 ")
557       (goto-char (point-max))
558       (if (search-backward "custom-versions-load-alist" nil t)
559           (forward-line -1)
560         (forward-line -1)
561         (while (eq (char-after) ?\;)
562           (forward-line -1))
563         (forward-line))
564       (delete-region (point) (point-max))
565       (insert "\n")
566       ;; smiley-* are duplicated. Remove them all.
567       (let ((point (point)))
568         (insert-file-contents dgnushack-gnus-load-file)
569         (goto-char point)
570         (while (search-forward "smiley-" nil t)
571           (beginning-of-line)
572           (if (looking-at "(autoload ")
573               (delete-region (point) (progn (forward-sexp) (point)))
574             (forward-line))))
575       ;;
576       (goto-char (point-max))
577       (when (search-backward "\n(provide " nil t)
578         (forward-line -1)
579         (delete-region (point) (point-max)))
580       (insert "\
581
582 \(provide 'gnus-load)
583
584 ;;; Local Variables:
585 ;;; version-control: never
586 ;;; no-byte-compile: t
587 ;;; no-update-autoloads: t
588 ;;; End:
589 ;;; gnus-load.el ends here
590 ")
591       ))
592   (message "Compiling %s..." dgnushack-gnus-load-file)
593   (byte-compile-file dgnushack-gnus-load-file)
594   (when (featurep 'xemacs)
595     (message "Creating dummy gnus-load.el...")
596     (with-temp-file (expand-file-name "gnus-load.el")
597       (insert "\
598
599 \(provide 'gnus-load)
600
601 ;;; Local Variables:
602 ;;; version-control: never
603 ;;; no-byte-compile: t
604 ;;; no-update-autoloads: t
605 ;;; End:
606 ;;; gnus-load.el ends here"))))
607
608 \f
609 (defconst dgnushack-info-file-regexp-en
610   (let ((names '("gnus" "message" "emacs-mime"))
611         regexp name)
612     (while (setq name (pop names))
613       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
614                            (when names "\\|"))))
615     regexp)
616   "Regexp matching English info files.")
617
618 (defconst dgnushack-info-file-regexp-ja
619   (let ((names '("gnus-ja" "message-ja"))
620         regexp name)
621     (while (setq name (pop names))
622       (setq regexp (concat regexp "^" name "\\.info\\(-[0-9]+\\)?$"
623                            (when names "\\|"))))
624     regexp)
625   "Regexp matching Japanese info files.")
626
627 (defun dgnushack-remove-extra-files-in-package ()
628   "Remove extra files in the lisp directory of the XEmacs package."
629   (let ((lisp-dir (expand-file-name (concat "lisp/"
630                                             ;; GNUS_PRODUCT_NAME
631                                             (cadr command-line-args-left)
632                                             "/")
633                                     ;; PACKAGEDIR
634                                     (car command-line-args-left))))
635     (setq command-line-args-left nil)
636     (when (file-directory-p lisp-dir)
637       (let (files)
638         (dolist (file dgnushack-exporting-files)
639           (setq files (nconc files (list file (concat file "c")))))
640         (dolist (file (directory-files lisp-dir nil nil t t))
641           (unless (member file files)
642             (setq file (expand-file-name file lisp-dir))
643             (message "Removing %s..." file)
644             (condition-case nil
645                 (delete-file file)
646               (error nil))))))))
647
648 (defun dgnushack-install-package-manifest ()
649   "Install MANIFEST file as an XEmacs package."
650   (let* ((package-dir (pop command-line-args-left))
651          (product-name (pop command-line-args-left))
652          (pkginfo-dir (expand-file-name "pkginfo" package-dir))
653          (name (expand-file-name (concat "MANIFEST." product-name)
654                                  pkginfo-dir))
655          make-backup-files)
656     (unless (file-directory-p pkginfo-dir)
657       (message "Creating directory %s/..." pkginfo-dir)
658       (make-directory pkginfo-dir))
659     (message "Generating %s..." name)
660     (with-temp-file name
661       (insert "pkginfo/MANIFEST." product-name "\n")
662       (let ((lisp-dir (concat "lisp/" product-name "/"))
663             (files (sort (directory-files "." nil "\\.elc?$" t) 'string-lessp))
664             file)
665         (while (setq file (pop files))
666           (unless (member file dgnushack-unexporting-files)
667             (insert lisp-dir file "\n")))
668         (setq files
669               (sort (directory-files "../texi/" nil
670                                      (concat dgnushack-info-file-regexp-en
671                                              "\\|"
672                                              dgnushack-info-file-regexp-ja)
673                                      t)
674                     'string-lessp))
675         (while (setq file (pop files))
676           (insert "info/" file "\n"))
677         (insert "etc/gnus-tut.txt\n")
678         (setq files
679               (sort (directory-files "../etc/images/gnus/" nil
680                                      "\\.\\(pbm\\|xbm\\|xpm\\)\\'"
681                                      t)
682                     'string-lessp))
683         (while (setq file (pop files))
684           (insert "etc/images/gnus/" file "\n"))
685         (insert "etc/images/gnus/x-splash\n")
686         (setq files
687               (sort (directory-files "../etc/images/smilies/" nil
688                                      "\\.\\(pbm\\|xpm\\)\\'"
689                                      t)
690                     'string-lessp))
691         (while (setq file (pop files))
692           (insert "etc/images/smilies/" file "\n"))))))
693
694 ;;; dgnushack.el ends here