| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2008 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.29 2007/10/14 22:12:30 ulm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.41 2008/07/01 22:10:06 ulm Exp $ |
| 4 | # |
4 | # |
| 5 | # Copyright 2007 Christian Faulhammer <opfer@gentoo.org> |
|
|
| 6 | # Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> |
5 | # Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> |
|
|
6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
| 7 | # Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org> |
7 | # Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org> |
| 8 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
8 | # Copyright 2007-2008 Christian Faulhammer <opfer@gentoo.org> |
| 9 | # Copyright 2007 Ulrich Mueller <ulm@gentoo.org> |
9 | # Copyright 2007-2008 Ulrich Müller <ulm@gentoo.org> |
| 10 | # |
10 | # |
| 11 | # @ECLASS: elisp-common.eclass |
11 | # @ECLASS: elisp-common.eclass |
| 12 | # @MAINTAINER: |
12 | # @MAINTAINER: |
| 13 | # Feel free to contact the Emacs team through <emacs@gentoo.org> if you have |
13 | # Feel free to contact the Emacs team through <emacs@gentoo.org> if you have |
| 14 | # problems, suggestions or questions. |
14 | # problems, suggestions or questions. |
| … | |
… | |
| 127 | # |
127 | # |
| 128 | # elisp-emacs-version() outputs the version of the currently active Emacs. |
128 | # elisp-emacs-version() outputs the version of the currently active Emacs. |
| 129 | |
129 | |
| 130 | # @ECLASS-VARIABLE: SITELISP |
130 | # @ECLASS-VARIABLE: SITELISP |
| 131 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 132 | # Directory where Emacs Lisp files are installed. |
132 | # Directory where packages install Emacs Lisp files. |
| 133 | SITELISP=/usr/share/emacs/site-lisp |
133 | SITELISP=/usr/share/emacs/site-lisp |
|
|
134 | |
|
|
135 | # Directory where packages install miscellaneous (not Lisp) files. |
|
|
136 | SITEETC=/usr/share/emacs/etc |
| 134 | |
137 | |
| 135 | # @ECLASS-VARIABLE: SITEFILE |
138 | # @ECLASS-VARIABLE: SITEFILE |
| 136 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 137 | # Name of package's site-init file. |
140 | # Name of package's site-init file. |
| 138 | SITEFILE=50${PN}-gentoo.el |
141 | SITEFILE=50${PN}-gentoo.el |
| 139 | |
142 | |
| 140 | EMACS=/usr/bin/emacs |
143 | EMACS=/usr/bin/emacs |
| 141 | # The following works for Emacs versions 18--23, don't change it. |
144 | # The following works for Emacs versions 18-23, don't change it. |
| 142 | EMACS_BATCH_CLEAN="${EMACS} -batch -q --no-site-file" |
145 | EMACSFLAGS="-batch -q --no-site-file" |
| 143 | |
146 | |
| 144 | # @FUNCTION: elisp-compile |
147 | # @FUNCTION: elisp-compile |
| 145 | # @USAGE: <list of elisp files> |
148 | # @USAGE: <list of elisp files> |
| 146 | # @DESCRIPTION: |
149 | # @DESCRIPTION: |
| 147 | # Byte-compile Emacs Lisp files. |
150 | # Byte-compile Emacs Lisp files. |
| 148 | |
151 | |
| 149 | elisp-compile() { |
152 | elisp-compile() { |
| 150 | einfo "Compiling GNU Emacs Elisp files ..." |
153 | ebegin "Compiling GNU Emacs Elisp files" |
| 151 | ${EMACS_BATCH_CLEAN} -f batch-byte-compile "$@" |
154 | ${EMACS} ${EMACSFLAGS} -f batch-byte-compile "$@" |
|
|
155 | eend $? "batch-byte-compile failed" |
|
|
156 | } |
|
|
157 | |
|
|
158 | # @FUNCTION: elisp-comp |
|
|
159 | # @USAGE: <list of elisp files> |
|
|
160 | # @DESCRIPTION: |
|
|
161 | # Byte-compile interdependent Emacs Lisp files. |
|
|
162 | # |
|
|
163 | # This function byte-compiles all ".el" files which are part of its |
|
|
164 | # arguments, using GNU Emacs, and puts the resulting ".elc" files into the |
|
|
165 | # current directory, so disregarding the original directories used in ".el" |
|
|
166 | # arguments. |
|
|
167 | # |
|
|
168 | # This function manages in such a way that all Emacs Lisp files to be |
|
|
169 | # compiled are made visible between themselves, in the event they require or |
|
|
170 | # load one another. |
|
|
171 | |
|
|
172 | elisp-comp() { |
|
|
173 | # Copyright 1995 Free Software Foundation, Inc. |
|
|
174 | # François Pinard <pinard@iro.umontreal.ca>, 1995. |
|
|
175 | # Originally taken from GNU autotools. |
|
|
176 | |
|
|
177 | [ $# -gt 0 ] || return 1 |
|
|
178 | |
|
|
179 | ebegin "Compiling GNU Emacs Elisp files" |
|
|
180 | |
|
|
181 | tempdir=elc.$$ |
|
|
182 | mkdir ${tempdir} |
|
|
183 | cp "$@" ${tempdir} |
|
|
184 | pushd ${tempdir} |
|
|
185 | |
|
|
186 | echo "(add-to-list 'load-path \"../\")" > script |
|
|
187 | ${EMACS} ${EMACSFLAGS} -l script -f batch-byte-compile *.el |
|
|
188 | local ret=$? |
|
|
189 | mv *.elc .. |
|
|
190 | |
|
|
191 | popd |
|
|
192 | rm -fr ${tempdir} |
|
|
193 | |
|
|
194 | eend ${ret} "batch-byte-compile failed" |
|
|
195 | return ${ret} |
| 152 | } |
196 | } |
| 153 | |
197 | |
| 154 | # @FUNCTION: elisp-emacs-version |
198 | # @FUNCTION: elisp-emacs-version |
| 155 | # @DESCRIPTION: |
199 | # @DESCRIPTION: |
| 156 | # Output version of currently active Emacs. |
200 | # Output version of currently active Emacs. |
| 157 | |
201 | |
| 158 | elisp-emacs-version() { |
202 | elisp-emacs-version() { |
| 159 | # The following will work for at least versions 18-23. |
203 | # The following will work for at least versions 18-23. |
| 160 | echo "(princ emacs-version)" >"${T}"/emacs-version.el |
204 | echo "(princ emacs-version)" >"${T}"/emacs-version.el |
| 161 | ${EMACS_BATCH_CLEAN} -l "${T}"/emacs-version.el |
205 | ${EMACS} ${EMACSFLAGS} -l "${T}"/emacs-version.el |
|
|
206 | rm -f "${T}"/emacs-version.el |
| 162 | } |
207 | } |
| 163 | |
208 | |
| 164 | # @FUNCTION: elisp-make-autoload-file |
209 | # @FUNCTION: elisp-make-autoload-file |
| 165 | # @USAGE: [output file] [list of directories] |
210 | # @USAGE: [output file] [list of directories] |
| 166 | # @DESCRIPTION: |
211 | # @DESCRIPTION: |
| 167 | # Generate a file with autoload definitions for the lisp functions. |
212 | # Generate a file with autoload definitions for the lisp functions. |
| 168 | |
213 | |
| 169 | elisp-make-autoload-file() { |
214 | elisp-make-autoload-file() { |
| 170 | local f="${1:-${PN}-autoloads.el}" |
215 | local f="${1:-${PN}-autoloads.el}" |
| 171 | shift |
216 | shift |
| 172 | einfo "Generating autoload file for GNU Emacs ..." |
217 | ebegin "Generating autoload file for GNU Emacs" |
| 173 | |
218 | |
| 174 | sed 's/^FF/\f/' >"${f}" <<-EOF |
219 | sed 's/^FF/\f/' >"${f}" <<-EOF |
| 175 | ;;; ${f##*/} --- autoloads for ${P} |
220 | ;;; ${f##*/} --- autoloads for ${P} |
| 176 | |
221 | |
| 177 | ;;; Commentary: |
222 | ;;; Commentary: |
| … | |
… | |
| 186 | ;; no-update-autoloads: t |
231 | ;; no-update-autoloads: t |
| 187 | ;; End: |
232 | ;; End: |
| 188 | ;;; ${f##*/} ends here |
233 | ;;; ${f##*/} ends here |
| 189 | EOF |
234 | EOF |
| 190 | |
235 | |
| 191 | ${EMACS_BATCH_CLEAN} \ |
236 | ${EMACS} ${EMACSFLAGS} \ |
| 192 | --eval "(setq make-backup-files nil)" \ |
237 | --eval "(setq make-backup-files nil)" \ |
| 193 | --eval "(setq generated-autoload-file (expand-file-name \"${f}\"))" \ |
238 | --eval "(setq generated-autoload-file (expand-file-name \"${f}\"))" \ |
| 194 | -f batch-update-autoloads "${@-.}" |
239 | -f batch-update-autoloads "${@-.}" |
|
|
240 | |
|
|
241 | eend $? "batch-update-autoloads failed" |
| 195 | } |
242 | } |
| 196 | |
243 | |
| 197 | # @FUNCTION: elisp-install |
244 | # @FUNCTION: elisp-install |
| 198 | # @USAGE: <subdirectory> <list of files> |
245 | # @USAGE: <subdirectory> <list of files> |
| 199 | # @DESCRIPTION: |
246 | # @DESCRIPTION: |
| 200 | # Install files in SITELISP directory. |
247 | # Install files in SITELISP directory. |
| 201 | |
248 | |
| 202 | elisp-install() { |
249 | elisp-install() { |
| 203 | local subdir="$1" |
250 | local subdir="$1" |
| 204 | shift |
251 | shift |
| 205 | einfo "Installing Elisp files for GNU Emacs support ..." |
252 | ebegin "Installing Elisp files for GNU Emacs support" |
| 206 | ( # subshell to avoid pollution of calling environment |
253 | ( # subshell to avoid pollution of calling environment |
| 207 | insinto "${SITELISP}/${subdir}" |
254 | insinto "${SITELISP}/${subdir}" |
| 208 | doins "$@" |
255 | doins "$@" |
| 209 | ) |
256 | ) |
|
|
257 | eend $? "doins failed" |
| 210 | } |
258 | } |
| 211 | |
259 | |
| 212 | # @FUNCTION: elisp-site-file-install |
260 | # @FUNCTION: elisp-site-file-install |
| 213 | # @USAGE: <site-init file> [subdirectory] |
261 | # @USAGE: <site-init file> [subdirectory] |
| 214 | # @DESCRIPTION: |
262 | # @DESCRIPTION: |
| 215 | # Install Emacs site-init file in SITELISP directory. |
263 | # Install Emacs site-init file in SITELISP directory. |
| 216 | |
264 | |
| 217 | elisp-site-file-install() { |
265 | elisp-site-file-install() { |
| 218 | local sf="$1" my_pn="${2:-${PN}}" |
266 | local sf="${T}/${1##*/}" my_pn="${2:-${PN}}" ret |
| 219 | einfo "Installing site initialisation file for GNU Emacs ..." |
267 | ebegin "Installing site initialisation file for GNU Emacs" |
| 220 | cp "${sf}" "${T}" |
268 | cp "$1" "${sf}" |
| 221 | sed -i "s:@SITELISP@:${SITELISP}/${my_pn}:g" "${T}/$(basename "${sf}")" |
269 | sed -i -e "s:@SITELISP@:${SITELISP}/${my_pn}:g" \ |
|
|
270 | -e "s:@SITEETC@:${SITEETC}/${my_pn}:g" "${sf}" |
| 222 | ( # subshell to avoid pollution of calling environment |
271 | ( # subshell to avoid pollution of calling environment |
| 223 | insinto "${SITELISP}" |
272 | insinto "${SITELISP}/site-gentoo.d" |
| 224 | doins "${T}/$(basename "${sf}")" |
273 | doins "${sf}" |
| 225 | ) |
274 | ) |
|
|
275 | ret=$? |
|
|
276 | rm -f "${sf}" |
|
|
277 | eend ${ret} "doins failed" |
| 226 | } |
278 | } |
| 227 | |
279 | |
| 228 | # @FUNCTION: elisp-site-regen |
280 | # @FUNCTION: elisp-site-regen |
| 229 | # @DESCRIPTION: |
281 | # @DESCRIPTION: |
| 230 | # Regenerate site-gentoo.el file. |
282 | # Regenerate site-gentoo.el file. The old location for site initialisation |
|
|
283 | # files of packages was /usr/share/emacs/site-lisp/. In December 2007 this |
|
|
284 | # has been changed to /usr/share/emacs/site-lisp/site-gentoo.d/. Remerge of |
|
|
285 | # packages with Emacs support is enough, the old location is still supported |
|
|
286 | # when generating the start-up file. |
| 231 | |
287 | |
| 232 | elisp-site-regen() { |
288 | elisp-site-regen() { |
| 233 | local sflist sf line |
289 | local i sf line obsolete |
|
|
290 | local -a sflist |
|
|
291 | # Work around Paludis borkage: variable T is empty in pkg_postrm |
|
|
292 | local tmpdir=${T:-$(mktemp -d)} |
|
|
293 | |
|
|
294 | if [ ! -d "${ROOT}${SITELISP}" ]; then |
|
|
295 | eerror "Directory ${SITELISP} does not exist" |
|
|
296 | return 1 |
|
|
297 | fi |
| 234 | |
298 | |
| 235 | if [ ! -e "${ROOT}${SITELISP}"/site-gentoo.el ] \ |
299 | if [ ! -e "${ROOT}${SITELISP}"/site-gentoo.el ] \ |
| 236 | && [ ! -e "${ROOT}${SITELISP}"/site-start.el ]; then |
300 | && [ ! -e "${ROOT}${SITELISP}"/site-start.el ]; then |
| 237 | einfo "Creating default ${SITELISP}/site-start.el ..." |
301 | einfo "Creating default ${SITELISP}/site-start.el ..." |
| 238 | cat <<-EOF >"${T}"/site-start.el |
302 | cat <<-EOF >"${tmpdir}"/site-start.el |
| 239 | ;;; site-start.el |
303 | ;;; site-start.el |
| 240 | |
304 | |
| 241 | ;;; Commentary: |
305 | ;;; Commentary: |
| 242 | ;; This default site startup file is installed by elisp-common.eclass. |
306 | ;; This default site startup file is installed by elisp-common.eclass. |
| 243 | ;; You may replace this file by your own site initialisation, or even |
307 | ;; You may replace this file by your own site initialisation, or even |
| … | |
… | |
| 250 | ;;; site-start.el ends here |
314 | ;;; site-start.el ends here |
| 251 | EOF |
315 | EOF |
| 252 | fi |
316 | fi |
| 253 | |
317 | |
| 254 | einfon "Regenerating ${SITELISP}/site-gentoo.el ..." |
318 | einfon "Regenerating ${SITELISP}/site-gentoo.el ..." |
|
|
319 | |
|
|
320 | # remove any auxiliary file (from previous run) |
|
|
321 | rm -f "${ROOT}${SITELISP}"/00site-gentoo.el |
|
|
322 | |
|
|
323 | # set nullglob option, there may be a directory without matching files |
|
|
324 | local old_shopts=$(shopt -p nullglob) |
|
|
325 | shopt -s nullglob |
|
|
326 | |
|
|
327 | for sf in "${ROOT}${SITELISP}"/[0-9][0-9]*-gentoo.el \ |
|
|
328 | "${ROOT}${SITELISP}"/site-gentoo.d/[0-9][0-9]*.el |
|
|
329 | do |
|
|
330 | [ -r "${sf}" ] || continue |
|
|
331 | # sort files by their basename. straight insertion sort. |
|
|
332 | for ((i=${#sflist[@]}; i>0; i--)); do |
|
|
333 | [[ ${sf##*/} < ${sflist[i-1]##*/} ]] || break |
|
|
334 | sflist[i]=${sflist[i-1]} |
|
|
335 | done |
|
|
336 | sflist[i]=${sf} |
|
|
337 | # set a flag if there are obsolete files |
|
|
338 | [ "${sf%/*}" = "${ROOT}${SITELISP}" ] && obsolete=t |
|
|
339 | done |
|
|
340 | |
|
|
341 | eval "${old_shopts}" |
|
|
342 | |
| 255 | cat <<-EOF >"${T}"/site-gentoo.el |
343 | cat <<-EOF >"${tmpdir}"/site-gentoo.el |
| 256 | ;;; site-gentoo.el --- site initialisation for Gentoo-installed packages |
344 | ;;; site-gentoo.el --- site initialisation for Gentoo-installed packages |
| 257 | |
345 | |
| 258 | ;;; Commentary: |
346 | ;;; Commentary: |
| 259 | ;; Automatically generated by elisp-common.eclass |
347 | ;; Automatically generated by elisp-common.eclass |
| 260 | ;; DO NOT EDIT THIS FILE |
348 | ;; DO NOT EDIT THIS FILE |
| 261 | |
349 | |
| 262 | ;;; Code: |
350 | ;;; Code: |
| 263 | EOF |
351 | EOF |
| 264 | |
352 | cat "${sflist[@]}" </dev/null >>"${tmpdir}"/site-gentoo.el |
| 265 | for sf in "${ROOT}${SITELISP}"/[0-9][0-9]*-gentoo.el |
|
|
| 266 | do |
|
|
| 267 | [ -r "${sf}" ] || continue |
|
|
| 268 | sflist="${sflist} $(basename "${sf}")" |
|
|
| 269 | cat "${sf}" >>"${T}"/site-gentoo.el |
|
|
| 270 | done |
|
|
| 271 | |
|
|
| 272 | cat <<-EOF >>"${T}"/site-gentoo.el |
353 | cat <<-EOF >>"${tmpdir}"/site-gentoo.el |
| 273 | |
354 | |
| 274 | (provide 'site-gentoo) |
355 | (provide 'site-gentoo) |
| 275 | |
356 | |
| 276 | ;; Local Variables: |
357 | ;; Local Variables: |
| 277 | ;; no-byte-compile: t |
358 | ;; no-byte-compile: t |
| 278 | ;; End: |
359 | ;; End: |
| 279 | ;;; site-gentoo.el ends here |
360 | ;;; site-gentoo.el ends here |
| 280 | EOF |
361 | EOF |
| 281 | |
362 | |
| 282 | if cmp -s "${ROOT}${SITELISP}"/site-gentoo.el "${T}"/site-gentoo.el; then |
363 | if cmp -s "${ROOT}${SITELISP}"/site-gentoo.el "${tmpdir}"/site-gentoo.el |
|
|
364 | then |
| 283 | # This prevents outputting unnecessary text when there |
365 | # This prevents outputting unnecessary text when there |
| 284 | # was actually no change. |
366 | # was actually no change. |
| 285 | # A case is a remerge where we have doubled output. |
367 | # A case is a remerge where we have doubled output. |
| 286 | echo " no changes." |
368 | echo " no changes." |
| 287 | else |
369 | else |
| 288 | mv "${T}"/site-gentoo.el "${ROOT}${SITELISP}"/site-gentoo.el |
370 | mv "${tmpdir}"/site-gentoo.el "${ROOT}${SITELISP}"/site-gentoo.el |
| 289 | [ -f "${T}"/site-start.el ] \ |
371 | [ -f "${tmpdir}"/site-start.el ] \ |
| 290 | && [ ! -e "${ROOT}${SITELISP}"/site-start.el ] \ |
372 | && [ ! -e "${ROOT}${SITELISP}"/site-start.el ] \ |
| 291 | && mv "${T}"/site-start.el "${ROOT}${SITELISP}"/site-start.el |
373 | && mv "${tmpdir}"/site-start.el "${ROOT}${SITELISP}"/site-start.el |
| 292 | echo; einfo |
374 | echo; einfo |
| 293 | for sf in ${sflist}; do |
375 | for sf in "${sflist[@]##*/}"; do |
| 294 | einfo " Adding ${sf} ..." |
376 | einfo " Adding ${sf} ..." |
| 295 | done |
377 | done |
|
|
378 | einfo "Regenerated ${SITELISP}/site-gentoo.el." |
|
|
379 | |
|
|
380 | echo |
| 296 | while read line; do einfo "${line}"; done <<EOF |
381 | while read line; do einfo "${line}"; done <<EOF |
| 297 | |
|
|
| 298 | All site initialisation for Gentoo-installed packages is added to |
382 | All site initialisation for Gentoo-installed packages is added to |
| 299 | /usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is no longer |
383 | /usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is no longer |
| 300 | managed by Gentoo. You are responsible for all maintenance of |
384 | managed by Gentoo. You are responsible for all maintenance of |
| 301 | site-start.el if there is such a file. |
385 | site-start.el if there is such a file. |
| 302 | |
386 | |
| 303 | In order for this site initialisation to be loaded for all users |
387 | In order for this site initialisation to be loaded for all users |
| 304 | automatically, you can add a line like this: |
388 | automatically, you can add a line like this: |
| 305 | |
389 | |
| 306 | (require 'site-gentoo) |
390 | (require 'site-gentoo) |
| 307 | |
391 | |
| 308 | to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line |
392 | to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line |
| 309 | can be added by individual users to their initialisation files, or for |
393 | can be added by individual users to their initialisation files, or, |
| 310 | greater flexibility, users can select which of the package-specific |
394 | for greater flexibility, users can load individual package-specific |
| 311 | initialisation files in /usr/share/emacs/site-lisp/ to load. |
395 | initialisation files from /usr/share/emacs/site-lisp/site-gentoo.d/. |
| 312 | EOF |
396 | EOF |
| 313 | echo |
397 | echo |
| 314 | fi |
398 | fi |
| 315 | } |
|
|
| 316 | |
399 | |
| 317 | # @FUNCTION: elisp-comp |
400 | if [ "${obsolete}" ]; then |
| 318 | # @USAGE: <list of elisp files> |
401 | while read line; do ewarn "${line}"; done <<-EOF |
| 319 | # @DESCRIPTION: |
402 | Site-initialisation files of Emacs packages are now installed in |
| 320 | # Byte-compile interdependent Emacs Lisp files. |
403 | /usr/share/emacs/site-lisp/site-gentoo.d/. We strongly recommend |
| 321 | # |
404 | that you use /usr/sbin/emacs-updater to rebuild the installed |
| 322 | # This function byte-compiles all ".el" files which are part of its |
405 | Emacs packages. |
| 323 | # arguments, using GNU Emacs, and puts the resulting ".elc" files into the |
406 | EOF |
| 324 | # current directory, so disregarding the original directories used in ".el" |
407 | echo |
| 325 | # arguments. |
|
|
| 326 | # |
|
|
| 327 | # This function manages in such a way that all Emacs Lisp files to be |
|
|
| 328 | # compiled are made visible between themselves, in the event they require or |
|
|
| 329 | # load one another. |
|
|
| 330 | |
408 | |
| 331 | elisp-comp() { |
409 | # Kludge for backwards compatibility: During pkg_postrm, old versions |
| 332 | # Copyright 1995 Free Software Foundation, Inc. |
410 | # of this eclass (saved in the VDB) won't find packages' site-init |
| 333 | # François Pinard <pinard@iro.umontreal.ca>, 1995. |
411 | # files in the new location. So we copy them to an auxiliary file |
| 334 | # Originally taken from GNU autotools. |
412 | # that is visible to old eclass versions. |
| 335 | |
413 | for sf in "${sflist[@]}"; do |
| 336 | test $# -gt 0 || return 1 |
414 | [ "${sf%/*}" = "${ROOT}${SITELISP}/site-gentoo.d" ] \ |
| 337 | |
415 | && cat "${sf}" >>"${ROOT}${SITELISP}"/00site-gentoo.el |
| 338 | if test -z "${EMACS}" || test "${EMACS}" = "t"; then |
416 | done |
| 339 | # Value of "t" means we are running in a shell under Emacs. |
|
|
| 340 | # Just assume Emacs is called "emacs". |
|
|
| 341 | EMACS=/usr/bin/emacs |
|
|
| 342 | fi |
417 | fi |
| 343 | einfo "Compiling GNU Emacs Elisp files ..." |
|
|
| 344 | |
418 | |
| 345 | tempdir=elc.$$ |
419 | # cleanup |
| 346 | mkdir ${tempdir} |
420 | rm -f "${tmpdir}"/site-{gentoo,start}.el |
| 347 | cp "$@" ${tempdir} |
|
|
| 348 | pushd ${tempdir} |
|
|
| 349 | |
|
|
| 350 | echo "(add-to-list 'load-path \"../\")" > script |
|
|
| 351 | ${EMACS_BATCH_CLEAN} -l script -f batch-byte-compile *.el |
|
|
| 352 | local ret=$? |
|
|
| 353 | mv *.elc .. |
|
|
| 354 | |
|
|
| 355 | popd |
|
|
| 356 | rm -fr ${tempdir} |
|
|
| 357 | return ${ret} |
|
|
| 358 | } |
421 | } |