# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.37 2009/02/07 11:32:45 fauli Exp $ # # Copyright 2002-2003 Matthew Kennedy # Copyright 2003 Jeremy Maitin-Shepard # Copyright 2007-2008 Christian Faulhammer # Copyright 2007-2008 Ulrich Müller # # @ECLASS: elisp.eclass # @MAINTAINER: # Feel free to contact the Emacs team through if you # have problems, suggestions or questions. # @BLURB: Eclass for Emacs Lisp packages # @DESCRIPTION: # # This eclass sets the site-lisp directory for Emacs-related packages. # # Emacs support for other than pure elisp packages is handled by # elisp-common.eclass where you won't have a dependency on Emacs itself. # All elisp-* functions are documented there. # # If the package's source is a single (in whatever way) compressed elisp # file with the file name ${P}.el, then this eclass will move ${P}.el to # ${PN}.el in src_unpack(). # @ECLASS-VARIABLE: SITEFILE # @DESCRIPTION: # Name of package's site-init file. The filename must match the shell # pattern "[1-8][0-9]*-gentoo.el"; numbers below 10 and above 89 are # reserved for internal use. "50${PN}-gentoo.el" is a reasonable choice # in most cases. # @ECLASS-VARIABLE: DOCS # @DESCRIPTION: # DOCS="blah.txt ChangeLog" is automatically used to install the given # files by dodoc in src_install(). # @ECLASS-VARIABLE: NEED_EMACS # @DESCRIPTION: # If you need anything different from Emacs 21, use the NEED_EMACS # variable before inheriting elisp.eclass. Set it to the major version # your package uses and the dependency will be adjusted. inherit elisp-common versionator DEPEND=">=virtual/emacs-${NEED_EMACS:-21}" RDEPEND=">=virtual/emacs-${NEED_EMACS:-21}" IUSE="" elisp_pkg_setup() { local need_emacs=${NEED_EMACS:-21} local have_emacs=$(elisp-emacs-version) if ! version_is_at_least "${need_emacs}" "${have_emacs}"; then eerror "This package needs at least Emacs ${need_emacs}." eerror "Use \"eselect emacs\" to select the active version." die "Emacs version ${have_emacs} is too low." fi einfo "Emacs version: ${have_emacs}" } elisp_src_unpack() { [ -n "${A}" ] && unpack ${A} if [ -f ${P}.el ]; then mv ${P}.el ${PN}.el || die fi } elisp_src_compile() { elisp-compile *.el || die } elisp_src_install() { elisp-install ${PN} *.el *.elc || die if [ -n "${SITEFILE}" ]; then elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die fi if [ -n "${DOCS}" ]; then dodoc ${DOCS} || die fi } elisp_pkg_postinst() { elisp-site-regen } elisp_pkg_postrm() { elisp-site-regen } EXPORT_FUNCTIONS \ src_unpack src_compile src_install \ pkg_setup pkg_postinst pkg_postrm