Hi,
in port print/auctex
file /usr/local/share/emacs/site-lisp/tex-site.el
the following assignment is wrong:
(defvar TeX-lisp-directory
"/usr/ports/print/auctex/w-auctex-11.14p1/fake-i386/u
sr/local/share/emacs/site-lisp/auctex/"
"*The directory where the AUC TeX lisp files are located.")
I suggest the attached patched patch-Makefile
Fulvio
$OpenBSD: patch-Makefile,v 1.1.1.1 2004/02/21 01:41:12 pvalchev Exp $
--- Makefile.orig Sun Dec 15 03:15:42 2002
+++ Makefile Mon May 5 19:55:09 2008
@@ -17,9 +17,9 @@ infodir = $(prefix)/info
# Where local lisp files go.
lispdir = $(prefix)/share/emacs/site-lisp
-
# Where the AUC TeX emacs lisp files go.
aucdir=$(lispdir)/auctex
+finaldir = $(prefix)/share/emacs/site-lisp/auctex
# Name of your emacs binary
EMACS=emacs
@@ -121,12 +121,12 @@ contrib:
# $(ELC) hilit-LaTeX.el # Doesn't compile without X
install-lisp: some
- if [ ! -d $(lispdir) ]; then mkdir $(lispdir); else true; fi ;
+ if [ ! -d $(lispdir) ]; then mkdir -p -m 755 $(lispdir); else true; fi ;
if [ -f $(lispdir)/tex-site.el ]; \
then \
echo "Leaving old tex-site.el alone."; \
else \
- sed -e '[EMAIL PROTECTED](aucdir)/#' tex-site.el \
+ sed -e '[EMAIL PROTECTED](finaldir)/#' tex-site.el \
> $(lispdir)/tex-site.el ; \
fi
if [ ! -d $(aucdir) ]; then mkdir $(aucdir); else true; fi ;