diff options
author | shige <shige@FreeBSD.org> | 2001-12-02 05:37:48 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 2001-12-02 05:37:48 +0800 |
commit | f52f7cc2d6a1db2746b695b7ce83c954a69116d6 (patch) | |
tree | f69e8d40860db7ebf9c603c294731b8acee0c7a5 /editors | |
parent | 017ef680c66904ce185450ae9b2267ffd10bad8c (diff) | |
download | freebsd-ports-graphics-f52f7cc2d6a1db2746b695b7ce83c954a69116d6.tar.gz freebsd-ports-graphics-f52f7cc2d6a1db2746b695b7ce83c954a69116d6.tar.zst freebsd-ports-graphics-f52f7cc2d6a1db2746b695b7ce83c954a69116d6.zip |
Fix {apel,flim}-setupel.el.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/apel/files/apel-setupel.el.in | 4 | ||||
-rw-r--r-- | editors/apel/scripts/configure | 10 | ||||
-rw-r--r-- | editors/flim113/files/flim-setupel.el.in | 2 | ||||
-rw-r--r-- | editors/flim113/scripts/configure | 10 |
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 1047e259b99..79c57db20a2 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 083bc7164d3..ffe214ba26f 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 0f1bf4144e7..8732ec4975b 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 083bc7164d3..ffe214ba26f 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 |