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