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.11 2004/06/25 00:39:48 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.34 2008/09/19 08:12:48 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: DOCS |
11 | ECLASS=elisp |
28 | # @DESCRIPTION: |
12 | INHERITED="$INHERITED $ECLASS" |
29 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
|
|
30 | # files by dodoc in src_install(). |
13 | |
31 | |
14 | # SRC_URI should be set to wherever the primary app-emacs/ maintainer |
32 | # @ECLASS-VARIABLE: NEED_EMACS |
15 | # keeps the local elisp mirror, since most app-emacs packages are |
33 | # @DESCRIPTION: |
16 | # upstream as a single .el file. |
34 | # If you need anything different from Emacs 21, use the NEED_EMACS |
|
|
35 | # variable before inheriting elisp.eclass. Set it to the major version |
|
|
36 | # your package uses and the dependency will be adjusted. |
17 | |
37 | |
18 | # Note: This is no longer necessary. |
38 | inherit elisp-common versionator |
19 | |
39 | |
20 | SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2" |
40 | DEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
21 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
41 | RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
22 | S="${WORKDIR}/" |
|
|
23 | #else |
|
|
24 | # Use default value |
|
|
25 | # S="${WORKDIR}/${P}" |
|
|
26 | fi |
|
|
27 | |
|
|
28 | DEPEND="virtual/emacs" |
|
|
29 | IUSE="" |
42 | IUSE="" |
30 | |
43 | |
|
|
44 | elisp_pkg_setup() { |
|
|
45 | local need_emacs=${NEED_EMACS:-21} |
|
|
46 | local have_emacs=$(elisp-emacs-version) |
|
|
47 | if ! version_is_at_least "${need_emacs}" "${have_emacs}"; then |
|
|
48 | eerror "This package needs at least Emacs ${need_emacs}." |
|
|
49 | eerror "Use \"eselect emacs\" to select the active version." |
|
|
50 | die "Emacs version ${have_emacs} is too low." |
|
|
51 | fi |
|
|
52 | } |
|
|
53 | |
31 | elisp_src_unpack() { |
54 | elisp_src_unpack() { |
32 | unpack ${A} |
55 | [ -n "${A}" ] && unpack ${A} |
33 | if [ "${SIMPLE_ELISP}" = 't' ] |
56 | if [ -f ${P}.el ]; then |
34 | then |
57 | mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed" |
35 | cd ${S} && mv ${P}.el ${PN}.el |
|
|
36 | fi |
58 | fi |
37 | } |
59 | } |
38 | |
60 | |
39 | elisp_src_compile() { |
61 | elisp_src_compile() { |
40 | elisp-compile *.el || die |
62 | elisp-compile *.el || die "elisp-compile failed" |
41 | } |
63 | } |
42 | |
64 | |
43 | elisp_src_install() { |
65 | elisp_src_install() { |
44 | elisp-install ${PN} *.el *.elc |
66 | elisp-install ${PN} *.el *.elc || die "elisp-install failed" |
45 | elisp-site-file-install ${FILESDIR}/${SITEFILE} |
67 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" \ |
|
|
68 | || die "elisp-site-file-install failed" |
|
|
69 | if [ -n "${DOCS}" ]; then |
|
|
70 | dodoc ${DOCS} || die "dodoc failed" |
|
|
71 | fi |
46 | } |
72 | } |
47 | |
73 | |
48 | elisp_pkg_postinst() { |
74 | elisp_pkg_postinst() { |
49 | elisp-site-regen |
75 | elisp-site-regen |
50 | } |
76 | } |
51 | |
77 | |
52 | elisp_pkg_postrm() { |
78 | elisp_pkg_postrm() { |
53 | elisp-site-regen |
79 | elisp-site-regen |
54 | } |
80 | } |
55 | |
81 | |
|
|
82 | EXPORT_FUNCTIONS \ |
56 | EXPORT_FUNCTIONS src_unpack src_compile src_install \ |
83 | src_unpack src_compile src_install \ |
57 | pkg_postinst pkg_postrm |
84 | pkg_setup pkg_postinst pkg_postrm |
58 | |
|
|
59 | # Local Variables: *** |
|
|
60 | # mode: shell-script *** |
|
|
61 | # tab-width: 4 *** |
|
|
62 | # indent-tabs-mode: t *** |
|
|
63 | # End: *** |
|
|