summaryrefslogtreecommitdiff
path: root/print/auctex
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-04-19 22:23:45 +0000
committerjtb <jtb@pkgsrc.org>2001-04-19 22:23:45 +0000
commit14e1ad4012884c34b79f30d7209400d0dd280bbd (patch)
tree7b66db89ef9822225ec2710dd57419b36e15dec0 /print/auctex
parent04a92e30ac56bc62a25ceca6dd9915a60fa402c2 (diff)
downloadpkgsrc-14e1ad4012884c34b79f30d7209400d0dd280bbd.tar.gz
Updated auctex to 10.0g.
News in 10.0 ============ * Disabled `LaTeX-hide-environment'. Suggested by Christopher Allen <cpcallen@ruah.dyndns.org>. * Changed default to lazy evaluation of `TeX-view-style' and `LaTeX-command-style'. Suggested by Peter Neergaard <turtle@cs.bu.edu>. * Backindent when brace is at the start of a line. Patch by Masashi Shimbo <shimbo@cis.ibaraki.ac.jp>. * Added Emacs 21 font lock support. * `,' and `.' no longer removes italic correction. * `graphicx' and `graphics' style support. Donated by Ryuichi Arafune <arafune@ushioda.riec.tohoku.ac.jp>. * `LaTeX-math-abbrev-prefix' now accepts vector value. Reported by Jan Vroonhof <vroonhof@math.ethz.ch>. * Improved Texinfo support(more environments and html). Patch by Akim Demaille <akim@epita.fr>. * `danish' quotes support. Suggested by arne@daimi.au.dk (Arne Joergensen). * Some PDF support. * New `tex-mik.el' file for MikTeX support. * Some commands now have their own history. Suggested by Werner LEMBERG <sx0005@sx2.HRZ.Uni-Dortmund.DE>. * Use `\centering' instead of center environment in figures. Patch by Stefan Monnier <foo@acm.com>. * New `dwim' setting for `TeX-master' attempts to guess a default master for new files. Patch by Stefan Monnier <foo@acm.com>. * `ngerman' style support. Just a copy of the german style support. * Removed support for Emacs 18 and 19. * `mdwlist' support. Patch by Stephen Heilbronner <heilbron@nm.informatik.uni-muenchen.de>. * Fixed various bugs with the babel package. * `amsart' and `amsbook' now loads `amsthm' by default. Patch by Rune Kleveland <runekl@math.uio.no>. * Fixed bug with file searching. Reported by Berwin Turlach <bturlach@maths.adelaide.edu.au>. * Finalized index support, added index-related style files. Patch by Carsten Dominik <dominik@strw.leidenuniv.nl>. * New style files for `varioref.sty' and `fancyref.sty'. Patch by Carsten Dominik <dominik@strw.leidenuniv.nl>. * `texmathp' recognizes additional macros like `\fbox'. Patch by Ulrik Vieth <vieth@thphy.uni-duesseldorf.de>.
Diffstat (limited to 'print/auctex')
-rw-r--r--print/auctex/Makefile15
-rw-r--r--print/auctex/distinfo6
-rw-r--r--print/auctex/patches/patch-ab13
-rw-r--r--print/auctex/pkg/MESSAGE18
-rw-r--r--print/auctex/pkg/PLIST38
5 files changed, 48 insertions, 42 deletions
diff --git a/print/auctex/Makefile b/print/auctex/Makefile
index 19dd1d8ea77..9bbfe8c6bf0 100644
--- a/print/auctex/Makefile
+++ b/print/auctex/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2001/04/14 21:43:58 jtb Exp $
+# $NetBSD: Makefile,v 1.5 2001/04/19 22:23:45 jtb Exp $
-DISTNAME= auctex-9.9p
+DISTNAME= auctex-10.0g
CATEGORIES= print
MASTER_SITES= ftp://ftp.sunsite.auc.dk/pub/emacs/auctex/ftp/auctex/
@@ -27,13 +27,13 @@ INFO_FILES+= auctex
.endif
PLIST_SUBST+= LISPDIR=${LISPDIR} INFODIR=${INFODIR}
+MESSAGE_SUBST+= LISPDIR=${LISPDIR}
post-patch:
- @for t in ${WRKSRC}/tex-site.el; do \
+ ${MV} ${WRKSRC}/tex-site.el ${WRKSRC}/tex-site.el.orig
${SED} -e 's:@LISPDIR@:'${LISPDIR}':g' \
-e 's:@TEX_PREFIX@:'${TEX_PREFIX}':g' \
- < $$t > $$t.tmp && ${MV} $$t.tmp $$t; \
- done
+ ${WRKSRC}/tex-site.el.orig > ${WRKSRC}/tex-site.el
${CP} ${WRKSRC}/tex-site.el ${WRKSRC}/tex-site.el.dist
post-build:
@@ -47,11 +47,10 @@ do-install:
.if !exists(${PREFIX}/${LISPDIR}/tex-site.el)
${INSTALL_DATA} ${WRKSRC}/tex-site.el ${PREFIX}/${LISPDIR}
.endif
- @for e in auc-old.el bib-cite.el font-latex.el hilit-LaTeX.el \
+ for f in auc-old.el bib-cite.el font-latex.el hilit-LaTeX.el \
latex.el lpath.el multi-prompt.el tex-buf.el tex-info.el tex-jp.el \
tex.el texmathp.el; do \
- i="${INSTALL_DATA} ${WRKSRC}/$$e* ${PREFIX}/${LISPDIR}/auctex/"; \
- ${ECHO} $$i; $$i; \
+ ${INSTALL_DATA} ${WRKSRC}/$$f* ${PREFIX}/${LISPDIR}/auctex/; \
done
${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR}/auctex/style
${INSTALL_DATA} ${WRKSRC}/style/*.el* ${PREFIX}/${LISPDIR}/auctex/style
diff --git a/print/auctex/distinfo b/print/auctex/distinfo
index ad430afd265..f60436a7fdc 100644
--- a/print/auctex/distinfo
+++ b/print/auctex/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2001/04/17 11:43:27 agc Exp $
+$NetBSD: distinfo,v 1.2 2001/04/19 22:23:45 jtb Exp $
-MD5 (auctex-9.9p.tar.gz) = d20c048f8f90c9281dbef4d51b707e09
+SHA1 (auctex-10.0g.tar.gz) = b73539603ce1967560d1a9494b003ac292440d9d
+Size (auctex-10.0g.tar.gz) = 283767 bytes
SHA1 (patch-aa) = b0c04b4d27fc90ec01673c002c9e529ccde9afde
-SHA1 (patch-ab) = 8fbe74c1a5310de4b6961a4c5fceca497e9bb37f
SHA1 (patch-ac) = 27f38d4176f542f4a69044ba7697197fd2556c8e
diff --git a/print/auctex/patches/patch-ab b/print/auctex/patches/patch-ab
deleted file mode 100644
index dbec6c36e42..00000000000
--- a/print/auctex/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2000/12/02 07:49:27 jtb Exp $
-
---- doc/auc-tex.texi.orig Mon Oct 9 01:06:31 2000
-+++ doc/auc-tex.texi
-@@ -2,7 +2,7 @@
- @setfilename auctex
- @settitle AUC TeX
- @direntry
--* AUCTeX:: A much enhanced LaTeX mode for GNU Emacs.
-+* AUCTeX: (auctex). A much enhanced LaTeX mode for GNU Emacs.
- @end direntry
- @c footnotestyle separate
- @c paragraphindent 2
diff --git a/print/auctex/pkg/MESSAGE b/print/auctex/pkg/MESSAGE
index 68e553d8da2..9e6e55b11ca 100644
--- a/print/auctex/pkg/MESSAGE
+++ b/print/auctex/pkg/MESSAGE
@@ -1,17 +1,19 @@
===================================================================
-$NetBSD: MESSAGE,v 1.2 2001/02/06 14:24:13 wiz Exp $
+$NetBSD: MESSAGE,v 1.3 2001/04/19 22:23:46 jtb Exp $
-To customize AUC TeX you will need to edit the file `tex-site.el' in
-the site-lisp directory (${PREFIX}/share/emacs/site-lisp). Add the
-parts of `tex.el' (in the `auctex' subdirectory) which need to be
-changed to `tex-site.el'. This way you can keep your customizations
-and they will not get deleted when you update to a newer version of
-AUC TeX.
+To customize AUC TeX you will need to edit the file
+
+ `${PREFIX}/${LISPDIR}/tex-site.el'
+
+in the site lisp directory. Add the parts of `tex.el' (in the
+`auctex' subdirectory) which need to be changed to `tex-site.el'. This
+way you can keep your customizations and they will not get deleted
+when you update to a newer version of AUC TeX.
You may then put
(require 'tex-site)
-in you .emacs.el file.
+in you `.emacs.el' file.
===================================================================
diff --git a/print/auctex/pkg/PLIST b/print/auctex/pkg/PLIST
index fd5371de199..f71b2f6b217 100644
--- a/print/auctex/pkg/PLIST
+++ b/print/auctex/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2001/03/01 18:50:06 jtb Exp $
+@comment $NetBSD: PLIST,v 1.3 2001/04/19 22:23:46 jtb Exp $
@unexec install-info --delete --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex
${INFODIR}/auctex
${INFODIR}/auctex-1
@@ -15,15 +15,6 @@ ${LISPDIR}/auctex/latex.elc
${LISPDIR}/auctex/lpath.el
${LISPDIR}/auctex/multi-prompt.el
${LISPDIR}/auctex/multi-prompt.elc
-${LISPDIR}/auctex/tex-buf.el
-${LISPDIR}/auctex/tex-buf.elc
-${LISPDIR}/auctex/tex-info.el
-${LISPDIR}/auctex/tex-info.elc
-${LISPDIR}/auctex/tex-jp.el
-${LISPDIR}/auctex/tex.el
-${LISPDIR}/auctex/tex.elc
-${LISPDIR}/auctex/texmathp.el
-${LISPDIR}/auctex/texmathp.elc
${LISPDIR}/auctex/style/amsart.el
${LISPDIR}/auctex/style/amsart.elc
${LISPDIR}/auctex/style/amsbook.el
@@ -56,12 +47,20 @@ ${LISPDIR}/auctex/style/dutch.el
${LISPDIR}/auctex/style/dutch.elc
${LISPDIR}/auctex/style/epsf.el
${LISPDIR}/auctex/style/epsf.elc
+${LISPDIR}/auctex/style/fancyref.el
+${LISPDIR}/auctex/style/fancyref.elc
${LISPDIR}/auctex/style/foils.el
${LISPDIR}/auctex/style/foils.elc
${LISPDIR}/auctex/style/german.el
${LISPDIR}/auctex/style/german.elc
+${LISPDIR}/auctex/style/graphics.el
+${LISPDIR}/auctex/style/graphics.elc
+${LISPDIR}/auctex/style/graphicx.el
+${LISPDIR}/auctex/style/graphicx.elc
${LISPDIR}/auctex/style/harvard.el
${LISPDIR}/auctex/style/harvard.elc
+${LISPDIR}/auctex/style/index.el
+${LISPDIR}/auctex/style/index.elc
${LISPDIR}/auctex/style/j-article.el
${LISPDIR}/auctex/style/j-article.elc
${LISPDIR}/auctex/style/j-book.el
@@ -78,8 +77,16 @@ ${LISPDIR}/auctex/style/latexinfo.el
${LISPDIR}/auctex/style/latexinfo.elc
${LISPDIR}/auctex/style/letter.el
${LISPDIR}/auctex/style/letter.elc
+${LISPDIR}/auctex/style/makeidx.el
+${LISPDIR}/auctex/style/makeidx.elc
+${LISPDIR}/auctex/style/mdwlist.el
+${LISPDIR}/auctex/style/mdwlist.elc
+${LISPDIR}/auctex/style/multind.el
+${LISPDIR}/auctex/style/multind.elc
${LISPDIR}/auctex/style/natbib.el
${LISPDIR}/auctex/style/natbib.elc
+${LISPDIR}/auctex/style/ngerman.el
+${LISPDIR}/auctex/style/ngerman.elc
${LISPDIR}/auctex/style/plfonts.el
${LISPDIR}/auctex/style/plfonts.elc
${LISPDIR}/auctex/style/plhb.el
@@ -94,8 +101,19 @@ ${LISPDIR}/auctex/style/slovak.el
${LISPDIR}/auctex/style/slovak.elc
${LISPDIR}/auctex/style/swedish.el
${LISPDIR}/auctex/style/swedish.elc
+${LISPDIR}/auctex/style/varioref.el
+${LISPDIR}/auctex/style/varioref.elc
${LISPDIR}/auctex/style/virtex.el
${LISPDIR}/auctex/style/virtex.elc
+${LISPDIR}/auctex/tex-buf.el
+${LISPDIR}/auctex/tex-buf.elc
+${LISPDIR}/auctex/tex-info.el
+${LISPDIR}/auctex/tex-info.elc
+${LISPDIR}/auctex/tex-jp.el
+${LISPDIR}/auctex/tex.el
+${LISPDIR}/auctex/tex.elc
+${LISPDIR}/auctex/texmathp.el
+${LISPDIR}/auctex/texmathp.elc
${LISPDIR}/tex-site.el.dist
@dirrm ${LISPDIR}/auctex/style
@dirrm ${LISPDIR}/auctex