summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kennedy <mkennedy@gentoo.org>2003-09-21 01:40:41 +0000
committerMatthew Kennedy <mkennedy@gentoo.org>2003-09-21 01:40:41 +0000
commit86a31a4cc17f73e846d59ee4c615fbb1d82ff597 (patch)
tree3327008747092497954f3fd327660fbbb74b9a54 /eclass/elisp.eclass
parentfixed src_uri (diff)
downloadhistorical-86a31a4cc17f73e846d59ee4c615fbb1d82ff597.tar.gz
historical-86a31a4cc17f73e846d59ee4c615fbb1d82ff597.tar.bz2
historical-86a31a4cc17f73e846d59ee4c615fbb1d82ff597.zip
separated elisp into elisp and elisp-common
Diffstat (limited to 'eclass/elisp.eclass')
-rw-r--r--eclass/elisp.eclass56
1 files changed, 13 insertions, 43 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass
index e16d219d2c46..c760e37e296d 100644
--- a/eclass/elisp.eclass
+++ b/eclass/elisp.eclass
@@ -1,62 +1,27 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.7 2003/09/20 22:27:08 mkennedy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.8 2003/09/21 01:40:41 mkennedy Exp $
#
# Author Matthew Kennedy <mkennedy@gentoo.org>
#
# This eclass sets the site-lisp directory for emacs-related packages.
+inherit elisp-common
+
ECLASS=elisp
INHERITED="$INHERITED $ECLASS"
-SITELISP=/usr/share/emacs/site-lisp
-
-elisp-install() {
- local subdir=$1
- dodir ${SITELISP}/${subdir}
- insinto ${SITELISP}/${subdir}
- shift
- doins $@
-}
-
-elisp-site-file-install() {
- local sitefile=$1
- pushd ${S}
- cp ${sitefile} .
- D=${S}/ dosed "s:@SITELISP@:${SITELISP}/${PN}:g" $(basename ${sitefile})
- insinto ${SITELISP}
- doins ${S}/$(basename ${sitefile})
- popd
-}
-
-elisp-site-regen() {
- einfo "Regenerating ${SITELISP}/site-start.el..."
- einfo ""
- cat <<EOF >${SITELISP}/site-start.el
-;;; DO NOT EDIT THIS FILE -- IT IS GENERATED AUTOMATICALLY BY PORTAGE
-;;; -----------------------------------------------------------------
-
-EOF
- ls ${SITELISP}/[0-9][0-9]* |sort -n |grep -vE '~$' | \
- while read sf
- do
- einfo " Adding $sf..."
- # Great for debugging, too noisy and slow for users though
-# echo "(message \"Loading $sf...\")" >>${SITELISP}/site-start.el
- cat $sf >>${SITELISP}/site-start.el
- done
- einfo ""
-}
-
-# DEFAULT OVERRIDES
+source /usr/portage/eclass/elisp-common.eclass
# 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
+# upstream as a single .el file.
+
+# Note: This is no longer necessary.
SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2"
S="${WORKDIR}/"
-# newdepend "virtual/emacs"
+newdepend "virtual/emacs"
IUSE=""
src_unpack() {
@@ -84,3 +49,8 @@ pkg_postrm() {
elisp-site-regen
}
+# Local Variables: ***
+# mode: shell-script ***
+# tab-width: 4 ***
+# indent-tabs-mode: t ***
+# End: ***