| 1 | # Copyright 1999-2009 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.eclass,v 1.42 2009/08/25 12:53:55 ulm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.43 2009/10/08 10:50:35 ulm 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 | # Copyright 2007-2009 Christian Faulhammer <fauli@gentoo.org> |
7 | # Copyright 2007-2009 Christian Faulhammer <fauli@gentoo.org> |
| 8 | # Copyright 2007-2009 Ulrich Müller <ulm@gentoo.org> |
8 | # Copyright 2007-2009 Ulrich Müller <ulm@gentoo.org> |
| … | |
… | |
| 31 | # @DESCRIPTION: |
31 | # @DESCRIPTION: |
| 32 | # If you need anything different from Emacs 21, use the NEED_EMACS |
32 | # If you need anything different from Emacs 21, use the NEED_EMACS |
| 33 | # variable before inheriting elisp.eclass. Set it to the major version |
33 | # variable before inheriting elisp.eclass. Set it to the major version |
| 34 | # your package uses and the dependency will be adjusted. |
34 | # your package uses and the dependency will be adjusted. |
| 35 | |
35 | |
| 36 | # @ECLASS-VARIABLE: DOCS |
|
|
| 37 | # @DESCRIPTION: |
|
|
| 38 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
|
|
| 39 | # files by dodoc in src_install(). |
|
|
| 40 | |
|
|
| 41 | # @ECLASS-VARIABLE: ELISP_PATCHES |
36 | # @ECLASS-VARIABLE: ELISP_PATCHES |
| 42 | # @DESCRIPTION: |
37 | # @DESCRIPTION: |
| 43 | # Any patches to apply after unpacking the sources. Patches are searched |
38 | # Any patches to apply after unpacking the sources. Patches are searched |
| 44 | # both in ${PWD} and ${FILESDIR}. |
39 | # both in ${PWD} and ${FILESDIR}. |
| 45 | |
40 | |
| … | |
… | |
| 47 | # @DESCRIPTION: |
42 | # @DESCRIPTION: |
| 48 | # Name of package's site-init file. The filename must match the shell |
43 | # Name of package's site-init file. The filename must match the shell |
| 49 | # pattern "[1-8][0-9]*-gentoo.el"; numbers below 10 and above 89 are |
44 | # pattern "[1-8][0-9]*-gentoo.el"; numbers below 10 and above 89 are |
| 50 | # reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice |
45 | # reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice |
| 51 | # in most cases. |
46 | # in most cases. |
|
|
47 | |
|
|
48 | # @ECLASS-VARIABLE: ELISP_TEXINFO |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # Space separated list of Texinfo sources. Respective GNU Info files |
|
|
51 | # will be generated in src_compile() and installed in src_install(). |
|
|
52 | |
|
|
53 | # @ECLASS-VARIABLE: DOCS |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
|
|
56 | # files by dodoc in src_install(). |
| 52 | |
57 | |
| 53 | inherit elisp-common eutils |
58 | inherit elisp-common eutils |
| 54 | |
59 | |
| 55 | case "${EAPI:-0}" in |
60 | case "${EAPI:-0}" in |
| 56 | 0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \ |
61 | 0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \ |
| … | |
… | |
| 103 | |
108 | |
| 104 | elisp_src_configure() { :; } |
109 | elisp_src_configure() { :; } |
| 105 | |
110 | |
| 106 | elisp_src_compile() { |
111 | elisp_src_compile() { |
| 107 | elisp-compile *.el || die |
112 | elisp-compile *.el || die |
|
|
113 | if [ -n "${ELISP_TEXINFO}" ]; then |
|
|
114 | makeinfo ${ELISP_TEXINFO} || die |
|
|
115 | fi |
| 108 | } |
116 | } |
| 109 | |
117 | |
| 110 | elisp_src_install() { |
118 | elisp_src_install() { |
| 111 | elisp-install ${PN} *.el *.elc || die |
119 | elisp-install ${PN} *.el *.elc || die |
| 112 | if [ -n "${SITEFILE}" ]; then |
120 | if [ -n "${SITEFILE}" ]; then |
| 113 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
121 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
|
|
122 | fi |
|
|
123 | if [ -n "${ELISP_TEXINFO}" ]; then |
|
|
124 | set -- ${ELISP_TEXINFO} |
|
|
125 | doinfo ${@/%.*/.info*} || die |
| 114 | fi |
126 | fi |
| 115 | if [ -n "${DOCS}" ]; then |
127 | if [ -n "${DOCS}" ]; then |
| 116 | dodoc ${DOCS} || die |
128 | dodoc ${DOCS} || die |
| 117 | fi |
129 | fi |
| 118 | } |
130 | } |