| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
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 | # Author Matthew Kennedy <mkennedy@gentoo.org> |
|
|
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.2 2003/02/09 09:40:43 mkennedy Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.34 2008/09/19 08:12:48 ulm Exp $ |
|
|
4 | # |
|
|
5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
|
|
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> |
|
|
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 | # |
|
|
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(). |
| 5 | |
26 | |
| 6 | # This eclass sets the site-lisp directory for emacs-related packages. |
27 | # @ECLASS-VARIABLE: DOCS |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
|
|
30 | # files by dodoc in src_install(). |
| 7 | |
31 | |
| 8 | ECLASS=elisp |
32 | # @ECLASS-VARIABLE: NEED_EMACS |
| 9 | INHERITED="$INHERITED $ECLASS" |
33 | # @DESCRIPTION: |
|
|
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. |
| 10 | |
37 | |
| 11 | SITELISP=/usr/share/emacs/site-lisp |
38 | inherit elisp-common versionator |
| 12 | |
39 | |
| 13 | elisp-install() { |
40 | DEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
| 14 | local subdir=$1 |
41 | RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}" |
| 15 | dodir ${SITELISP}/${subdir} |
42 | IUSE="" |
| 16 | insinto ${SITELISP}/${subdir} |
43 | |
| 17 | shift |
44 | elisp_pkg_setup() { |
| 18 | doins $@ |
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 |
| 19 | } |
52 | } |
| 20 | |
53 | |
| 21 | elisp-site-file-install() { |
54 | elisp_src_unpack() { |
| 22 | local sitefile=$1 |
55 | [ -n "${A}" ] && unpack ${A} |
| 23 | pushd ${S} |
56 | if [ -f ${P}.el ]; then |
| 24 | cp ${sitefile} . |
57 | mv ${P}.el ${PN}.el || die "mv ${P}.el ${PN}.el failed" |
| 25 | D=${S}/ dosed "s:@SITELISP@:${SITELISP}/${PN}:g" $(basename ${sitefile}) |
58 | fi |
| 26 | insinto ${SITELISP} |
|
|
| 27 | doins ${S}/$(basename ${sitefile}) |
|
|
| 28 | popd |
|
|
| 29 | } |
59 | } |
| 30 | |
60 | |
| 31 | elisp-site-regen() { |
61 | elisp_src_compile() { |
| 32 | einfo "Regenerating ${SITELISP}/site-start.el..." |
62 | elisp-compile *.el || die "elisp-compile failed" |
| 33 | einfo "" |
63 | } |
| 34 | cat <<EOF >${SITELISP}/site-start.el |
|
|
| 35 | ;;; DO NOT EDIT THIS FILE -- IT IS GENERATED AUTOMATICALLY BY PORTAGE |
|
|
| 36 | ;;; ----------------------------------------------------------------- |
|
|
| 37 | |
64 | |
| 38 | EOF |
65 | elisp_src_install() { |
| 39 | ls ${SITELISP}/[0-9][0-9]* |sort -n |grep -vE '~$' | \ |
66 | elisp-install ${PN} *.el *.elc || die "elisp-install failed" |
| 40 | while read sf |
67 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" \ |
| 41 | do |
68 | || die "elisp-site-file-install failed" |
| 42 | einfo " Addding $sf..." |
69 | if [ -n "${DOCS}" ]; then |
| 43 | # Great for debugging, too noisy and slow for users though |
70 | dodoc ${DOCS} || die "dodoc failed" |
| 44 | # echo "(message \"Loading $sf...\")" >>${SITELISP}/site-start.el |
71 | fi |
| 45 | cat $sf >>${SITELISP}/site-start.el |
|
|
| 46 | done |
|
|
| 47 | einfo "" |
|
|
| 48 | } |
72 | } |
|
|
73 | |
|
|
74 | elisp_pkg_postinst() { |
|
|
75 | elisp-site-regen |
|
|
76 | } |
|
|
77 | |
|
|
78 | elisp_pkg_postrm() { |
|
|
79 | elisp-site-regen |
|
|
80 | } |
|
|
81 | |
|
|
82 | EXPORT_FUNCTIONS \ |
|
|
83 | src_unpack src_compile src_install \ |
|
|
84 | pkg_setup pkg_postinst pkg_postrm |