Sync up with gnus-6_10.
[elisp/gnus.git-] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994,95,96,97,98,99 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;;      Katsumi Yamaoka <yamaoka@jpl.org>
6 ;; Version: 4.19
7 ;; Keywords: news, path
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (fset 'facep 'ignore)
31
32 (require 'cl)
33 (require 'bytecomp)
34 (push "~/lisp/custom" load-path)
35 (push "." load-path)
36 (load "./lpath.el" nil t)
37
38 (defalias 'device-sound-enabled-p 'ignore)
39 (defalias 'play-sound-file 'ignore)
40 (defalias 'nndb-request-article 'ignore)
41 (defalias 'efs-re-read-dir 'ignore)
42 (defalias 'ange-ftp-re-read-dir 'ignore)
43 (defalias 'define-mail-user-agent 'ignore)
44
45 (eval-and-compile
46   (unless (string-match "XEmacs" emacs-version)
47     (fset 'get-popup-menu-response 'ignore)
48     (fset 'event-object 'ignore)
49     (fset 'x-defined-colors 'ignore)
50     (fset 'read-color 'ignore)))
51
52 (defun dgnushack-compile (&optional warn)
53   ;;(setq byte-compile-dynamic t)
54   (unless warn
55     (setq byte-compile-warnings
56           '(free-vars unresolved callargs redefine)))
57   (unless (locate-library "cus-edit")
58     (error "You do not seem to have Custom installed.
59 Fetch it from <URL:http://www.dina.kvl.dk/~abraham/custom/>.
60 You also then need to add the following to the lisp/dgnushack.el file:
61
62      (push \"~/lisp/custom\" load-path)
63
64 Modify to suit your needs."))
65   (let ((files (directory-files "." nil "^[^=].*\\.el$"))
66         (xemacs (string-match "XEmacs" emacs-version))
67         ;;(byte-compile-generate-call-tree t)
68         file elc)
69     (condition-case ()
70         (require 'w3-forms)
71       (error (setq files (delete "nnweb.el" (delete "nnlistserv.el" files)))))
72     (condition-case ()
73         (require 'bbdb)
74       (error (setq files (delete "gnus-bbdb.el"
75                                  (delete "mess-bbdb.el" files)))))
76     (while (setq file (pop files))
77       (when (or (and (not xemacs)
78                      (not (member file '("gnus-xmas.el" "gnus-picon.el"
79                                          "messagexmas.el" "nnheaderxm.el"
80                                          "smiley.el" "x-overlay.el"))))
81                 (and xemacs
82                      (not (member file '("md5.el")))))
83         (when (or (not (file-exists-p (setq elc (concat file "c"))))
84                   (file-newer-than-file-p file elc))
85           (ignore-errors
86             (byte-compile-file file)))))))
87
88 (defun dgnushack-recompile ()
89   (require 'gnus)
90   (byte-recompile-directory "." 0))
91
92 \f
93 ;; Avoid byte-compile warnings.
94 (defvar gnus-revision-number)
95 (defvar gnus-version-number)
96 (defvar gnus-product-name)
97 (defvar configure-package-path)
98 (defvar package-path)
99
100 (defconst dgnushack-info-file-regexp
101   "^\\(gnus\\|message\\|gnus-ja\\|message-ja\\)\\.info\\(-[0-9]+\\)?$")
102
103 (defconst dgnushack-texi-file-regexp
104   "^\\(gnus\\|message\\|gnus-ja\\|message-ja\\)\\.texi$")
105
106 (defun dgnushack-make-package ()
107   (require 'gnus)
108   (let* ((product-name (downcase gnus-product-name))
109          (lisp-dir (concat "lisp/" product-name "/"))
110          make-backup-files)
111
112     (message "Updating autoloads for directory %s..." default-directory)
113     (let ((generated-autoload-file "auto-autoloads.el")
114           noninteractive)
115       (update-autoloads-from-directory default-directory))
116     (byte-compile-file "auto-autoloads.el")
117
118     (with-temp-buffer
119       (let ((standard-output (current-buffer)))
120         (Custom-make-dependencies "."))
121       (message (buffer-string)))
122     (require 'cus-load)
123     (byte-compile-file "custom-load.el")
124
125     (message "Generating MANIFEST.%s for the package..." product-name)
126     (with-temp-buffer
127       (insert "pkginfo/MANIFEST." product-name "\n"
128               lisp-dir
129               (mapconcat
130                'identity
131                (sort (directory-files "." nil "\\.elc?$")
132                      'string-lessp)
133                (concat "\n" lisp-dir))
134               "\ninfo/"
135               (mapconcat
136                'identity
137                (sort (directory-files "../texi/"
138                                       nil dgnushack-info-file-regexp)
139                      'string-lessp)
140                "\ninfo/")
141               "\n")
142       (write-file (concat "../MANIFEST." product-name)))))
143
144 (defun dgnushack-install-package ()
145   (let* ((package-dir (file-name-as-directory
146                        (or (car command-line-args-left)
147                            (if (boundp 'configure-package-path)
148                                (car configure-package-path)
149                              (car package-path)))))
150          (info-dir (expand-file-name "info/" package-dir))
151          (pkginfo-dir (expand-file-name "pkginfo/" package-dir))
152          product-name lisp-dir manifest files)
153     (require 'gnus)
154     (setq product-name (downcase gnus-product-name)
155           lisp-dir (expand-file-name (concat "lisp/" product-name "/")
156                                      package-dir)
157           manifest (concat "MANIFEST." product-name))
158
159     (unless (file-directory-p lisp-dir)
160       (make-directory lisp-dir t))
161     (unless (file-directory-p info-dir)
162       (make-directory info-dir))
163     (unless (file-directory-p pkginfo-dir)
164       (make-directory pkginfo-dir))
165
166     (setq files (sort (directory-files "." nil "\\.elc?$") 'string-lessp))
167     (mapcar
168      (lambda (file)
169        (unless (member file files)
170          (setq file (expand-file-name file lisp-dir))
171          (message "Removing %s..." file)
172          (condition-case nil
173              (delete-file file)
174            (error nil))))
175      (directory-files lisp-dir nil nil nil t))
176     (mapcar
177      (lambda (file)
178        (message "Copying %s to %s..." file lisp-dir)
179        (copy-file file (expand-file-name file lisp-dir) t t))
180      files)
181
182     (mapcar
183      (lambda (file)
184        (message "Copying ../texi/%s to %s..." file info-dir)
185        (copy-file (expand-file-name file "../texi/")
186                   (expand-file-name file info-dir)
187                   t t))
188      (sort (directory-files "../texi/" nil dgnushack-info-file-regexp)
189            'string-lessp))
190
191     (message "Copying ../%s to %s..." manifest pkginfo-dir)
192     (copy-file (expand-file-name manifest "../")
193                (expand-file-name manifest pkginfo-dir) t t)
194
195     (message "Done")))
196
197 (defun dgnushack-add-info-suffix-maybe ()
198   ;; This function must be invoked from texi directory.
199   (let ((coding-system-for-read 'raw-text)
200         (coding-system-for-write 'raw-text)
201         (files (directory-files "." nil dgnushack-texi-file-regexp))
202         file make-backup-files)
203     (while (setq file (pop files))
204       (find-file file)
205       (when (and (re-search-forward
206                   "^@setfilename[\t ]+\\([^\t\n ]+\\)" nil t)
207                  (not (string-match "\\.info$" (match-string 1))))
208         (copy-file file (concat file "_") nil t)
209         (insert ".info")
210         (save-buffer))
211       (kill-buffer (current-buffer)))))
212
213 ;;; dgnushack.el ends here