ecm.eclass: Set correct KFMIN default for kde-frameworks/*
[gentoo.git] / eclass / elisp.eclass
1 # Copyright 1999-2019 Gentoo Authors
2 # Distributed under the terms of the GNU General Public License v2
3
4 # @ECLASS: elisp.eclass
5 # @MAINTAINER:
6 # Gentoo GNU Emacs project <gnu-emacs@gentoo.org>
7 # @AUTHOR:
8 # Matthew Kennedy <mkennedy@gentoo.org>
9 # Jeremy Maitin-Shepard <jbms@attbi.com>
10 # Christian Faulhammer <fauli@gentoo.org>
11 # Ulrich Müller <ulm@gentoo.org>
12 # @SUPPORTED_EAPIS: 4 5 6 7
13 # @BLURB: Eclass for Emacs Lisp packages
14 # @DESCRIPTION:
15 #
16 # This eclass is designed to install elisp files of Emacs related
17 # packages into the site-lisp directory.  The majority of elisp packages
18 # will only need to define the standard ebuild variables (like SRC_URI)
19 # and optionally SITEFILE for successful installation.
20 #
21 # Emacs support for other than pure elisp packages is handled by
22 # elisp-common.eclass where you won't have a dependency on Emacs itself.
23 # All elisp-* functions are documented there.
24 #
25 # If the package's source is a single (in whatever way) compressed elisp
26 # file with the file name ${P}.el, then this eclass will move ${P}.el to
27 # ${PN}.el in src_unpack().
28
29 # @ECLASS-VARIABLE: NEED_EMACS
30 # @DEFAULT_UNSET
31 # @DESCRIPTION:
32 # If you need anything different from Emacs 23, 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.
35
36 # @ECLASS-VARIABLE: ELISP_PATCHES
37 # @DEFAULT_UNSET
38 # @DESCRIPTION:
39 # Space separated list of patches to apply after unpacking the sources.
40 # Patch files are searched for in the current working dir, WORKDIR, and
41 # FILESDIR.  This variable is semi-deprecated, preferably use the
42 # PATCHES array instead if the EAPI supports it.
43
44 # @ECLASS-VARIABLE: ELISP_REMOVE
45 # @DEFAULT_UNSET
46 # @DESCRIPTION:
47 # Space separated list of files to remove after unpacking the sources.
48
49 # @ECLASS-VARIABLE: SITEFILE
50 # @DEFAULT_UNSET
51 # @DESCRIPTION:
52 # Name of package's site-init file.  The filename must match the shell
53 # pattern "[1-8][0-9]*-gentoo.el"; numbers below 10 and above 89 are
54 # reserved for internal use.  "50${PN}-gentoo.el" is a reasonable choice
55 # in most cases.
56
57 # @ECLASS-VARIABLE: ELISP_TEXINFO
58 # @DEFAULT_UNSET
59 # @DESCRIPTION:
60 # Space separated list of Texinfo sources.  Respective GNU Info files
61 # will be generated in src_compile() and installed in src_install().
62
63 inherit elisp-common
64 case ${EAPI:-0} in
65         4|5) inherit epatch ;;
66         6|7) ;;
67         *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
68 esac
69
70 EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \
71         pkg_{setup,postinst,postrm}
72
73 RDEPEND=">=virtual/emacs-${NEED_EMACS:-23}"
74 case ${EAPI} in
75         4|5|6) DEPEND="${RDEPEND}" ;;
76         *) BDEPEND="${RDEPEND}" ;;
77 esac
78
79 # @FUNCTION: elisp_pkg_setup
80 # @DESCRIPTION:
81 # Test if the eselected Emacs version is sufficient to fulfil the major
82 # version requirement of the NEED_EMACS variable.
83
84 elisp_pkg_setup() {
85         elisp-need-emacs "${NEED_EMACS:-23}"
86         case $? in
87                 0) ;;
88                 1) die "Emacs version too low" ;;
89                 *) die "Could not determine Emacs version" ;;
90         esac
91 }
92
93 # @FUNCTION: elisp_src_unpack
94 # @DESCRIPTION:
95 # Unpack the sources; also handle the case of a single *.el file in
96 # WORKDIR for packages distributed that way.
97
98 elisp_src_unpack() {
99         default
100         if [[ -f ${P}.el ]]; then
101                 # the "simple elisp" case with a single *.el file in WORKDIR
102                 mv ${P}.el ${PN}.el || die
103                 [[ -d ${S} ]] || S=${WORKDIR}
104         fi
105 }
106
107 # @FUNCTION: elisp_src_prepare
108 # @DESCRIPTION:
109 # Apply any patches listed in ELISP_PATCHES.  Patch files are searched
110 # for in the current working dir, WORKDIR, and FILESDIR.
111
112 elisp_src_prepare() {
113         local patch file
114         for patch in ${ELISP_PATCHES}; do
115                 if [[ -f ${patch} ]]; then
116                         file="${patch}"
117                 elif [[ -f ${WORKDIR}/${patch} ]]; then
118                         file="${WORKDIR}/${patch}"
119                 elif [[ -f ${FILESDIR}/${patch} ]]; then
120                         file="${FILESDIR}/${patch}"
121                 else
122                         die "Cannot find ${patch}"
123                 fi
124                 case ${EAPI} in
125                         4|5) epatch "${file}" ;;
126                         *) eapply "${file}" ;;
127                 esac
128         done
129
130         # apply PATCHES (if supported in EAPI), and any user patches
131         case ${EAPI} in
132                 4|5) epatch_user ;;
133                 *) default ;;
134         esac
135
136         if [[ -n ${ELISP_REMOVE} ]]; then
137                 rm ${ELISP_REMOVE} || die
138         fi
139 }
140
141 # @FUNCTION: elisp_src_configure
142 # @DESCRIPTION:
143 # Do nothing, because Emacs packages seldomly bring a full build system.
144
145 elisp_src_configure() { :; }
146
147 # @FUNCTION: elisp_src_compile
148 # @DESCRIPTION:
149 # Call elisp-compile to byte-compile all Emacs Lisp (*.el) files.
150 # If ELISP_TEXINFO lists any Texinfo sources, call makeinfo to generate
151 # GNU Info files from them.
152
153 elisp_src_compile() {
154         elisp-compile *.el
155         if [[ -n ${ELISP_TEXINFO} ]]; then
156                 makeinfo ${ELISP_TEXINFO} || die
157         fi
158 }
159
160 # @FUNCTION: elisp_src_install
161 # @DESCRIPTION:
162 # Call elisp-install to install all Emacs Lisp (*.el and *.elc) files.
163 # If the SITEFILE variable specifies a site-init file, install it with
164 # elisp-site-file-install.  Also install any GNU Info files listed in
165 # ELISP_TEXINFO and documentation listed in the DOCS variable.
166
167 elisp_src_install() {
168         elisp-install ${PN} *.el *.elc
169         if [[ -n ${SITEFILE} ]]; then
170                 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
171         fi
172         if [[ -n ${ELISP_TEXINFO} ]]; then
173                 set -- ${ELISP_TEXINFO}
174                 set -- ${@##*/}
175                 doinfo ${@/%.*/.info*}
176         fi
177         # install documentation only when explicitly requested
178         case ${EAPI} in
179                 4|5) [[ -n ${DOCS} ]] && dodoc ${DOCS} ;;
180                 *) declare -p DOCS &>/dev/null && einstalldocs ;;
181         esac
182         if declare -f readme.gentoo_create_doc >/dev/null; then
183                 readme.gentoo_create_doc
184         fi
185 }
186
187 # @FUNCTION: elisp_pkg_postinst
188 # @DESCRIPTION:
189 # Call elisp-site-regen, in order to collect the site initialisation for
190 # all installed Emacs Lisp packages in the site-gentoo.el file.
191
192 elisp_pkg_postinst() {
193         elisp-site-regen
194         if declare -f readme.gentoo_print_elog >/dev/null; then
195                 readme.gentoo_print_elog
196         fi
197 }
198
199 # @FUNCTION: elisp_pkg_postrm
200 # @DESCRIPTION:
201 # Call elisp-site-regen, in order to collect the site initialisation for
202 # all installed Emacs Lisp packages in the site-gentoo.el file.
203
204 elisp_pkg_postrm() {
205         elisp-site-regen
206 }