diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2002-10-29 04:40:18 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2002-10-29 04:40:18 +0000 |
commit | cfaaa1fdd72b3cec38e75e7fa438d20ecd866bf1 (patch) | |
tree | 8f0815524862431bddfcaae1725c771f7f122b4a /eclass/elisp.eclass | |
parent | Cleanup (diff) | |
download | gentoo-2-cfaaa1fdd72b3cec38e75e7fa438d20ecd866bf1.tar.gz gentoo-2-cfaaa1fdd72b3cec38e75e7fa438d20ecd866bf1.tar.bz2 gentoo-2-cfaaa1fdd72b3cec38e75e7fa438d20ecd866bf1.zip |
initial
Diffstat (limited to 'eclass/elisp.eclass')
-rw-r--r-- | eclass/elisp.eclass | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass new file mode 100644 index 000000000000..52b3eaa3c068 --- /dev/null +++ b/eclass/elisp.eclass @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Author Matthew Kennedy <mkennedy@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.1 2002/10/29 04:40:18 mkennedy Exp $ + +# This eclass sets the site-lisp directory for emacs-related packages. + +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 | \ + while read sf + do + einfo " Addding $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 "" +}
\ No newline at end of file |