3 ;; SEMI-CFG: installation setting about SEMI.
7 (defvar default-load-path load-path)
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))
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))
21 (defvar VERSION_SPECIFIC_LISPDIR nil)
23 (if VERSION_SPECIFIC_LISPDIR
24 (add-to-list 'load-path VERSION_SPECIFIC_LISPDIR))
28 (error (error "Please install APEL 8.7 or later.")))
30 (add-path "bitmap-mule")
33 (add-to-list 'load-path (expand-file-name "."))
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."))
43 ;;; @ Please specify optional package directory if you use them.
46 ;; It is only necessary to use `add-path' if these packages are not
47 ;; already on the standard load-path of Emacs.
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'.
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/bbdb")
59 ;; (add-path "/opt/share/xmule/site-lisp/bbdb")
62 ;;; @@ Please specify BBDB path.
65 (let ((path (get-latest-path "bbdb" 'all-paths)))
69 (add-path (expand-file-name "lisp" path)) ; run-in-place installation
72 ;; Or please specify path.
73 ;; (add-path "bbdb-1.50" 'all-paths)
77 ;;; @@ Please specify Emacs/W3 path.
80 (let ((path (get-latest-path "w3" 'all-paths)))
84 (add-path (expand-file-name "lisp" path)) ; run-in-place installation
87 ;; Or please specify path.
88 ;; (add-path "w3-4.0pre.20" 'all-paths)
92 ;;; @@ Please specify CUSTOM path.
95 (add-latest-path "custom")
98 ;;; @ Please specify prefix of install directory.
101 ;; Please specify install path prefix.
102 ;; If it is omitted, shared directory (maybe /usr/local is used).
103 (defvar PREFIX install-prefix)
106 ;; Please specify emu prefix [optional]
108 (if (string-match "XEmacs" emacs-version)
112 ;; Please specify SEMI prefix [optional]
113 (setq SEMI_PREFIX "semi")
119 ;; Please specify binary path. (for external method scripts)
120 (setq METHOD_DIR (expand-file-name "share/semi" PREFIX))
125 ;;; @ optional settings
128 ;; It is generated by automatically. Please set variable `PREFIX'.
129 ;; If you don't like default directory tree, please set it.
130 (defvar LISPDIR (install-detect-elisp-directory PREFIX))
131 ;; (setq install-default-elisp-directory "~/lib/emacs/lisp")
133 (setq SEMI_KERNEL_DIR (expand-file-name SEMI_PREFIX LISPDIR))
134 (setq SETUP_FILE_DIR SEMI_KERNEL_DIR)
136 (setq METHOD_SRC_DIR "methods")
138 '("tm-au" "tm-file" "tm-html" "tm-image" "tm-mpeg"
142 (defvar PACKAGEDIR (install-get-default-package-directory))
144 ;;; SEMI-CFG ends here