| 1 |
opfer |
1.17 |
# Copyright 1999-2007 Gentoo Foundation |
| 2 |
mkennedy |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
ulm |
1.20 |
# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.19 2007/07/02 06:19:18 opfer Exp $ |
| 4 |
vapier |
1.4 |
# |
| 5 |
opfer |
1.17 |
# Copyright 2007 Christian Faulhammer <opfer@gentoo.org> |
| 6 |
ulm |
1.20 |
# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
| 7 |
mkennedy |
1.9 |
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
| 8 |
opfer |
1.19 |
# Copyright 2007 Ulrich Mueller <ulm@gentoo.org> |
| 9 |
vapier |
1.4 |
# |
| 10 |
opfer |
1.18 |
# This eclass sets the site-lisp directory for emacs-related packages. |
| 11 |
opfer |
1.17 |
# |
| 12 |
opfer |
1.18 |
# Emacs support for other than pure elisp packages is handled by |
| 13 |
ulm |
1.20 |
# elisp-common.eclass where you won't have a dependency on Emacs itself. |
| 14 |
|
|
# All elisp-* functions are documented there. |
| 15 |
opfer |
1.17 |
# |
| 16 |
opfer |
1.18 |
# Setting SIMPLE_ELISP=t in an ebuild means, that the package's source |
| 17 |
opfer |
1.19 |
# is a single (in whatever way) compressed elisp file with the file name |
| 18 |
|
|
# ${PN}-${PV}. The consequences: |
| 19 |
opfer |
1.17 |
# |
| 20 |
ulm |
1.20 |
# 1.) ${S} is redefined, |
| 21 |
|
|
# 2.) ${PN}-${PV}.el is moved to ${PN}.el in src_unpack(). |
| 22 |
opfer |
1.19 |
# |
| 23 |
|
|
# DOCS="blah.txt ChangeLog" is automatically used to install the given |
| 24 |
|
|
# files by dodoc in src_install(). |
| 25 |
|
|
# |
| 26 |
|
|
# If you need anything different from Emacs 21, use the NEED_EMACS |
| 27 |
|
|
# variable before inheriting elisp.eclass. Set it to the major version |
| 28 |
|
|
# your package uses and the dependency will be adjusted. |
| 29 |
|
|
|
| 30 |
|
|
inherit elisp-common versionator |
| 31 |
|
|
|
| 32 |
|
|
VERSION=${NEED_EMACS:-21} |
| 33 |
|
|
DEPEND=">=virtual/emacs-${VERSION}" |
| 34 |
ulm |
1.20 |
RDEPEND=">=virtual/emacs-${VERSION}" |
| 35 |
opfer |
1.19 |
IUSE="" |
| 36 |
opfer |
1.18 |
|
| 37 |
|
|
if [ "${SIMPLE_ELISP}" = 't' ]; then |
| 38 |
|
|
S="${WORKDIR}/" |
| 39 |
|
|
fi |
| 40 |
|
|
|
| 41 |
opfer |
1.19 |
elisp_pkg_setup() { |
| 42 |
|
|
local emacs_version="$(elisp-emacs-version)" |
| 43 |
|
|
if ! version_is_at_least "${VERSION}" "${emacs_version}"; then |
| 44 |
|
|
eerror "This package needs at least Emacs ${VERSION}." |
| 45 |
|
|
eerror "Use \"eselect emacs\" to select the active version." |
| 46 |
|
|
die "Emacs version ${emacs_version} is too low." |
| 47 |
|
|
fi |
| 48 |
|
|
} |
| 49 |
mkennedy |
1.1 |
|
| 50 |
opfer |
1.18 |
elisp_src_unpack() { |
| 51 |
|
|
unpack ${A} |
| 52 |
opfer |
1.19 |
if [ "${SIMPLE_ELISP}" = 't' ]; then |
| 53 |
opfer |
1.18 |
cd "${S}" && mv ${P}.el ${PN}.el |
| 54 |
|
|
fi |
| 55 |
mkennedy |
1.5 |
} |
| 56 |
|
|
|
| 57 |
opfer |
1.18 |
elisp_src_compile() { |
| 58 |
opfer |
1.19 |
elisp-compile *.el || die "elisp-compile failed" |
| 59 |
mkennedy |
1.5 |
} |
| 60 |
|
|
|
| 61 |
opfer |
1.18 |
elisp_src_install() { |
| 62 |
|
|
elisp-install ${PN} *.el *.elc |
| 63 |
|
|
elisp-site-file-install "${FILESDIR}/${SITEFILE}" |
| 64 |
opfer |
1.19 |
if [ -n "${DOCS}" ]; then |
| 65 |
|
|
dodoc ${DOCS} || die "dodoc failed" |
| 66 |
|
|
fi |
| 67 |
mkennedy |
1.5 |
} |
| 68 |
|
|
|
| 69 |
opfer |
1.18 |
elisp_pkg_postinst() { |
| 70 |
|
|
elisp-site-regen |
| 71 |
mkennedy |
1.5 |
} |
| 72 |
|
|
|
| 73 |
opfer |
1.18 |
elisp_pkg_postrm() { |
| 74 |
|
|
elisp-site-regen |
| 75 |
mkennedy |
1.5 |
} |
| 76 |
mkennedy |
1.9 |
|
| 77 |
opfer |
1.19 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 78 |
|
|
EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_postrm |