| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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.1.1.1 2005/11/30 09:59:28 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.10 2005/05/03 09:20:13 usata Exp $ |
| 4 | # |
4 | # |
| 5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
| 6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
| 7 | # |
7 | # |
| 8 | # This is not an eclass, but it does provide emacs-related |
8 | # This is not an eclass, but it does provide emacs-related |
| 9 | # installation utilities. |
9 | # installation utilities. |
| 10 | |
10 | |
|
|
11 | ECLASS=elisp-common |
|
|
12 | INHERITED="$INHERITED $ECLASS" |
| 11 | |
13 | |
| 12 | SITELISP=/usr/share/emacs/site-lisp |
14 | SITELISP=/usr/share/emacs/site-lisp |
| 13 | |
15 | |
| 14 | elisp-compile() { |
16 | elisp-compile() { |
| 15 | /usr/bin/emacs --batch -f batch-byte-compile --no-site-file --no-init-file $* |
17 | /usr/bin/emacs --batch -f batch-byte-compile --no-site-file --no-init-file $* |
| … | |
… | |
| 72 | # The following Emacs Lisp compilation routine is taken from GNU |
74 | # The following Emacs Lisp compilation routine is taken from GNU |
| 73 | # autotools. |
75 | # autotools. |
| 74 | |
76 | |
| 75 | elisp-comp() { |
77 | elisp-comp() { |
| 76 | # Copyright 1995 Free Software Foundation, Inc. |
78 | # Copyright 1995 Free Software Foundation, Inc. |
| 77 | # Franรงois Pinard <pinard@iro.umontreal.ca>, 1995. |
79 | # Fran็ois Pinard <pinard@iro.umontreal.ca>, 1995. |
| 78 | # |
80 | # |
| 79 | # This program is free software; you can redistribute it and/or modify |
81 | # This program is free software; you can redistribute it and/or modify |
| 80 | # it under the terms of the GNU General Public License as published by |
82 | # it under the terms of the GNU General Public License as published by |
| 81 | # the Free Software Foundation; either version 2, or (at your option) |
83 | # the Free Software Foundation; either version 2, or (at your option) |
| 82 | # any later version. |
84 | # any later version. |
| … | |
… | |
| 131 | # Local Variables: *** |
133 | # Local Variables: *** |
| 132 | # mode: shell-script *** |
134 | # mode: shell-script *** |
| 133 | # tab-width: 4 *** |
135 | # tab-width: 4 *** |
| 134 | # indent-tabs-mode: t *** |
136 | # indent-tabs-mode: t *** |
| 135 | # End: *** |
137 | # End: *** |
|
|
138 | |