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.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; Katsumi Yamaoka <yamaoka@jpl.org>
7 ;; Keywords: news, path
9 ;; This file is part of GNU Emacs.
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)
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.
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.
34 (push "~/lisp/custom" load-path)
36 (load "./lpath.el" nil t)
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)
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)))
52 (defun dgnushack-compile (&optional warn)
53 ;;(setq byte-compile-dynamic t)
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:
62 (push \"~/lisp/custom\" load-path)
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)
71 (error (setq files (delete "nnweb.el" (delete "nnlistserv.el" files)))))
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"))))
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))
86 (byte-compile-file file)))))))
88 (defun dgnushack-recompile ()
90 (byte-recompile-directory "." 0))
93 ;; Avoid byte-compile warnings.
94 (defvar gnus-product-name)
95 (defvar early-package-load-path)
96 (defvar early-packages)
97 (defvar last-package-load-path)
98 (defvar last-packages)
99 (defvar late-package-load-path)
100 (defvar late-packages)
102 (defconst dgnushack-info-file-regexp
103 "^\\(gnus\\|message\\|gnus-ja\\|message-ja\\)\\.info\\(-[0-9]+\\)?$")
105 (defconst dgnushack-texi-file-regexp
106 "^\\(gnus\\|message\\|gnus-ja\\|message-ja\\)\\.texi$")
108 (defun dgnushack-make-package ()
110 (let* ((product-name (downcase gnus-product-name))
111 (lisp-dir (concat "lisp/" product-name "/"))
114 (message "Updating autoloads for directory %s..." default-directory)
115 (let ((generated-autoload-file "auto-autoloads.el")
117 (update-autoloads-from-directory default-directory))
118 (byte-compile-file "auto-autoloads.el")
121 (let ((standard-output (current-buffer)))
122 (Custom-make-dependencies "."))
123 (message (buffer-string)))
125 (byte-compile-file "custom-load.el")
127 (message "Generating MANIFEST.%s for the package..." product-name)
129 (insert "pkginfo/MANIFEST." product-name "\n"
133 (sort (directory-files "." nil "\\.elc?$")
135 (concat "\n" lisp-dir))
139 (sort (directory-files "../texi/"
140 nil dgnushack-info-file-regexp)
144 (write-file (concat "../MANIFEST." product-name)))))
146 (defun dgnushack-install-package ()
147 (let ((package-dir (car command-line-args-left))
148 dirs info-dir pkginfo-dir product-name lisp-dir manifest files)
150 (when (boundp 'early-packages)
151 (setq dirs (delq nil (append (when early-package-load-path
153 (when late-package-load-path
155 (when last-package-load-path
157 (while (and dirs (not package-dir))
158 (when (file-exists-p (car dirs))
159 (setq package-dir (car dirs)
163 You must specify the name of the package path as follows:
165 % make install-package PACKAGEDIR=/usr/local/lib/xemacs/xemacs-packages
168 (setq info-dir (expand-file-name "info/" package-dir)
169 pkginfo-dir (expand-file-name "pkginfo/" package-dir))
171 (setq product-name (downcase gnus-product-name)
172 lisp-dir (expand-file-name (concat "lisp/" product-name "/")
174 manifest (concat "MANIFEST." product-name))
176 (unless (file-directory-p lisp-dir)
177 (make-directory lisp-dir t))
178 (unless (file-directory-p info-dir)
179 (make-directory info-dir))
180 (unless (file-directory-p pkginfo-dir)
181 (make-directory pkginfo-dir))
183 (setq files (sort (directory-files "." nil "\\.elc?$") 'string-lessp))
186 (unless (member file files)
187 (setq file (expand-file-name file lisp-dir))
188 (message "Removing %s..." file)
192 (directory-files lisp-dir nil nil nil t))
195 (message "Copying %s to %s..." file lisp-dir)
196 (copy-file file (expand-file-name file lisp-dir) t t))
201 (message "Copying ../texi/%s to %s..." file info-dir)
202 (copy-file (expand-file-name file "../texi/")
203 (expand-file-name file info-dir)
205 (sort (directory-files "../texi/" nil dgnushack-info-file-regexp)
208 (message "Copying ../%s to %s..." manifest pkginfo-dir)
209 (copy-file (expand-file-name manifest "../")
210 (expand-file-name manifest pkginfo-dir) t t)
214 (defun dgnushack-add-info-suffix-maybe ()
215 ;; This function must be invoked from lisp directory.
216 (setq default-directory "../texi/")
217 (let ((coding-system-for-read 'raw-text)
218 (coding-system-for-write 'raw-text)
219 (files (directory-files "." nil dgnushack-texi-file-regexp))
220 file make-backup-files)
221 (while (setq file (pop files))
223 (when (and (re-search-forward
224 "^@setfilename[\t ]+\\([^\t\n ]+\\)" nil t)
225 (not (string-match "\\.info$" (match-string 1))))
226 (copy-file file (concat file "_") nil t)
229 (kill-buffer (current-buffer)))))
231 ;;; dgnushack.el ends here