* install.el (install-elisp-module): Delete an elc file if the optional 5th
[elisp/apel.git] / install.el
1 ;;; install.el --- Emacs Lisp package install utility
2
3 ;; Copyright (C) 1996,1997,1998,1999,2001 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Created: 1996/08/18
7 ;; Keywords: install, byte-compile, directory detection
8
9 ;; This file is part of APEL (A Portable Emacs Library).
10
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; 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
23 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Code:
27
28 (require 'poe)                          ; make-directory for v18
29 (require 'path-util)                    ; default-load-path
30
31
32 ;;; @ compile Emacs Lisp files
33 ;;;
34
35 (defun compile-elisp-module (module &optional path every-time)
36   (setq module (expand-file-name (symbol-name module) path))
37   (let ((el-file (concat module ".el"))
38         (elc-file (concat module ".elc")))
39     (if (or every-time
40             (file-newer-than-file-p el-file elc-file))
41         (byte-compile-file el-file))))
42
43 (defun compile-elisp-modules (modules &optional path every-time)
44   (mapcar
45    (function
46     (lambda (module)
47       (compile-elisp-module module path every-time)))
48    modules))
49
50
51 ;;; @ install files
52 ;;;
53
54 (defvar install-overwritten-file-modes (+ (* 64 6)(* 8 4) 4)) ; 0644
55
56 (defun install-file (file src dest &optional move overwrite just-print)
57   (if just-print
58       (princ (format "%s -> %s\n" file dest))
59     (let ((src-file (expand-file-name file src)))
60       (if (file-exists-p src-file)
61           (let ((full-path (expand-file-name file dest)))
62             (if (and (file-exists-p full-path) overwrite)
63                 (delete-file full-path))
64             (copy-file src-file full-path t t)
65             (set-file-modes full-path install-overwritten-file-modes)
66             (if move
67                 (catch 'tag
68                   (while (and (file-exists-p src-file)
69                               (file-writable-p src-file))
70                     (condition-case err
71                         (progn
72                           (delete-file src-file)
73                           (throw 'tag nil))
74                       (error (princ (format "%s\n" (nth 1 err))))))))
75             (princ (format "%s -> %s\n" file dest)))))))
76
77 (defun install-files (files src dest &optional move overwrite just-print)
78   (or just-print
79       (file-exists-p dest)
80       (make-directory dest t))
81   (mapcar
82    (function
83     (lambda (file)
84       (install-file file src dest move overwrite just-print)))
85    files))
86
87
88 ;;; @@ install Emacs Lisp files
89 ;;;
90
91 (defun install-elisp-module (module src dest &optional just-print del-elc)
92   (let (el-file elc-file)
93     (let ((name (symbol-name module)))
94       (setq el-file (concat name ".el"))
95       (setq elc-file (concat name ".elc")))
96     (let ((src-file (expand-file-name el-file src)))
97       (if (not (file-exists-p src-file))
98           nil 
99         (if just-print
100             (princ (format "%s -> %s\n" el-file dest))
101           (let ((full-path (expand-file-name el-file dest)))
102             (if (file-exists-p full-path)
103                 (delete-file full-path))
104             (copy-file src-file full-path t t)
105             (set-file-modes full-path install-overwritten-file-modes)
106             (princ (format "%s -> %s\n" el-file dest)))))
107       (setq src-file (expand-file-name elc-file src))
108       (if (not (file-exists-p src-file))
109           (let ((full-path (expand-file-name elc-file dest)))
110             (if (and del-elc (file-exists-p full-path))
111                 (if just-print
112                     (princ (format "%s -> to be deleted\n" full-path))
113                   (delete-file full-path)
114                   (princ (format "%s -> deleted\n" full-path)))))
115         (if just-print
116             (princ (format "%s -> %s\n" elc-file dest))
117           (let ((full-path (expand-file-name elc-file dest)))
118             (if (file-exists-p full-path)
119                 (delete-file full-path))
120             (copy-file src-file full-path t t)
121             (set-file-modes full-path install-overwritten-file-modes)
122             (catch 'tag
123               (while (file-exists-p src-file)
124                 (condition-case err
125                     (progn
126                       (delete-file src-file)
127                       (throw 'tag nil))
128                   (error (princ (format "%s\n" (nth 1 err)))))))
129             (princ (format "%s -> %s\n" elc-file dest))))))))
130
131 (defun install-elisp-modules (modules src dest &optional just-print del-elc)
132   (or just-print
133       (file-exists-p dest)
134       (make-directory dest t))
135   (mapcar
136    (function
137     (lambda (module)
138       (install-elisp-module module src dest just-print del-elc)))
139    modules))
140
141
142 ;;; @ detect install path
143 ;;;
144
145 ;; install to shared directory (maybe "/usr/local")
146 (defvar install-prefix
147   (if (or (<= emacs-major-version 18)
148           (featurep 'xemacs)
149           (and (boundp 'system-configuration-options) ; 19.29 or later
150                (string= system-configuration-options "NT"))) ; for Meadow
151       (expand-file-name "../../.." exec-directory)
152     (expand-file-name "../../../.." data-directory)))
153
154 (defvar install-elisp-prefix
155   (if (>= emacs-major-version 19)
156       "site-lisp"
157     ;; v18 does not have standard site directory.
158     "local.lisp"))
159
160 (defun install-detect-elisp-directory (&optional prefix elisp-prefix
161                                                  allow-version-specific)
162   (or prefix
163       (setq prefix install-prefix))
164   (or elisp-prefix
165       (setq elisp-prefix install-elisp-prefix))
166   (or (catch 'tag
167         (let ((rest default-load-path)
168               (regexp (concat "^"
169                               (expand-file-name (concat ".*/" elisp-prefix)
170                                                 prefix)
171                               "/?$")))
172           (while rest
173             (if (string-match regexp (car rest))
174                 (if (or allow-version-specific
175                         (not (string-match (format "/%d\\.%d"
176                                                    emacs-major-version
177                                                    emacs-minor-version)
178                                            (car rest))))
179                     (throw 'tag (car rest))))
180             (setq rest (cdr rest)))))
181       (expand-file-name (concat (if (and (not (featurep 'xemacs))
182                                          (or (>= emacs-major-version 20)
183                                              (and (= emacs-major-version 19)
184                                                   (> emacs-minor-version 28))))
185                                     "share/"
186                                   "lib/")
187                                 (cond
188                                  ((featurep 'xemacs)
189                                   (if (featurep 'mule)
190                                       "xmule/"
191                                     "xemacs/"))
192                                  ;; unfortunately, unofficial mule based on
193                                  ;; 19.29 and later use "emacs/" by default.
194                                  ((boundp 'MULE) "mule/")
195                                  ((boundp 'NEMACS) "nemacs/")
196                                  (t "emacs/"))
197                                 elisp-prefix)
198                         prefix)))
199
200 (defvar install-default-elisp-directory
201   (install-detect-elisp-directory))
202
203
204 ;;; @ for XEmacs package system
205 ;;;
206
207 (defun install-update-package-files (package dir &optional just-print)
208   (cond
209    (just-print
210     (princ (format "Updating autoloads in directory %s..\n\n" dir))
211
212     (princ (format "Processing %s\n" dir))
213     (princ "Generating custom-load.el...\n\n")
214
215     (princ (format "Compiling %s...\n"
216                    (expand-file-name "auto-autoloads.el" dir)))
217     (princ (format "Wrote %s\n"
218                    (expand-file-name "auto-autoloads.elc" dir)))
219
220     (princ (format "Compiling %s...\n"
221                    (expand-file-name "custom-load.el" dir)))
222     (princ (format "Wrote %s\n"
223                    (expand-file-name "custom-load.elc" dir))))
224    (t
225     (setq autoload-package-name package)
226
227     (let ((command-line-args-left (list dir)))
228       (batch-update-directory))
229
230     (let ((command-line-args-left (list dir)))
231       (Custom-make-dependencies))
232
233     (byte-compile-file (expand-file-name "auto-autoloads.el" dir))
234     (byte-compile-file (expand-file-name "custom-load.el" dir)))))
235
236
237 ;;; @ Other Utilities
238 ;;;
239
240 (defun install-just-print-p ()
241   (let ((flag (getenv "MAKEFLAGS"))
242         (case-fold-search nil))
243     (princ (format "%s\n" flag))
244     (if flag
245         (string-match "^\\(\\(--[^ ]+ \\)+-\\|[^ =-]\\)*n" flag))))
246
247
248 ;;; @ end
249 ;;;
250
251 (require 'product)
252 (product-provide (provide 'install) (require 'apel-ver))
253
254 ;;; install.el ends here