* Sync up with semi-1_13_4.
[elisp/semi.git] / SEMI-CFG
1 ;;; -*-Emacs-Lisp-*-
2
3 ;; SEMI-CFG: installation setting about SEMI.
4
5 ;;; Code:
6
7 (defvar default-load-path load-path)
8
9 (add-to-list 'load-path
10              (expand-file-name "../../site-lisp/apel" data-directory))
11 (add-to-list 'load-path
12              (expand-file-name "." data-directory))
13
14 (if (boundp 'LISPDIR)
15     (progn
16       (add-to-list 'default-load-path LISPDIR)
17       (add-to-list 'load-path LISPDIR)
18       (add-to-list 'load-path (expand-file-name "apel" LISPDIR))
19       ))
20
21 (defvar VERSION_SPECIFIC_LISPDIR nil)
22
23 (if VERSION_SPECIFIC_LISPDIR
24     (add-to-list 'load-path VERSION_SPECIFIC_LISPDIR))
25
26 (condition-case nil
27     (require 'install)
28   (error (error "Please install APEL 8.7 or later.")))
29
30 (add-path "bitmap-mule")
31 (add-path "flim")
32
33 (add-to-list 'load-path (expand-file-name "."))
34
35 (or (module-installed-p 'calist)
36     (error "Please install APEL 8.7 or later."))
37 (or (module-installed-p 'mime)
38     (error "Please install FLIM 1.6.0 or later."))
39 (if (module-installed-p 'tm-view)
40     (message "Please remove tm from load-path."))
41
42
43 ;;; @ Please specify optional package directory if you use them.
44 ;;;
45
46 ;; It is only necessary to use `add-path' if these packages are not
47 ;; already on the standard load-path of Emacs.
48
49 ;; Function `get-latest-path' detect latest version of such package
50 ;; under load-path directories. If you want to use a version of a
51 ;; package instead of latest version, please specify by argument of
52 ;; function `add-path'.
53
54 ;; Function `add-path' finds path under load-path directories. If a
55 ;; package does not exist in load-path, please specify by absolutely
56 ;; (`~/' is available), for example
57 ;;      (add-path "~/lib/elisp/mailcrypt-3.4")
58 ;; or
59 ;;      (add-path "/opt/share/xmule/site-lisp/mailcrypt-3.4")
60
61
62 ;;; @@ Please specify Mailcrypt path.
63 ;;;
64
65 ;; Use latest version installed in load-path.
66
67 (let ((path (get-latest-path "mailcrypt" 'all-paths)))
68   (if path
69       (add-path path)
70     ))
71
72 ;; Or please specify path.
73 ;; (add-path "mailcrypt-3.4" 'all-paths)
74
75
76 ;;; @@ Please specify BBDB path.
77 ;;;
78
79 (let ((path (get-latest-path "bbdb" 'all-paths)))
80   (when path
81     (add-path path)
82     (add-path (expand-file-name "lisp" path)) ; run-in-place installation
83     ))
84
85 ;; Or please specify path.
86 ;; (add-path "bbdb-1.50" 'all-paths)
87
88
89 ;;;
90 ;;; @@ Please specify Emacs/W3 path.
91 ;;;
92
93 (let ((path (get-latest-path "w3" 'all-paths)))
94   (when path
95     (add-path path)
96     (add-path (expand-file-name "lisp" path)) ; run-in-place installation
97     ))
98
99 ;; Or please specify path.
100 ;; (add-path "w3-4.0pre.20" 'all-paths)
101
102
103 ;;;
104 ;;; @@ Please specify CUSTOM path.
105 ;;;
106
107 (add-latest-path "custom")
108
109
110 ;;; @ Please specify prefix of install directory.
111 ;;;
112
113 ;; Please specify install path prefix.
114 ;; If it is omitted, shared directory (maybe /usr/local is used).
115 (defvar PREFIX install-prefix)
116 ;;(setq PREFIX "~/")
117
118 ;; Please specify install path prefix for binaries.
119 (defvar EXEC_PREFIX
120   (if (or running-emacs-18 running-xemacs)
121       (expand-file-name "../../.." exec-directory)
122     (expand-file-name "../../../.." exec-directory)
123     ))
124
125 ;; Please specify emu prefix [optional]
126 (setq EMU_PREFIX
127       (if (string-match "XEmacs" emacs-version)
128           "emu"
129         ""))
130
131 ;; Please specify SEMI prefix [optional]
132 (setq SEMI_PREFIX "semi")
133
134
135 ;;; @ executables
136 ;;;
137
138 ;; Please specify binary path.
139 (defvar BIN_DIR (expand-file-name "bin" EXEC_PREFIX))
140
141 ;; Please specify binary path. (for external method scripts)
142 (setq METHOD_DIR (expand-file-name "share/semi" PREFIX))
143
144
145 \f
146
147 ;;; @ optional settings
148 ;;;
149
150 ;; It is generated by automatically. Please set variable `PREFIX'.
151 ;; If you don't like default directory tree, please set it.
152 (defvar LISPDIR (install-detect-elisp-directory PREFIX))
153 ;; (setq install-default-elisp-directory "~/lib/emacs/lisp")
154
155 (setq SEMI_KERNEL_DIR   (expand-file-name SEMI_PREFIX   LISPDIR))
156 (setq SETUP_FILE_DIR    SEMI_KERNEL_DIR)
157
158 (setq METHOD_SRC_DIR "methods")
159 (setq METHODS
160       '("tm-au" "tm-file" "tm-html" "tm-image" "tm-mpeg"
161         "tm-plain" "tm-ps"
162         "tmdecode"))
163
164 (defvar PACKAGEDIR
165   (if (boundp 'early-packages)
166       (let ((dirs (append (if early-package-load-path
167                               early-packages)
168                           (if late-package-load-path
169                               late-packages)
170                           (if last-package-load-path
171                               last-packages)))
172             dir)
173         (while (not (file-exists-p
174                      (setq dir (car dirs))))
175           (setq dirs (cdr dirs)))
176         dir)))
177
178 ;;; SEMI-CFG ends here