7485f10ef3b83350dd54dc28ab0ee545e4241b83
[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   (if path
81       (progn
82         (add-path path)
83         (add-path (expand-file-name "lisp" path)) ; run-in-place installation
84         )))
85
86 ;; Or please specify path.
87 ;; (add-path "bbdb-1.50" 'all-paths)
88
89
90 ;;;
91 ;;; @@ Please specify Emacs/W3 path.
92 ;;;
93
94 (let ((path (get-latest-path "w3" 'all-paths)))
95   (if path
96       (progn
97         (add-path path)
98         (add-path (expand-file-name "lisp" path)) ; run-in-place installation
99         )))
100
101 ;; Or please specify path.
102 ;; (add-path "w3-4.0pre.20" 'all-paths)
103
104
105 ;;;
106 ;;; @@ Please specify CUSTOM path.
107 ;;;
108
109 (add-latest-path "custom")
110
111
112 ;;; @ Please specify prefix of install directory.
113 ;;;
114
115 ;; Please specify install path prefix.
116 ;; If it is omitted, shared directory (maybe /usr/local is used).
117 (defvar PREFIX install-prefix)
118 ;;(setq PREFIX "~/")
119
120 ;; Please specify emu prefix [optional]
121 (setq EMU_PREFIX
122       (if (string-match "XEmacs" emacs-version)
123           "emu"
124         ""))
125
126 ;; Please specify SEMI prefix [optional]
127 (setq SEMI_PREFIX "semi")
128
129
130 ;;; @ executables
131 ;;;
132
133 ;; Please specify binary path. (for external method scripts)
134 (setq METHOD_DIR (expand-file-name "share/semi" PREFIX))
135
136
137 \f
138
139 ;;; @ optional settings
140 ;;;
141
142 ;; It is generated by automatically. Please set variable `PREFIX'.
143 ;; If you don't like default directory tree, please set it.
144 (defvar LISPDIR (install-detect-elisp-directory PREFIX))
145 ;; (setq install-default-elisp-directory "~/lib/emacs/lisp")
146
147 (setq SEMI_KERNEL_DIR   (expand-file-name SEMI_PREFIX   LISPDIR))
148 (setq SETUP_FILE_DIR    SEMI_KERNEL_DIR)
149
150 (setq METHOD_SRC_DIR "methods")
151 (setq METHODS
152       '("tm-au" "tm-file" "tm-html" "tm-image" "tm-mpeg"
153         "tm-plain" "tm-ps"
154         "tmdecode"))
155
156 (defvar PACKAGEDIR
157   (if (boundp 'early-packages)
158       (let ((dirs (append (if early-package-load-path
159                               early-packages)
160                           (if late-package-load-path
161                               late-packages)
162                           (if last-package-load-path
163                               last-packages)))
164             dir)
165         (while (not (file-exists-p
166                      (setq dir (car dirs))))
167           (setq dirs (cdr dirs)))
168         dir)))
169
170 ;;; SEMI-CFG ends here