blob: 52b3eaa3c0687a5eedfdde5cd7f159828c0e3959 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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 ""
}
|