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.10 2005/05/03 09:20:13 usata Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.14 2005/09/17 01:02:40 ciaranm 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" |
|
|
13 | |
11 | |
14 | SITELISP=/usr/share/emacs/site-lisp |
12 | SITELISP=/usr/share/emacs/site-lisp |
15 | |
13 | |
16 | elisp-compile() { |
14 | elisp-compile() { |
17 | /usr/bin/emacs --batch -f batch-byte-compile --no-site-file --no-init-file $* |
15 | /usr/bin/emacs --batch -f batch-byte-compile --no-site-file --no-init-file $* |
… | |
… | |
74 | # The following Emacs Lisp compilation routine is taken from GNU |
72 | # The following Emacs Lisp compilation routine is taken from GNU |
75 | # autotools. |
73 | # autotools. |
76 | |
74 | |
77 | elisp-comp() { |
75 | elisp-comp() { |
78 | # Copyright 1995 Free Software Foundation, Inc. |
76 | # Copyright 1995 Free Software Foundation, Inc. |
79 | # Fran็ois Pinard <pinard@iro.umontreal.ca>, 1995. |
77 | # Franรงois Pinard <pinard@iro.umontreal.ca>, 1995. |
80 | # |
78 | # |
81 | # This program is free software; you can redistribute it and/or modify |
79 | # This program is free software; you can redistribute it and/or modify |
82 | # it under the terms of the GNU General Public License as published by |
80 | # it under the terms of the GNU General Public License as published by |
83 | # the Free Software Foundation; either version 2, or (at your option) |
81 | # the Free Software Foundation; either version 2, or (at your option) |
84 | # any later version. |
82 | # any later version. |
… | |
… | |
133 | # Local Variables: *** |
131 | # Local Variables: *** |
134 | # mode: shell-script *** |
132 | # mode: shell-script *** |
135 | # tab-width: 4 *** |
133 | # tab-width: 4 *** |
136 | # indent-tabs-mode: t *** |
134 | # indent-tabs-mode: t *** |
137 | # End: *** |
135 | # End: *** |
138 | |
|
|