summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <opfer@gentoo.org>2007-03-15 12:16:21 +0000
committerChristian Faulhammer <opfer@gentoo.org>2007-03-15 12:16:21 +0000
commit5b202873efe5fb1d507443de0ace495766e4465b (patch)
treebe46e275b00ad00a44a82abb4d773def6b655e2a /eclass/elisp.eclass
downloademacs-5b202873efe5fb1d507443de0ace495766e4465b.tar.gz
emacs-5b202873efe5fb1d507443de0ace495766e4465b.tar.bz2
emacs-5b202873efe5fb1d507443de0ace495766e4465b.zip
reworked eclasses
svn path=/emacs-overlay/; revision=10
Diffstat (limited to 'eclass/elisp.eclass')
-rw-r--r--eclass/elisp.eclass56
1 files changed, 56 insertions, 0 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass
new file mode 100644
index 0000000..3f75ca5
--- /dev/null
+++ b/eclass/elisp.eclass
@@ -0,0 +1,56 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo/users/opfer/eclass/elisp.eclass,v 1.1 2007/03/15 10:33:11 opfer Exp $
+#
+# Copyright 2007 Christian Faulhammer <opfer@gentoo.org>
+# Copyright 2002-2007 Matthew Kennedy <mkennedy@gentoo.org>
+# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com>
+#
+# 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.
+
+inherit elisp-common
+
+# SRC_URI should be set to wherever the primary app-emacs/ maintainer
+# keeps the local elisp mirror, since most app-emacs packages are
+# upstream as a single .el file.
+
+# Note: This is no longer necessary.
+
+SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2"
+if [ "${SIMPLE_ELISP}" = 't' ]; then
+ S="${WORKDIR}/"
+fi
+
+DEPEND="virtual/emacs"
+IUSE=""
+
+elisp_src_unpack() {
+ unpack ${A}
+ if [ "${SIMPLE_ELISP}" = 't' ]
+ then
+ cd "${S}" && mv ${P}.el ${PN}.el
+ fi
+}
+
+elisp_src_compile() {
+ elisp-compile *.el || die
+}
+
+elisp_src_install() {
+ elisp-install ${PN} *.el *.elc
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
+
+elisp_pkg_postinst() {
+ elisp-site-regen
+}
+
+elisp_pkg_postrm() {
+ elisp-site-regen
+}
+
+EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm