diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2002-09-16 03:31:26 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2002-09-16 03:31:26 +0000 |
commit | 9bee27009c43076d662f3f25d13e8e03cd6938b0 (patch) | |
tree | 5d8ec3e223686e4139ecb38e693ef349e136937f /print/auctex | |
parent | 8041c8567125c1c86e781d9abb6652b025586210 (diff) | |
download | pkgsrc-9bee27009c43076d662f3f25d13e8e03cd6938b0.tar.gz |
Update to auctex 11.11.
News in 11
==========
* Support for `prosper.sty', see <http://prosper.sourceforge.net/>.
Contributed by Phillip Lord <p.lord@russet.org.uk>.
* `comment-region' now inserts %% by default. Suggested by "Davide
G. M. Salvetti" <salve@debian.org>.
* You can now switch between using the `font-latex' (all emacsen),
the `tex-font' (Emacs 21 only) or no special package for font
locking. Customize `TeX-install-font-lock' for this.
* Now use -t landscape by default when landscape option appears.
Suggested by Erik Frisk <frisk@isy.liu.se>.
* Use `tex-fptex.el' for fpTeX support. Contributed by Fabrice
Popineau <Fabrice.Popineau@supelec.fr>.
* New user option `LaTeX-top-caption-list' specifies environments
where the caption should go at top. Contributed by
ataka@milk.freemail.ne.jp (Masayuki Ataka).
* Allow explicit dimensions in `graphicx.sty'. Contributed by
ataka@milk.freemail.ne.jp (Masayuki Ataka).
* Limited support for `verbatim.sty'. Contributed by
ataka@milk.freemail.ne.jp (Masayuki Ataka).
* Better support for asmmath items. Patch by
ataka@milk.freemail.ne.jp (Masayuki Ataka).
* More accurate error parsing. Added by David Kastrup
<David.Kastrup@t-online.de>.
* Bug fixes.
Diffstat (limited to 'print/auctex')
-rw-r--r-- | print/auctex/MESSAGE | 6 | ||||
-rw-r--r-- | print/auctex/Makefile | 36 | ||||
-rw-r--r-- | print/auctex/PLIST | 231 | ||||
-rw-r--r-- | print/auctex/distinfo | 8 | ||||
-rw-r--r-- | print/auctex/patches/patch-aa | 8 |
5 files changed, 146 insertions, 143 deletions
diff --git a/print/auctex/MESSAGE b/print/auctex/MESSAGE index 73e3fd58013..11333f29209 100644 --- a/print/auctex/MESSAGE +++ b/print/auctex/MESSAGE @@ -1,5 +1,5 @@ -=================================================================== -$NetBSD: MESSAGE,v 1.1 2001/10/31 23:27:33 zuntum Exp $ +=========================================================================== +$NetBSD: MESSAGE,v 1.2 2002/09/16 03:31:26 uebayasi Exp $ To customize AUC TeX you will need to edit the file @@ -16,4 +16,4 @@ You may then put in you `.emacs.el' file. -=================================================================== +=========================================================================== diff --git a/print/auctex/Makefile b/print/auctex/Makefile index 85281e9ba4b..bd38de15c12 100644 --- a/print/auctex/Makefile +++ b/print/auctex/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2002/03/13 17:37:33 fredb Exp $ +# $NetBSD: Makefile,v 1.9 2002/09/16 03:31:26 uebayasi Exp $ -DISTNAME= auctex-10.0g -PKGREVISION= 1 +DISTNAME= auctex-11.11 CATEGORIES= print MASTER_SITES= ftp://ftp.sunsite.auc.dk/pub/emacs/auctex/ftp/auctex/ @@ -16,20 +15,18 @@ USE_GMAKE= #defined TEX_PREFIX_DEFAULT= ${LOCALBASE} EVAL_PREFIX+= TEX_PREFIX=teTeX +MAKEFLAGS+= EMACS=${EMACS_BIN} + .if defined(USE_XEMACS) -DEPENDS+= xemacs-[0-9]*:../../editors/xemacs -MAKE_ENV+= EMACS=xemacs -LISPDIR= lib/xemacs/xemacs-packages/lisp -INFODIR= lib/xemacs/xemacs-packages/info +LISPDIR= ${EMACS_LISPPREFIX} +INFODIR= ${EMACS_LISPPREFIX}/../info .else -DEPENDS+= emacs-[0-9]*:../../editors/emacs -MAKE_ENV+= EMACS=emacs -LISPDIR= share/emacs/site-lisp +LISPDIR= ${EMACS_LISPPREFIX} INFODIR= info INFO_FILES+= auctex .endif -PLIST_SUBST+= LISPDIR=${LISPDIR} INFODIR=${INFODIR} +PLIST_SUBST+= INFODIR=${INFODIR} MESSAGE_SUBST+= LISPDIR=${LISPDIR} post-patch: @@ -44,20 +41,21 @@ post-build: cd ${WRKSRC}/doc && ${SETENV} ${MAKE_ENV} ${MAKE} auctex do-install: - ${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR}/auctex - ${INSTALL_DATA} ${WRKSRC}/tex-site.el ${PREFIX}/${LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/tex-site.el.dist ${PREFIX}/${LISPDIR} -.if !exists(${PREFIX}/${LISPDIR}/tex-site.el) - ${INSTALL_DATA} ${WRKSRC}/tex-site.el ${PREFIX}/${LISPDIR} + ${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/auctex + ${INSTALL_DATA} ${WRKSRC}/tex-site.el ${EMACS_LISPPREFIX}/auctex + ${INSTALL_DATA} ${WRKSRC}/tex-site.el.dist ${EMACS_LISPPREFIX}/auctex +.if !exists(${EMACS_LISPPREFIX}/auctex/tex-site.el) + ${INSTALL_DATA} ${WRKSRC}/tex-site.el ${EMACS_LISPPREFIX}/auctex/tex-site.el .endif 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 \ - ${INSTALL_DATA} ${WRKSRC}/$$f* ${PREFIX}/${LISPDIR}/auctex/; \ + ${INSTALL_DATA} ${WRKSRC}/$$f* ${EMACS_LISPPREFIX}/auctex; \ done - ${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR}/auctex/style - ${INSTALL_DATA} ${WRKSRC}/style/*.el* ${PREFIX}/${LISPDIR}/auctex/style + ${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/auctex/style + ${INSTALL_DATA} ${WRKSRC}/style/*.el* ${EMACS_LISPPREFIX}/auctex/style ${INSTALL_DATA} ${WRKSRC}/doc/auctex* ${PREFIX}/${INFODIR} +.include "../../mk/emacs.mk" .include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/print/auctex/PLIST b/print/auctex/PLIST index 28f40b464a6..6c068a32919 100644 --- a/print/auctex/PLIST +++ b/print/auctex/PLIST @@ -1,119 +1,124 @@ -@comment $NetBSD: PLIST,v 1.2 2002/02/18 15:14:38 seb Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/09/16 03:31:26 uebayasi Exp $ @unexec ${INSTALL_INFO} --delete --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex ${INFODIR}/auctex ${INFODIR}/auctex-1 ${INFODIR}/auctex-2 ${INFODIR}/auctex-3 @exec ${INSTALL_INFO} --info-dir=%D/${INFODIR} %D/${INFODIR}/auctex -${LISPDIR}/auctex/auc-old.el -${LISPDIR}/auctex/auc-old.elc -${LISPDIR}/auctex/bib-cite.el -${LISPDIR}/auctex/font-latex.el -${LISPDIR}/auctex/hilit-LaTeX.el -${LISPDIR}/auctex/latex.el -${LISPDIR}/auctex/latex.elc -${LISPDIR}/auctex/lpath.el -${LISPDIR}/auctex/multi-prompt.el -${LISPDIR}/auctex/multi-prompt.elc -${LISPDIR}/auctex/style/amsart.el -${LISPDIR}/auctex/style/amsart.elc -${LISPDIR}/auctex/style/amsbook.el -${LISPDIR}/auctex/style/amsbook.elc -${LISPDIR}/auctex/style/amsbsy.el -${LISPDIR}/auctex/style/amsbsy.elc -${LISPDIR}/auctex/style/amsmath.el -${LISPDIR}/auctex/style/amsmath.elc -${LISPDIR}/auctex/style/amsopn.el -${LISPDIR}/auctex/style/amsopn.elc -${LISPDIR}/auctex/style/amstex.el -${LISPDIR}/auctex/style/amstex.elc -${LISPDIR}/auctex/style/amstext.el -${LISPDIR}/auctex/style/amstext.elc -${LISPDIR}/auctex/style/amsthm.el -${LISPDIR}/auctex/style/amsthm.elc -${LISPDIR}/auctex/style/article.el -${LISPDIR}/auctex/style/article.elc -${LISPDIR}/auctex/style/book.el -${LISPDIR}/auctex/style/book.elc -${LISPDIR}/auctex/style/czech.el -${LISPDIR}/auctex/style/czech.elc -${LISPDIR}/auctex/style/danish.el -${LISPDIR}/auctex/style/danish.elc -${LISPDIR}/auctex/style/dinbrief.el -${LISPDIR}/auctex/style/dinbrief.elc -${LISPDIR}/auctex/style/dk.el -${LISPDIR}/auctex/style/dk.elc -${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 -${LISPDIR}/auctex/style/j-book.elc -${LISPDIR}/auctex/style/j-report.el -${LISPDIR}/auctex/style/j-report.elc -${LISPDIR}/auctex/style/jarticle.el -${LISPDIR}/auctex/style/jarticle.elc -${LISPDIR}/auctex/style/jbook.el -${LISPDIR}/auctex/style/jbook.elc -${LISPDIR}/auctex/style/jreport.el -${LISPDIR}/auctex/style/jreport.elc -${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 -${LISPDIR}/auctex/style/plhb.elc -${LISPDIR}/auctex/style/psfig.el -${LISPDIR}/auctex/style/psfig.elc -${LISPDIR}/auctex/style/report.el -${LISPDIR}/auctex/style/report.elc -${LISPDIR}/auctex/style/slides.el -${LISPDIR}/auctex/style/slides.elc -${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 +${EMACS_LISPPREFIX}/auctex/auc-old.el +${EMACS_LISPPREFIX}/auctex/auc-old.elc +${EMACS_LISPPREFIX}/auctex/bib-cite.el +${EMACS_LISPPREFIX}/auctex/font-latex.el +${EMACS_LISPPREFIX}/auctex/font-latex.elc +${EMACS_LISPPREFIX}/auctex/hilit-LaTeX.el +${EMACS_LISPPREFIX}/auctex/latex.el +${EMACS_LISPPREFIX}/auctex/latex.elc +${EMACS_LISPPREFIX}/auctex/lpath.el +${EMACS_LISPPREFIX}/auctex/multi-prompt.el +${EMACS_LISPPREFIX}/auctex/multi-prompt.elc +${EMACS_LISPPREFIX}/auctex/style/amsart.el +${EMACS_LISPPREFIX}/auctex/style/amsart.elc +${EMACS_LISPPREFIX}/auctex/style/amsbook.el +${EMACS_LISPPREFIX}/auctex/style/amsbook.elc +${EMACS_LISPPREFIX}/auctex/style/amsbsy.el +${EMACS_LISPPREFIX}/auctex/style/amsbsy.elc +${EMACS_LISPPREFIX}/auctex/style/amsmath.el +${EMACS_LISPPREFIX}/auctex/style/amsmath.elc +${EMACS_LISPPREFIX}/auctex/style/amsopn.el +${EMACS_LISPPREFIX}/auctex/style/amsopn.elc +${EMACS_LISPPREFIX}/auctex/style/amstex.el +${EMACS_LISPPREFIX}/auctex/style/amstex.elc +${EMACS_LISPPREFIX}/auctex/style/amstext.el +${EMACS_LISPPREFIX}/auctex/style/amstext.elc +${EMACS_LISPPREFIX}/auctex/style/amsthm.el +${EMACS_LISPPREFIX}/auctex/style/amsthm.elc +${EMACS_LISPPREFIX}/auctex/style/article.el +${EMACS_LISPPREFIX}/auctex/style/article.elc +${EMACS_LISPPREFIX}/auctex/style/book.el +${EMACS_LISPPREFIX}/auctex/style/book.elc +${EMACS_LISPPREFIX}/auctex/style/czech.el +${EMACS_LISPPREFIX}/auctex/style/czech.elc +${EMACS_LISPPREFIX}/auctex/style/danish.el +${EMACS_LISPPREFIX}/auctex/style/danish.elc +${EMACS_LISPPREFIX}/auctex/style/dinbrief.el +${EMACS_LISPPREFIX}/auctex/style/dinbrief.elc +${EMACS_LISPPREFIX}/auctex/style/dk.el +${EMACS_LISPPREFIX}/auctex/style/dk.elc +${EMACS_LISPPREFIX}/auctex/style/dutch.el +${EMACS_LISPPREFIX}/auctex/style/dutch.elc +${EMACS_LISPPREFIX}/auctex/style/epsf.el +${EMACS_LISPPREFIX}/auctex/style/epsf.elc +${EMACS_LISPPREFIX}/auctex/style/fancyref.el +${EMACS_LISPPREFIX}/auctex/style/fancyref.elc +${EMACS_LISPPREFIX}/auctex/style/foils.el +${EMACS_LISPPREFIX}/auctex/style/foils.elc +${EMACS_LISPPREFIX}/auctex/style/german.el +${EMACS_LISPPREFIX}/auctex/style/german.elc +${EMACS_LISPPREFIX}/auctex/style/graphics.el +${EMACS_LISPPREFIX}/auctex/style/graphics.elc +${EMACS_LISPPREFIX}/auctex/style/graphicx.el +${EMACS_LISPPREFIX}/auctex/style/graphicx.elc +${EMACS_LISPPREFIX}/auctex/style/harvard.el +${EMACS_LISPPREFIX}/auctex/style/harvard.elc +${EMACS_LISPPREFIX}/auctex/style/index.el +${EMACS_LISPPREFIX}/auctex/style/index.elc +${EMACS_LISPPREFIX}/auctex/style/j-article.el +${EMACS_LISPPREFIX}/auctex/style/j-article.elc +${EMACS_LISPPREFIX}/auctex/style/j-book.el +${EMACS_LISPPREFIX}/auctex/style/j-book.elc +${EMACS_LISPPREFIX}/auctex/style/j-report.el +${EMACS_LISPPREFIX}/auctex/style/j-report.elc +${EMACS_LISPPREFIX}/auctex/style/jarticle.el +${EMACS_LISPPREFIX}/auctex/style/jarticle.elc +${EMACS_LISPPREFIX}/auctex/style/jbook.el +${EMACS_LISPPREFIX}/auctex/style/jbook.elc +${EMACS_LISPPREFIX}/auctex/style/jreport.el +${EMACS_LISPPREFIX}/auctex/style/jreport.elc +${EMACS_LISPPREFIX}/auctex/style/latexinfo.el +${EMACS_LISPPREFIX}/auctex/style/latexinfo.elc +${EMACS_LISPPREFIX}/auctex/style/letter.el +${EMACS_LISPPREFIX}/auctex/style/letter.elc +${EMACS_LISPPREFIX}/auctex/style/makeidx.el +${EMACS_LISPPREFIX}/auctex/style/makeidx.elc +${EMACS_LISPPREFIX}/auctex/style/mdwlist.el +${EMACS_LISPPREFIX}/auctex/style/mdwlist.elc +${EMACS_LISPPREFIX}/auctex/style/multind.el +${EMACS_LISPPREFIX}/auctex/style/multind.elc +${EMACS_LISPPREFIX}/auctex/style/natbib.el +${EMACS_LISPPREFIX}/auctex/style/natbib.elc +${EMACS_LISPPREFIX}/auctex/style/ngerman.el +${EMACS_LISPPREFIX}/auctex/style/ngerman.elc +${EMACS_LISPPREFIX}/auctex/style/plfonts.el +${EMACS_LISPPREFIX}/auctex/style/plfonts.elc +${EMACS_LISPPREFIX}/auctex/style/plhb.el +${EMACS_LISPPREFIX}/auctex/style/plhb.elc +${EMACS_LISPPREFIX}/auctex/style/prosper.el +${EMACS_LISPPREFIX}/auctex/style/prosper.elc +${EMACS_LISPPREFIX}/auctex/style/psfig.el +${EMACS_LISPPREFIX}/auctex/style/psfig.elc +${EMACS_LISPPREFIX}/auctex/style/report.el +${EMACS_LISPPREFIX}/auctex/style/report.elc +${EMACS_LISPPREFIX}/auctex/style/slides.el +${EMACS_LISPPREFIX}/auctex/style/slides.elc +${EMACS_LISPPREFIX}/auctex/style/slovak.el +${EMACS_LISPPREFIX}/auctex/style/slovak.elc +${EMACS_LISPPREFIX}/auctex/style/swedish.el +${EMACS_LISPPREFIX}/auctex/style/swedish.elc +${EMACS_LISPPREFIX}/auctex/style/varioref.el +${EMACS_LISPPREFIX}/auctex/style/varioref.elc +${EMACS_LISPPREFIX}/auctex/style/verbatim.el +${EMACS_LISPPREFIX}/auctex/style/verbatim.elc +${EMACS_LISPPREFIX}/auctex/style/virtex.el +${EMACS_LISPPREFIX}/auctex/style/virtex.elc +${EMACS_LISPPREFIX}/auctex/tex-buf.el +${EMACS_LISPPREFIX}/auctex/tex-buf.elc +${EMACS_LISPPREFIX}/auctex/tex-info.el +${EMACS_LISPPREFIX}/auctex/tex-info.elc +${EMACS_LISPPREFIX}/auctex/tex-jp.el +${EMACS_LISPPREFIX}/auctex/tex-site.el.dist +${EMACS_LISPPREFIX}/auctex/tex.el +${EMACS_LISPPREFIX}/auctex/tex.elc +${EMACS_LISPPREFIX}/auctex/texmathp.el +${EMACS_LISPPREFIX}/auctex/texmathp.elc +@dirrm ${EMACS_LISPPREFIX}/auctex/style +@exec ${RMDIR} %D/${EMACS_LISPPREFIX}/auctex || ${TRUE} diff --git a/print/auctex/distinfo b/print/auctex/distinfo index d39885b5484..74c7778d716 100644 --- a/print/auctex/distinfo +++ b/print/auctex/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2002/02/18 15:14:38 seb Exp $ +$NetBSD: distinfo,v 1.4 2002/09/16 03:31:26 uebayasi Exp $ -SHA1 (auctex-10.0g.tar.gz) = b73539603ce1967560d1a9494b003ac292440d9d -Size (auctex-10.0g.tar.gz) = 283767 bytes -SHA1 (patch-aa) = b0c04b4d27fc90ec01673c002c9e529ccde9afde +SHA1 (auctex-11.11.tar.gz) = b0c3f7cb5f79754c61a5db792b0fba8269c2f316 +Size (auctex-11.11.tar.gz) = 288669 bytes +SHA1 (patch-aa) = 1dae8ed2f709ccfe99c70c35ba20c171094b3b6c SHA1 (patch-ab) = 08e32149fd6aa7d26c21f1881acdab54ce51b950 SHA1 (patch-ac) = 27f38d4176f542f4a69044ba7697197fd2556c8e diff --git a/print/auctex/patches/patch-aa b/print/auctex/patches/patch-aa index 888b75c5d20..43f60338a8b 100644 --- a/print/auctex/patches/patch-aa +++ b/print/auctex/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.2 2001/03/01 18:50:06 jtb Exp $ +$NetBSD: patch-aa,v 1.3 2002/09/16 03:31:27 uebayasi Exp $ ---- Makefile.orig Thu Feb 11 10:19:48 1999 +--- Makefile.orig Thu Jan 24 18:55:33 2002 +++ Makefile @@ -10,7 +10,7 @@ ##---------------------------------------------------------------------- @@ -16,11 +16,11 @@ $NetBSD: patch-aa,v 1.2 2001/03/01 18:50:06 jtb Exp $ # Name of your emacs binary -EMACS=emacs -+#EMACS=emacs ++EMACS=${EMACS_BIN} ##---------------------------------------------------------------------- ## YOU MAY NEED TO EDIT THESE -@@ -106,7 +106,7 @@ +@@ -111,7 +111,7 @@ some: $(AUCELC) $(STYLESRC:.el=.elc) |