| 1 | # Copyright 1999-2004 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.eclass,v 1.1.1.1 2005/11/30 09:59:37 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.36 2008/11/16 10:23:42 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-2008 Christian Faulhammer <opfer@gentoo.org> |
|
|
8 | # Copyright 2007-2008 Ulrich Müller <ulm@gentoo.org> |
| 7 | # |
9 | # |
|
|
10 | # @ECLASS: elisp.eclass |
|
|
11 | # @MAINTAINER: |
|
|
12 | # Feel free to contact the Emacs team through <emacs@gentoo.org> if you |
|
|
13 | # have problems, suggestions or questions. |
|
|
14 | # @BLURB: Eclass for Emacs Lisp packages |
|
|
15 | # @DESCRIPTION: |
|
|
16 | # |
| 8 | # This eclass sets the site-lisp directory for emacs-related packages. |
17 | # This eclass sets the site-lisp directory for Emacs-related packages. |
|
|
18 | # |
|
|
19 | # Emacs support for other than pure elisp packages is handled by |
|
|
20 | # elisp-common.eclass where you won't have a dependency on Emacs itself. |
|
|
21 | # All elisp-* functions are documented there. |
|
|
22 | # |
|
|
23 | # If the package's source is a single (in whatever way) compressed elisp |
|
|
24 | # file with the file name ${P}.el, then this eclass will move ${P}.el to |
|
|
25 | # ${PN}.el in src_unpack(). |
| 9 | |
26 | |
| 10 | inherit elisp-common |
27 | # @ECLASS-VARIABLE: SITEFILE |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # Name of package's site-init file. The filename must match the shell |
|
|
30 | # pattern "[1-8][0-9]*-gentoo.el"; numbers below 10 and above 89 are |
|
|
31 | # reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice |
|
|
32 | # in most cases. |
| 11 | |
33 | |
| 12 | # SRC_URI should be set to wherever the primary app-emacs/ maintainer |
34 | # @ECLASS-VARIABLE: DOCS |
| 13 | # keeps the local elisp mirror, since most app-emacs packages are |
35 | # @DESCRIPTION: |
| 14 | # upstream as a single .el file. |
36 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
|
|
37 | # files by dodoc in src_install(). |
| 15 | |
38 | |
| 16 | # Note: This is no longer necessary. |
39 | # @ECLASS-VARIABLE: NEED_EMACS |
|
|
40 | # @DESCRIPTION: |
|
|
41 | # If you need anything different from Emacs 21, use the NEED_EMACS |
|
|
42 | # variable before inheriting elisp.eclass. Set it to the major version |
|
|
43 | # your package uses and the dependency will be adjusted. |
| 17 | |
44 | |
| 18 | SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2" |
45 | inherit elisp-common versionator |
| 19 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
|
|
| 20 | S="${WORKDIR}/" |
|
|
| 21 | #else |
|
|
| 22 | # Use default value |
|
|
| 23 | # S="${WORKDIR}/${P}" |
|
|
| 24 | fi |
|
|
| 25 | |
46 | |
| 26 | DEPEND="virtual/emacs" |
47 | DEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
|
|
48 | RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
| 27 | IUSE="" |
49 | IUSE="" |
| 28 | |
50 | |
|
|
51 | elisp_pkg_setup() { |
|
|
52 | local need_emacs=${NEED_EMACS:-21} |
|
|
53 | local have_emacs=$(elisp-emacs-version) |
|
|
54 | if ! version_is_at_least "${need_emacs}" "${have_emacs}"; then |
|
|
55 | eerror "This package needs at least Emacs ${need_emacs}." |
|
|
56 | eerror "Use \"eselect emacs\" to select the active version." |
|
|
57 | die "Emacs version ${have_emacs} is too low." |
|
|
58 | fi |
|
|
59 | einfo "Emacs version: ${have_emacs}" |
|
|
60 | } |
|
|
61 | |
| 29 | elisp_src_unpack() { |
62 | elisp_src_unpack() { |
| 30 | unpack ${A} |
63 | [ -n "${A}" ] && unpack ${A} |
| 31 | if [ "${SIMPLE_ELISP}" = 't' ] |
64 | if [ -f ${P}.el ]; then |
| 32 | then |
65 | mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed" |
| 33 | cd ${S} && mv ${P}.el ${PN}.el |
|
|
| 34 | fi |
66 | fi |
| 35 | } |
67 | } |
| 36 | |
68 | |
| 37 | elisp_src_compile() { |
69 | elisp_src_compile() { |
| 38 | elisp-compile *.el || die |
70 | elisp-compile *.el || die |
| 39 | } |
71 | } |
| 40 | |
72 | |
| 41 | elisp_src_install() { |
73 | elisp_src_install() { |
| 42 | elisp-install ${PN} *.el *.elc |
74 | elisp-install ${PN} *.el *.elc || die |
|
|
75 | if [ -n "${SITEFILE}" ]; then |
| 43 | elisp-site-file-install ${FILESDIR}/${SITEFILE} |
76 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
|
|
77 | fi |
|
|
78 | if [ -n "${DOCS}" ]; then |
|
|
79 | dodoc ${DOCS} || die "dodoc failed" |
|
|
80 | fi |
| 44 | } |
81 | } |
| 45 | |
82 | |
| 46 | elisp_pkg_postinst() { |
83 | elisp_pkg_postinst() { |
| 47 | elisp-site-regen |
84 | elisp-site-regen |
| 48 | } |
85 | } |
| 49 | |
86 | |
| 50 | elisp_pkg_postrm() { |
87 | elisp_pkg_postrm() { |
| 51 | elisp-site-regen |
88 | elisp-site-regen |
| 52 | } |
89 | } |
| 53 | |
90 | |
|
|
91 | EXPORT_FUNCTIONS \ |
| 54 | EXPORT_FUNCTIONS src_unpack src_compile src_install \ |
92 | src_unpack src_compile src_install \ |
| 55 | pkg_postinst pkg_postrm |
93 | pkg_setup pkg_postinst pkg_postrm |
| 56 | |
|
|
| 57 | # Local Variables: *** |
|
|
| 58 | # mode: shell-script *** |
|
|
| 59 | # tab-width: 4 *** |
|
|
| 60 | # indent-tabs-mode: t *** |
|
|
| 61 | # End: *** |
|
|