diff options
author | 2002-10-29 04:40:18 +0000 | |
---|---|---|
committer | 2002-10-29 04:40:18 +0000 | |
commit | 845a214beca09d26369d1ea32b5e864b2fc8dfa8 (patch) | |
tree | c67676846fb9d9ae99c3fe132423c3fbac4f8df4 /eclass/elisp.eclass | |
parent | Cleanup (diff) | |
download | historical-845a214beca09d26369d1ea32b5e864b2fc8dfa8.tar.gz historical-845a214beca09d26369d1ea32b5e864b2fc8dfa8.tar.bz2 historical-845a214beca09d26369d1ea32b5e864b2fc8dfa8.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 |