| 1 | # Copyright 1999-2007 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.22 2007/08/27 19:41:03 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 2007 Christian Faulhammer <opfer@gentoo.org> |
|
|
| 6 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
| 7 | # 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 Ulrich Mueller <ulm@gentoo.org> |
8 | # Copyright 2007-2009 Ulrich MΓΌller <ulm@gentoo.org> |
| 9 | # |
9 | # |
| 10 | # @ECLASS: elisp.eclass |
10 | # @ECLASS: elisp.eclass |
| 11 | # @MAINTAINER: |
11 | # @MAINTAINER: |
| 12 | # emacs@gentoo.org |
12 | # Feel free to contact the Emacs team through <emacs@gentoo.org> if you |
|
|
13 | # have problems, suggestions or questions. |
| 13 | # @BLURB: Eclass for Emacs Lisp packages |
14 | # @BLURB: Eclass for Emacs Lisp packages |
| 14 | # @DESCRIPTION: |
15 | # @DESCRIPTION: |
| 15 | # |
16 | # |
| 16 | # This eclass sets the site-lisp directory for Emacs-related packages. |
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. |
| 17 | # |
21 | # |
| 18 | # Emacs support for other than pure elisp packages is handled by |
22 | # Emacs support for other than pure elisp packages is handled by |
| 19 | # elisp-common.eclass where you won't have a dependency on Emacs itself. |
23 | # elisp-common.eclass where you won't have a dependency on Emacs itself. |
| 20 | # All elisp-* functions are documented there. |
24 | # All elisp-* functions are documented there. |
| 21 | # |
25 | # |
| 22 | # Setting SIMPLE_ELISP=t in an ebuild means, that the package's source |
26 | # If the package's source is a single (in whatever way) compressed elisp |
| 23 | # is a single (in whatever way) compressed elisp file with the file name |
27 | # file with the file name ${P}.el, then this eclass will move ${P}.el to |
| 24 | # ${PN}-${PV}. This eclass will then redefine ${S}, and move |
|
|
| 25 | # ${PN}-${PV}.el to ${PN}.el in src_unpack(). |
28 | # ${PN}.el in src_unpack(). |
| 26 | # |
29 | |
| 27 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
30 | # @ECLASS-VARIABLE: NEED_EMACS |
| 28 | # files by dodoc in src_install(). |
31 | # @DESCRIPTION: |
| 29 | # |
|
|
| 30 | # 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 |
| 31 | # variable before inheriting elisp.eclass. Set it to the major version |
33 | # variable before inheriting elisp.eclass. Set it to the major version |
| 32 | # your package uses and the dependency will be adjusted. |
34 | # your package uses and the dependency will be adjusted. |
| 33 | |
35 | |
| 34 | inherit elisp-common versionator |
36 | # @ECLASS-VARIABLE: ELISP_PATCHES |
|
|
37 | # @DESCRIPTION: |
|
|
38 | # Any patches to apply after unpacking the sources. Patches are searched |
|
|
39 | # both in ${PWD} and ${FILESDIR}. |
| 35 | |
40 | |
| 36 | VERSION=${NEED_EMACS:-21} |
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. |
|
|
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(). |
|
|
57 | |
|
|
58 | inherit elisp-common eutils |
|
|
59 | |
|
|
60 | case "${EAPI:-0}" in |
|
|
61 | 0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \ |
|
|
62 | pkg_{setup,postinst,postrm} ;; |
|
|
63 | *) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ |
|
|
64 | pkg_{setup,postinst,postrm} ;; |
|
|
65 | esac |
|
|
66 | |
| 37 | DEPEND=">=virtual/emacs-${VERSION}" |
67 | DEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
| 38 | RDEPEND=">=virtual/emacs-${VERSION}" |
68 | RDEPEND="${DEPEND}" |
| 39 | IUSE="" |
69 | IUSE="" |
| 40 | |
70 | |
| 41 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
71 | elisp_pkg_setup() { |
| 42 | S="${WORKDIR}" |
72 | local need_emacs=${NEED_EMACS:-21} |
|
|
73 | local have_emacs=$(elisp-emacs-version) |
|
|
74 | if [ "${have_emacs%%.*}" -lt "${need_emacs%%.*}" ]; then |
|
|
75 | eerror "This package needs at least Emacs ${need_emacs%%.*}." |
|
|
76 | eerror "Use \"eselect emacs\" to select the active version." |
|
|
77 | die "Emacs version ${have_emacs} is too low." |
| 43 | fi |
78 | fi |
|
|
79 | einfo "Emacs version: ${have_emacs}" |
|
|
80 | } |
| 44 | |
81 | |
| 45 | elisp_pkg_setup() { |
82 | elisp_src_unpack() { |
| 46 | local emacs_version="$(elisp-emacs-version)" |
83 | [ -n "${A}" ] && unpack ${A} |
| 47 | if ! version_is_at_least "${VERSION}" "${emacs_version}"; then |
84 | if [ -f ${P}.el ]; then |
| 48 | eerror "This package needs at least Emacs ${VERSION}." |
85 | # the "simple elisp" case with a single *.el file in WORKDIR |
| 49 | eerror "Use \"eselect emacs\" to select the active version." |
86 | mv ${P}.el ${PN}.el || die |
| 50 | die "Emacs version ${emacs_version} is too low." |
87 | [ -d "${S}" ] || S=${WORKDIR} |
|
|
88 | fi |
|
|
89 | |
|
|
90 | case "${EAPI:-0}" in |
|
|
91 | 0|1) [ -d "${S}" ] && cd "${S}" |
|
|
92 | elisp_src_prepare ;; |
|
|
93 | esac |
|
|
94 | } |
|
|
95 | |
|
|
96 | elisp_src_prepare() { |
|
|
97 | local patch |
|
|
98 | for patch in ${ELISP_PATCHES}; do |
|
|
99 | if [ -f "${patch}" ]; then |
|
|
100 | epatch "${patch}" |
|
|
101 | elif [ -f "${FILESDIR}/${patch}" ]; then |
|
|
102 | epatch "${FILESDIR}/${patch}" |
|
|
103 | else |
|
|
104 | die "Cannot find ${patch}" |
|
|
105 | fi |
|
|
106 | done |
|
|
107 | } |
|
|
108 | |
|
|
109 | elisp_src_configure() { :; } |
|
|
110 | |
|
|
111 | elisp_src_compile() { |
|
|
112 | elisp-compile *.el || die |
|
|
113 | if [ -n "${ELISP_TEXINFO}" ]; then |
|
|
114 | makeinfo ${ELISP_TEXINFO} || die |
| 51 | fi |
115 | fi |
| 52 | } |
116 | } |
| 53 | |
117 | |
| 54 | elisp_src_unpack() { |
118 | elisp_src_install() { |
| 55 | unpack ${A} |
119 | elisp-install ${PN} *.el *.elc || die |
| 56 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
120 | if [ -n "${SITEFILE}" ]; then |
| 57 | cd "${S}" && mv ${P}.el ${PN}.el |
121 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
| 58 | fi |
122 | fi |
| 59 | } |
123 | if [ -n "${ELISP_TEXINFO}" ]; then |
| 60 | |
124 | set -- ${ELISP_TEXINFO} |
| 61 | elisp_src_compile() { |
125 | doinfo ${@/%.*/.info*} || die |
| 62 | elisp-compile *.el || die "elisp-compile failed" |
126 | fi |
| 63 | } |
|
|
| 64 | |
|
|
| 65 | elisp_src_install() { |
|
|
| 66 | elisp-install ${PN} *.el *.elc |
|
|
| 67 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" |
|
|
| 68 | if [ -n "${DOCS}" ]; then |
127 | if [ -n "${DOCS}" ]; then |
| 69 | dodoc ${DOCS} || die "dodoc failed" |
128 | dodoc ${DOCS} || die |
| 70 | fi |
129 | fi |
| 71 | } |
130 | } |
| 72 | |
131 | |
| 73 | elisp_pkg_postinst() { |
132 | elisp_pkg_postinst() { |
| 74 | elisp-site-regen |
133 | elisp-site-regen |
| 75 | } |
134 | } |
| 76 | |
135 | |
| 77 | elisp_pkg_postrm() { |
136 | elisp_pkg_postrm() { |
| 78 | elisp-site-regen |
137 | elisp-site-regen |
| 79 | } |
138 | } |
| 80 | |
|
|
| 81 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
|
|
| 82 | EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_postrm |
|
|