| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.11 2005/07/06 20:20:03 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.55 2009/02/13 17:15:58 ulm Exp $ |
| 4 | # |
4 | # |
| 5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
5 | # Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> |
| 6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
|
|
7 | # Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org> |
|
|
8 | # Copyright 2007-2008 Christian Faulhammer <opfer@gentoo.org> |
|
|
9 | # Copyright 2007-2009 Ulrich Müller <ulm@gentoo.org> |
| 7 | # |
10 | # |
| 8 | # This is not an eclass, but it does provide emacs-related |
11 | # @ECLASS: elisp-common.eclass |
| 9 | # installation utilities. |
12 | # @MAINTAINER: |
|
|
13 | # Feel free to contact the Emacs team through <emacs@gentoo.org> if you have |
|
|
14 | # problems, suggestions or questions. |
|
|
15 | # @BLURB: Emacs-related installation utilities |
|
|
16 | # @DESCRIPTION: |
|
|
17 | # |
|
|
18 | # Usually you want to use this eclass for (optional) GNU Emacs support of |
|
|
19 | # your package. This is NOT for XEmacs! |
|
|
20 | # |
|
|
21 | # Many of the steps here are sometimes done by the build system of your |
|
|
22 | # package (especially compilation), so this is mainly for standalone elisp |
|
|
23 | # files you gathered from somewhere else. |
|
|
24 | # |
|
|
25 | # When relying on the emacs USE flag, you need to add |
|
|
26 | # |
|
|
27 | # emacs? ( virtual/emacs ) |
|
|
28 | # |
|
|
29 | # to your DEPEND/RDEPEND line and use the functions provided here to bring |
|
|
30 | # the files to the correct locations. |
|
|
31 | # |
|
|
32 | # .SS |
|
|
33 | # src_compile() usage: |
|
|
34 | # |
|
|
35 | # An elisp file is compiled by the elisp-compile() function defined here and |
|
|
36 | # simply takes the source files as arguments. The case of interdependent |
|
|
37 | # elisp files is also supported, since the current directory is added to the |
|
|
38 | # load-path which makes sure that all files are loadable. |
|
|
39 | # |
|
|
40 | # elisp-compile *.el || die |
|
|
41 | # |
|
|
42 | # Formerly, function elisp-comp() was used for compilation of interdependent |
|
|
43 | # elisp files. This usage is considered as obsolete. |
|
|
44 | # |
|
|
45 | # Function elisp-make-autoload-file() can be used to generate a file with |
|
|
46 | # autoload definitions for the lisp functions. It takes the output file name |
|
|
47 | # (default: "${PN}-autoloads.el") and a list of directories (default: working |
|
|
48 | # directory) as its arguments. Use of this function requires that the elisp |
|
|
49 | # source files contain magic ";;;###autoload" comments. See the Emacs Lisp |
|
|
50 | # Reference Manual (node "Autoload") for a detailed explanation. |
|
|
51 | # |
|
|
52 | # .SS |
|
|
53 | # src_install() usage: |
|
|
54 | # |
|
|
55 | # The resulting compiled files (.elc) should be put in a subdirectory of |
|
|
56 | # /usr/share/emacs/site-lisp/ which is named after the first argument |
|
|
57 | # of elisp-install(). The following parameters are the files to be put in |
|
|
58 | # that directory. Usually the subdirectory should be ${PN}, you can choose |
|
|
59 | # something else, but remember to tell elisp-site-file-install() (see below) |
|
|
60 | # the change, as it defaults to ${PN}. |
|
|
61 | # |
|
|
62 | # elisp-install ${PN} *.el *.elc || die |
|
|
63 | # |
|
|
64 | # To let the Emacs support be activated by Emacs on startup, you need |
|
|
65 | # to provide a site file (shipped in ${FILESDIR}) which contains the startup |
|
|
66 | # code (have a look in the documentation of your software). Normally this |
|
|
67 | # would look like this: |
|
|
68 | # |
|
|
69 | # ;;; csv-mode site-lisp configuration |
|
|
70 | # |
|
|
71 | # (add-to-list 'load-path "@SITELISP@") |
|
|
72 | # (add-to-list 'auto-mode-alist '("\\.csv\\'" . csv-mode)) |
|
|
73 | # (autoload 'csv-mode "csv-mode" "Major mode for csv files." t) |
|
|
74 | # |
|
|
75 | # If your Emacs support files are installed in a subdirectory of |
|
|
76 | # /usr/share/emacs/site-lisp/ (which is recommended), you need to extend |
|
|
77 | # Emacs' load-path as shown in the first non-comment. |
|
|
78 | # The elisp-site-file-install() function of this eclass will replace |
|
|
79 | # "@SITELISP@" by the actual path. |
|
|
80 | # |
|
|
81 | # The next line tells Emacs to load the mode opening a file ending with |
|
|
82 | # ".csv" and load functions depending on the context and needed features. |
|
|
83 | # Be careful though. Commands as "load-library" or "require" bloat the |
|
|
84 | # editor as they are loaded on every startup. When having a lot of Emacs |
|
|
85 | # support files, users may be annoyed by the start-up time. Also avoid |
|
|
86 | # keybindings as they might interfere with the user's settings. Give a hint |
|
|
87 | # in pkg_postinst(), which should be enough. |
|
|
88 | # |
|
|
89 | # The naming scheme for this site-init file matches the shell pattern |
|
|
90 | # "[1-8][0-9]*-gentoo.el", where the two digits at the beginning define the |
|
|
91 | # loading order (numbers below 10 or above 89 are reserved for internal use). |
|
|
92 | # So if you depend on another Emacs package, your site file's number must be |
|
|
93 | # higher! |
|
|
94 | # |
|
|
95 | # Best practice is to define a SITEFILE variable in the global scope of your |
|
|
96 | # ebuild (e.g., right after DEPEND): |
|
|
97 | # |
|
|
98 | # SITEFILE=50${PN}-gentoo.el |
|
|
99 | # |
|
|
100 | # Which is then installed by |
|
|
101 | # |
|
|
102 | # elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
|
|
103 | # |
|
|
104 | # in src_install(). If your subdirectory is not named ${PN}, give the |
|
|
105 | # differing name as second argument. |
|
|
106 | # |
|
|
107 | # .SS |
|
|
108 | # pkg_postinst() / pkg_postrm() usage: |
|
|
109 | # |
|
|
110 | # After that you need to recreate the start-up file of Emacs after emerging |
|
|
111 | # and unmerging by using |
|
|
112 | # |
|
|
113 | # pkg_postinst() { |
|
|
114 | # elisp-site-regen |
|
|
115 | # } |
|
|
116 | # |
|
|
117 | # pkg_postrm() { |
|
|
118 | # elisp-site-regen |
|
|
119 | # } |
|
|
120 | # |
|
|
121 | # When having optional Emacs support, you should prepend "use emacs &&" to |
|
|
122 | # above calls of elisp-site-regen(). Don't use "has_version virtual/emacs"! |
|
|
123 | # When unmerging the state of the emacs USE flag is taken from the package |
|
|
124 | # database and not from the environment, so it is no problem when you unset |
|
|
125 | # USE=emacs between merge and unmerge of a package. |
|
|
126 | # |
|
|
127 | # .SS |
|
|
128 | # Miscellaneous functions: |
|
|
129 | # |
|
|
130 | # elisp-emacs-version() outputs the version of the currently active Emacs. |
| 10 | |
131 | |
| 11 | INHERITED="$INHERITED $ECLASS" |
132 | # @ECLASS-VARIABLE: SITELISP |
| 12 | |
133 | # @DESCRIPTION: |
|
|
134 | # Directory where packages install Emacs Lisp files. |
| 13 | SITELISP=/usr/share/emacs/site-lisp |
135 | SITELISP=/usr/share/emacs/site-lisp |
| 14 | |
136 | |
|
|
137 | # @ECLASS-VARIABLE: SITEETC |
|
|
138 | # @DESCRIPTION: |
|
|
139 | # Directory where packages install miscellaneous (not Lisp) files. |
|
|
140 | SITEETC=/usr/share/emacs/etc |
|
|
141 | |
|
|
142 | # @ECLASS-VARIABLE: EMACS |
|
|
143 | # @DESCRIPTION: |
|
|
144 | # Path of Emacs executable. |
|
|
145 | EMACS=/usr/bin/emacs |
|
|
146 | |
|
|
147 | # @ECLASS-VARIABLE: EMACSFLAGS |
|
|
148 | # @DESCRIPTION: |
|
|
149 | # Flags for executing Emacs in batch mode. |
|
|
150 | # These work for Emacs versions 18-23, so don't change them. |
|
|
151 | EMACSFLAGS="-batch -q --no-site-file" |
|
|
152 | |
|
|
153 | # @ECLASS-VARIABLE: BYTECOMPFLAGS |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # Emacs flags used for byte-compilation in elisp-compile(). |
|
|
156 | BYTECOMPFLAGS="-L ." |
|
|
157 | |
|
|
158 | # @FUNCTION: elisp-compile |
|
|
159 | # @USAGE: <list of elisp files> |
|
|
160 | # @DESCRIPTION: |
|
|
161 | # Byte-compile Emacs Lisp files. |
|
|
162 | # |
|
|
163 | # This function uses GNU Emacs to byte-compile all ".el" specified by its |
|
|
164 | # arguments. The resulting byte-code (".elc") files are placed in the same |
|
|
165 | # directory as their corresponding source file. |
|
|
166 | # |
|
|
167 | # The current directory is added to the load-path. This will ensure that |
|
|
168 | # interdependent Emacs Lisp files are visible between themselves, in case |
|
|
169 | # they require or load one another. |
|
|
170 | |
| 15 | elisp-compile() { |
171 | elisp-compile() { |
| 16 | /usr/bin/emacs --batch -f batch-byte-compile --no-site-file --no-init-file $* |
172 | ebegin "Compiling GNU Emacs Elisp files" |
|
|
173 | ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} -f batch-byte-compile "$@" |
|
|
174 | eend $? "elisp-compile: batch-byte-compile failed" |
| 17 | } |
175 | } |
|
|
176 | |
|
|
177 | # #FUNCTION: elisp-comp |
|
|
178 | # #USAGE: <list of elisp files> |
|
|
179 | # #DESCRIPTION: |
|
|
180 | # Byte-compile interdependent Emacs Lisp files. |
|
|
181 | # THIS FUNCTION IS DEPRECATED. |
|
|
182 | # |
|
|
183 | # This function byte-compiles all ".el" files which are part of its |
|
|
184 | # arguments, using GNU Emacs, and puts the resulting ".elc" files into the |
|
|
185 | # current directory, so disregarding the original directories used in ".el" |
|
|
186 | # arguments. |
|
|
187 | # |
|
|
188 | # This function manages in such a way that all Emacs Lisp files to be |
|
|
189 | # compiled are made visible between themselves, in the event they require or |
|
|
190 | # load one another. |
|
|
191 | |
|
|
192 | elisp-comp() { |
|
|
193 | # Copyright 1995 Free Software Foundation, Inc. |
|
|
194 | # François Pinard <pinard@iro.umontreal.ca>, 1995. |
|
|
195 | # Originally taken from GNU autotools. |
|
|
196 | |
|
|
197 | ewarn "Function elisp-comp is deprecated and may be removed in future." |
|
|
198 | ewarn "Please use function elisp-compile instead, or report a bug about" |
|
|
199 | ewarn "${CATEGORY}/${PF} at <http://bugs.gentoo.org/>." |
|
|
200 | echo |
|
|
201 | |
|
|
202 | [ $# -gt 0 ] || return 1 |
|
|
203 | |
|
|
204 | ebegin "Compiling GNU Emacs Elisp files" |
|
|
205 | |
|
|
206 | local tempdir=elc.$$ |
|
|
207 | mkdir ${tempdir} |
|
|
208 | cp "$@" ${tempdir} |
|
|
209 | pushd ${tempdir} |
|
|
210 | |
|
|
211 | echo "(add-to-list 'load-path \"../\")" > script |
|
|
212 | ${EMACS} ${EMACSFLAGS} -l script -f batch-byte-compile *.el |
|
|
213 | local ret=$? |
|
|
214 | mv *.elc .. |
|
|
215 | |
|
|
216 | popd |
|
|
217 | rm -fr ${tempdir} |
|
|
218 | |
|
|
219 | eend ${ret} "elisp-comp: batch-byte-compile failed" |
|
|
220 | } |
|
|
221 | |
|
|
222 | # @FUNCTION: elisp-emacs-version |
|
|
223 | # @DESCRIPTION: |
|
|
224 | # Output version of currently active Emacs. |
|
|
225 | |
|
|
226 | elisp-emacs-version() { |
|
|
227 | # The following will work for at least versions 18-23. |
|
|
228 | echo "(princ emacs-version)" >"${T}"/emacs-version.el |
|
|
229 | ${EMACS} ${EMACSFLAGS} -l "${T}"/emacs-version.el |
|
|
230 | rm -f "${T}"/emacs-version.el |
|
|
231 | } |
|
|
232 | |
|
|
233 | # @FUNCTION: elisp-make-autoload-file |
|
|
234 | # @USAGE: [output file] [list of directories] |
|
|
235 | # @DESCRIPTION: |
|
|
236 | # Generate a file with autoload definitions for the lisp functions. |
|
|
237 | |
|
|
238 | elisp-make-autoload-file() { |
|
|
239 | local f="${1:-${PN}-autoloads.el}" |
|
|
240 | shift |
|
|
241 | ebegin "Generating autoload file for GNU Emacs" |
|
|
242 | |
|
|
243 | sed 's/^FF/\f/' >"${f}" <<-EOF |
|
|
244 | ;;; ${f##*/} --- autoloads for ${P} |
|
|
245 | |
|
|
246 | ;;; Commentary: |
|
|
247 | ;; Automatically generated by elisp-common.eclass |
|
|
248 | ;; DO NOT EDIT THIS FILE |
|
|
249 | |
|
|
250 | ;;; Code: |
|
|
251 | FF |
|
|
252 | ;; Local Variables: |
|
|
253 | ;; version-control: never |
|
|
254 | ;; no-byte-compile: t |
|
|
255 | ;; no-update-autoloads: t |
|
|
256 | ;; End: |
|
|
257 | ;;; ${f##*/} ends here |
|
|
258 | EOF |
|
|
259 | |
|
|
260 | ${EMACS} ${EMACSFLAGS} \ |
|
|
261 | --eval "(setq make-backup-files nil)" \ |
|
|
262 | --eval "(setq generated-autoload-file (expand-file-name \"${f}\"))" \ |
|
|
263 | -f batch-update-autoloads "${@-.}" |
|
|
264 | |
|
|
265 | eend $? "elisp-make-autoload-file: batch-update-autoloads failed" |
|
|
266 | } |
|
|
267 | |
|
|
268 | # @FUNCTION: elisp-install |
|
|
269 | # @USAGE: <subdirectory> <list of files> |
|
|
270 | # @DESCRIPTION: |
|
|
271 | # Install files in SITELISP directory. |
| 18 | |
272 | |
| 19 | elisp-install() { |
273 | elisp-install() { |
| 20 | local subdir=$1 |
274 | local subdir="$1" |
| 21 | dodir ${SITELISP}/${subdir} |
|
|
| 22 | insinto ${SITELISP}/${subdir} |
|
|
| 23 | shift |
275 | shift |
|
|
276 | ebegin "Installing Elisp files for GNU Emacs support" |
|
|
277 | ( # subshell to avoid pollution of calling environment |
|
|
278 | insinto "${SITELISP}/${subdir}" |
| 24 | doins $@ |
279 | doins "$@" |
|
|
280 | ) |
|
|
281 | eend $? "elisp-install: doins failed" |
| 25 | } |
282 | } |
|
|
283 | |
|
|
284 | # @FUNCTION: elisp-site-file-install |
|
|
285 | # @USAGE: <site-init file> [subdirectory] |
|
|
286 | # @DESCRIPTION: |
|
|
287 | # Install Emacs site-init file in SITELISP directory. |
| 26 | |
288 | |
| 27 | elisp-site-file-install() { |
289 | elisp-site-file-install() { |
| 28 | local sitefile=$1 my_pn=${2:-${PN}} |
290 | local sf="${T}/${1##*/}" my_pn="${2:-${PN}}" ret |
| 29 | pushd ${S} |
291 | ebegin "Installing site initialisation file for GNU Emacs" |
| 30 | cp ${sitefile} ${T} |
292 | cp "$1" "${sf}" |
| 31 | sed -i "s:@SITELISP@:${SITELISP}/${my_pn}:g" ${T}/$(basename ${sitefile}) |
293 | sed -i -e "s:@SITELISP@:${SITELISP}/${my_pn}:g" \ |
| 32 | insinto ${SITELISP} |
294 | -e "s:@SITEETC@:${SITEETC}/${my_pn}:g;\$q" "${sf}" |
| 33 | doins ${T}/$(basename ${sitefile}) || die "failed to install site file" |
295 | ( # subshell to avoid pollution of calling environment |
| 34 | popd |
296 | insinto "${SITELISP}/site-gentoo.d" |
|
|
297 | doins "${sf}" |
|
|
298 | ) |
|
|
299 | ret=$? |
|
|
300 | rm -f "${sf}" |
|
|
301 | eend ${ret} "elisp-site-file-install: doins failed" |
| 35 | } |
302 | } |
|
|
303 | |
|
|
304 | # @FUNCTION: elisp-site-regen |
|
|
305 | # @DESCRIPTION: |
|
|
306 | # Regenerate the site-gentoo.el file, based on packages' site initialisation |
|
|
307 | # files in the /usr/share/emacs/site-lisp/site-gentoo.d/ directory. |
|
|
308 | # |
|
|
309 | # Note: Before December 2007, site initialisation files were installed in |
|
|
310 | # /usr/share/emacs/site-lisp/. For backwards compatibility, this location is |
|
|
311 | # still supported when generating site-gentoo.el. |
| 36 | |
312 | |
| 37 | elisp-site-regen() { |
313 | elisp-site-regen() { |
|
|
314 | local i sf line firstrun obsolete |
|
|
315 | local -a sflist |
|
|
316 | |
|
|
317 | if [ ! -d "${ROOT}${SITELISP}" ]; then |
|
|
318 | eerror "elisp-site-regen: Directory ${SITELISP} does not exist" |
|
|
319 | return 1 |
|
|
320 | fi |
|
|
321 | |
|
|
322 | if [ ! -d "${T}" ]; then |
|
|
323 | eerror "elisp-site-regen: Temporary directory ${T} does not exist" |
|
|
324 | return 1 |
|
|
325 | fi |
|
|
326 | |
|
|
327 | [ -e "${ROOT}${SITELISP}"/site-gentoo.el ] || firstrun=t |
|
|
328 | |
|
|
329 | if [ "${firstrun}" ] && [ ! -e "${ROOT}${SITELISP}"/site-start.el ]; then |
|
|
330 | einfo "Creating default ${SITELISP}/site-start.el ..." |
|
|
331 | cat <<-EOF >"${T}"/site-start.el |
|
|
332 | ;;; site-start.el |
|
|
333 | |
|
|
334 | ;;; Commentary: |
|
|
335 | ;; This default site startup file is installed by elisp-common.eclass. |
|
|
336 | ;; You may replace this file by your own site initialisation, or even |
|
|
337 | ;; remove it completely; it will not be recreated. |
|
|
338 | |
|
|
339 | ;;; Code: |
|
|
340 | ;; Load site initialisation for Gentoo-installed packages. |
|
|
341 | (require 'site-gentoo) |
|
|
342 | |
|
|
343 | ;;; site-start.el ends here |
|
|
344 | EOF |
|
|
345 | fi |
|
|
346 | |
| 38 | einfo "Regenerating ${SITELISP}/site-gentoo.el ..." |
347 | einfon "Regenerating ${SITELISP}/site-gentoo.el ..." |
| 39 | einfo "" |
|
|
| 40 | cat <<EOF >${SITELISP}/site-gentoo.el |
|
|
| 41 | ;;; DO NOT EDIT THIS FILE -- IT IS GENERATED AUTOMATICALLY BY PORTAGE |
|
|
| 42 | ;;; ----------------------------------------------------------------- |
|
|
| 43 | |
348 | |
| 44 | EOF |
349 | # remove any auxiliary file (from previous run) |
| 45 | ls ${SITELISP}/[0-9][0-9]*-gentoo.el |sort -n | \ |
350 | rm -f "${ROOT}${SITELISP}"/00site-gentoo.el |
| 46 | while read sf |
351 | |
|
|
352 | # set nullglob option, there may be a directory without matching files |
|
|
353 | local old_shopts=$(shopt -p nullglob) |
|
|
354 | shopt -s nullglob |
|
|
355 | |
|
|
356 | for sf in "${ROOT}${SITELISP}"/[0-9][0-9]*-gentoo.el \ |
|
|
357 | "${ROOT}${SITELISP}"/site-gentoo.d/[0-9][0-9]*.el |
| 47 | do |
358 | do |
| 48 | einfo " Adding $(basename $sf) ..." |
359 | [ -r "${sf}" ] || continue |
| 49 | # Great for debugging, too noisy and slow for users though |
360 | # sort files by their basename. straight insertion sort. |
| 50 | # echo "(message \"Loading $sf ...\")" >>${SITELISP}/site-start.el |
361 | for ((i=${#sflist[@]}; i>0; i--)); do |
| 51 | cat $sf >>${SITELISP}/site-gentoo.el |
362 | [[ ${sf##*/} < ${sflist[i-1]##*/} ]] || break |
|
|
363 | sflist[i]=${sflist[i-1]} |
|
|
364 | done |
|
|
365 | sflist[i]=${sf} |
|
|
366 | # set a flag if there are obsolete files |
|
|
367 | [ "${sf%/*}" = "${ROOT}${SITELISP}" ] && obsolete=t |
| 52 | done |
368 | done |
| 53 | while read line; do einfo "${line}"; done <<EOF |
|
|
| 54 | |
369 | |
| 55 | All site initialization for Gentoo-installed packages is now added to |
370 | eval "${old_shopts}" |
| 56 | /usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is no longer |
|
|
| 57 | managed by Gentoo. You are responsible for all maintenance of |
|
|
| 58 | site-start.el if there is such a file. |
|
|
| 59 | |
371 | |
| 60 | In order for this site initialization to be loaded for all users |
372 | cat <<-EOF >"${T}"/site-gentoo.el |
| 61 | automatically, as was done previously, you can add a line like this: |
373 | ;;; site-gentoo.el --- site initialisation for Gentoo-installed packages |
| 62 | |
374 | |
| 63 | (load "/usr/share/emacs/site-lisp/site-gentoo") |
375 | ;;; Commentary: |
|
|
376 | ;; Automatically generated by elisp-common.eclass |
|
|
377 | ;; DO NOT EDIT THIS FILE |
| 64 | |
378 | |
| 65 | to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line |
379 | ;;; Code: |
| 66 | can be added by individual users to their initialization files, or for |
|
|
| 67 | greater flexibility, users can select which of the package-specific |
|
|
| 68 | initialization files in /usr/share/emacs/site-lisp to load. |
|
|
| 69 | EOF |
380 | EOF |
| 70 | echo |
381 | # Use sed instead of cat here, since files may miss a trailing newline. |
| 71 | } |
382 | sed '$q' "${sflist[@]}" </dev/null >>"${T}"/site-gentoo.el |
|
|
383 | cat <<-EOF >>"${T}"/site-gentoo.el |
| 72 | |
384 | |
| 73 | # The following Emacs Lisp compilation routine is taken from GNU |
385 | (provide 'site-gentoo) |
| 74 | # autotools. |
|
|
| 75 | |
386 | |
| 76 | elisp-comp() { |
387 | ;; Local Variables: |
| 77 | # Copyright 1995 Free Software Foundation, Inc. |
388 | ;; no-byte-compile: t |
| 78 | # François Pinard <pinard@iro.umontreal.ca>, 1995. |
389 | ;; End: |
| 79 | # |
390 | ;;; site-gentoo.el ends here |
| 80 | # This program is free software; you can redistribute it and/or modify |
391 | EOF |
| 81 | # it under the terms of the GNU General Public License as published by |
|
|
| 82 | # the Free Software Foundation; either version 2, or (at your option) |
|
|
| 83 | # any later version. |
|
|
| 84 | # |
|
|
| 85 | # This program is distributed in the hope that it will be useful, |
|
|
| 86 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
| 87 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
| 88 | # GNU General Public License for more details. |
|
|
| 89 | # |
|
|
| 90 | # You should have received a copy of the GNU General Public License |
|
|
| 91 | # along with this program; if not, write to the Free Software |
|
|
| 92 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
|
| 93 | |
392 | |
| 94 | # As a special exception to the GNU General Public License, if you |
393 | if cmp -s "${ROOT}${SITELISP}"/site-gentoo.el "${T}"/site-gentoo.el |
| 95 | # distribute this file as part of a program that contains a |
394 | then |
| 96 | # configuration script generated by Autoconf, you may include it under |
395 | # This prevents outputting unnecessary text when there |
| 97 | # the same distribution terms that you use for the rest of that program. |
396 | # was actually no change. |
| 98 | |
397 | # A case is a remerge where we have doubled output. |
| 99 | # This script byte-compiles all `.el' files which are part of its |
398 | echo " no changes." |
| 100 | # arguments, using GNU Emacs, and put the resulting `.elc' files into |
|
|
| 101 | # the current directory, so disregarding the original directories used |
|
|
| 102 | # in `.el' arguments. |
|
|
| 103 | # |
|
|
| 104 | # This script manages in such a way that all Emacs LISP files to |
|
|
| 105 | # be compiled are made visible between themselves, in the event |
|
|
| 106 | # they require or load-library one another. |
|
|
| 107 | |
|
|
| 108 | if test $# = 0; then |
|
|
| 109 | echo 1>&2 "No files given to $0" |
|
|
| 110 | exit 1 |
|
|
| 111 | else |
399 | else |
| 112 | if test -z "$EMACS" || test "$EMACS" = "t"; then |
400 | mv "${T}"/site-gentoo.el "${ROOT}${SITELISP}"/site-gentoo.el |
| 113 | # Value of "t" means we are running in a shell under Emacs. |
401 | [ -f "${T}"/site-start.el ] \ |
| 114 | # Just assume Emacs is called "emacs". |
402 | && [ ! -e "${ROOT}${SITELISP}"/site-start.el ] \ |
| 115 | EMACS=emacs |
403 | && mv "${T}"/site-start.el "${ROOT}${SITELISP}"/site-start.el |
|
|
404 | echo |
|
|
405 | einfo "... ${#sflist[@]} site initialisation file(s) included." |
| 116 | fi |
406 | fi |
| 117 | |
407 | |
| 118 | tempdir=elc.$$ |
408 | if [ "${firstrun}" ]; then |
| 119 | mkdir $tempdir |
409 | echo |
| 120 | cp $* $tempdir |
410 | while read line; do einfo "${line:- }"; done <<-EOF |
| 121 | cd $tempdir |
411 | All site initialisation for Gentoo-installed packages is added to |
|
|
412 | /usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is not |
|
|
413 | managed by Gentoo. You are responsible for all maintenance of |
|
|
414 | site-start.el if there is such a file. |
| 122 | |
415 | |
| 123 | echo "(add-to-list 'load-path \"../\")" > script |
416 | In order for this site initialisation to be loaded for all users |
| 124 | $EMACS -batch -q --no-site-file --no-init-file -l script -f batch-byte-compile *.el |
417 | automatically, you can add a line like this: |
| 125 | mv *.elc .. |
|
|
| 126 | |
418 | |
| 127 | cd .. |
419 | (require 'site-gentoo) |
| 128 | rm -fr $tempdir |
|
|
| 129 | fi |
|
|
| 130 | } |
|
|
| 131 | |
420 | |
| 132 | # Local Variables: *** |
421 | to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line |
| 133 | # mode: shell-script *** |
422 | can be added by individual users to their initialisation files, or, |
| 134 | # tab-width: 4 *** |
423 | for greater flexibility, users can load individual package-specific |
| 135 | # indent-tabs-mode: t *** |
424 | initialisation files from /usr/share/emacs/site-lisp/site-gentoo.d/. |
| 136 | # End: *** |
425 | EOF |
|
|
426 | echo |
|
|
427 | fi |
| 137 | |
428 | |
|
|
429 | if [ "${obsolete}" ]; then |
|
|
430 | echo |
|
|
431 | while read line; do ewarn "${line}"; done <<-EOF |
|
|
432 | Site-initialisation files of Emacs packages are now installed in |
|
|
433 | /usr/share/emacs/site-lisp/site-gentoo.d/. We strongly recommend |
|
|
434 | that you use app-admin/emacs-updater to rebuild the installed |
|
|
435 | Emacs packages. |
|
|
436 | EOF |
|
|
437 | fi |
|
|
438 | |
|
|
439 | # cleanup |
|
|
440 | rm -f "${T}"/site-{gentoo,start}.el |
|
|
441 | |
|
|
442 | return 0 |
|
|
443 | } |