aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--editors/apel/files/apel-setupel.el.in4
-rw-r--r--editors/apel/scripts/configure10
-rw-r--r--editors/flim113/files/flim-setupel.el.in2
-rw-r--r--editors/flim113/scripts/configure10
4 files changed, 15 insertions, 11 deletions
diff --git a/editors/apel/files/apel-setupel.el.in b/editors/apel/files/apel-setupel.el.in
index 1047e259b991..79c57db20a2b 100644
--- a/editors/apel/files/apel-setupel.el.in
+++ b/editors/apel/files/apel-setupel.el.in
@@ -3,7 +3,7 @@
;; -- by shige@FreeBSD.ORG
(setq load-path (append '(
- "@@LOCALBASE@@/@@EMACS_LIBDIR@@/site-lisp/apel"
- "@@LOCALBASE@@/@@EMACS_LIBDIR_WITH_VER@@/site-lisp/emu"
+ "@@LOCALBASE@@/@@EMACS_VERSION_SITE_LISPDIR@@/apel"
+ "@@LOCALBASE@@/@@EMACS_VERSION_SITE_LISPDIR@@/emu"
) load-path))
(provide 'apel-setupel)
diff --git a/editors/apel/scripts/configure b/editors/apel/scripts/configure
index 083bc7164d33..ffe214ba26f5 100644
--- a/editors/apel/scripts/configure
+++ b/editors/apel/scripts/configure
@@ -4,10 +4,12 @@ for i in ${TARGETS}
do
if [ -f ${WRKDIR}/${i}.in ]; then
cat ${WRKDIR}/${i}.in | /usr/bin/sed \
- -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
- -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
- -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
- -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
+ -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
+ -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
+ -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@EMACS_SITE_LISPDIR@@;${EMACS_SITE_LISPDIR};g" \
+ -e "s;@@EMACS_VERSION_SITE_LISPDIR@@;${EMACS_VERSION_SITE_LISPDIR};g" \
> ${WRKDIR}/${i}
fi
done
diff --git a/editors/flim113/files/flim-setupel.el.in b/editors/flim113/files/flim-setupel.el.in
index 0f1bf4144e76..8732ec4975ba 100644
--- a/editors/flim113/files/flim-setupel.el.in
+++ b/editors/flim113/files/flim-setupel.el.in
@@ -3,6 +3,6 @@
;; -- by shige@FreeBSD.ORG
(setq load-path (append '(
- "@@LOCALBASE@@/@@EMACS_LIBDIR@@/site-lisp/flim"
+ "@@LOCALBASE@@/@@EMACS_VERSION_SITE_LISPDIR@@/flim"
) load-path))
(provide 'flim-setupel)
diff --git a/editors/flim113/scripts/configure b/editors/flim113/scripts/configure
index 083bc7164d33..ffe214ba26f5 100644
--- a/editors/flim113/scripts/configure
+++ b/editors/flim113/scripts/configure
@@ -4,10 +4,12 @@ for i in ${TARGETS}
do
if [ -f ${WRKDIR}/${i}.in ]; then
cat ${WRKDIR}/${i}.in | /usr/bin/sed \
- -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
- -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
- -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
- -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
+ -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
+ -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
+ -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@EMACS_SITE_LISPDIR@@;${EMACS_SITE_LISPDIR};g" \
+ -e "s;@@EMACS_VERSION_SITE_LISPDIR@@;${EMACS_VERSION_SITE_LISPDIR};g" \
> ${WRKDIR}/${i}
fi
done