--- auctex-11.83.orig/doc/Makefile.in +++ auctex-11.83/doc/Makefile.in @@ -42,18 +42,16 @@ dist: $(DISTTEXTS) preview-latex.info auctex.info -extradist: html/auctex_toc.html auctex.ps auctex.pdf tex-ref.ps tex-ref.pdf +extradist: auctex.htmls/auctex.html auctex.ps auctex.pdf tex-ref.ps tex-ref.pdf .PHONY: all info dvi dist install-auctex disttexts clean distclean \ maintainer-clean install-preview install-man html-docs extradist # AUCTeX -html/auctex_toc.html: auctex.texi - rm -rf html - mkdir html - cd html && $(TEXI2HTML) -split_node -I .. ../auctex.texi && \ - test ! -d auctex || { mv auctex/* . && rm -rf auctex ; } +auctex.htmls/auctex.html: auctex.texi + rm -rf auctex.htmls/ + $(TEXI2HTML) --output=auctex.htmls -split=chapter $< tex-ref.dvi: tex-ref.tex $(TEX) tex-ref @@ -89,11 +87,12 @@ # preview -preview-latex/index.html: $(PREVIEWTEXIFILES) - rm -f preview-latex/* - $(TEXI2HTML) preview-latex.texi +preview-latex.htmls/preview-latex.html: $(PREVIEWTEXIFILES) + rm -rf preview-latex.htmls/ + $(TEXI2HTML) --output=preview-latex.htmls \ + -split=chapter preview-latex.texi -html-docs: preview-latex/index.html +html-docs: preview-latex.htmls/preview-latex.html preview-dtxdoc.texi: ../preview/latex/preview.dtx preview-dtxdoc.pl -$(PERL) preview-dtxdoc.pl ../preview/latex/preview.dtx \ @@ -149,8 +148,8 @@ clean: rm -f *.dvi *.ps *.pdf *.aux *.cp *.fn *.ky *.log *~ \#*\# \ *.tp *.vr *.pg *.toc *.tp *.bak *.cps *.kys *.tps \ - *.fns *.vrs *.pgs *.tmp *.html - rm -rf html preview-latex + *.fns *.vrs *.pgs *.tmp + rm -rf auctex.htmls/ preview-latex.htmls/ distclean: clean rm -f Makefile --- auctex-11.83.orig/Makefile.in +++ auctex-11.83/Makefile.in @@ -102,7 +102,7 @@ CLEANFILES = $(AUCELC) $(STYLEELC) $(MULEELC) DISTCLEANFILES = Makefile tex-site.el tex-site.el.out auctex.el \ - auto-loads.el config.* + auto-loads.el* config.* DISTTEXTS = FAQ INSTALL INSTALL.windows README TODO NOSEARCH = style/.nosearch @@ -110,7 +110,7 @@ all: lisp $(DESCEND) -.PHONY: all lisp info dvi some install install-el install-lisp \ +.PHONY: all lisp info dvi install install-el install-lisp \ install-docs install-auto \ install-metadata install-startup install-man \ clean distclean snapshot check-dist release-commit \ @@ -157,8 +157,6 @@ } ; \ } -some: $(AUCELC) $(STYLEELC) - install: install-lisp install-docs install-images install-startup $(DESCEND) $(MAKE) 'DESTDIR=$(DESTDIR)' install-metadata @@ -200,7 +198,7 @@ -$(MKINSTALLDIRS) $(DESTDIR)$(autodir) -$(INSTALL_DATA) $(NOSEARCH) $(DESTDIR)$(autodir) -install-lisp: some install-el +install-lisp: lisp install-el for x in $(AUCSRC) $(MULESRC); do \ echo ' $(INSTALL_DATA)' $${x}c '$(DESTDIR)$(packagelispdir)' ; \ $(INSTALL_DATA) $${x}c $(DESTDIR)$(packagelispdir) ; \ @@ -255,7 +253,7 @@ maintainer-clean: distclean rm -f $(DISTTEXTS) - rm -rf autom4te.cache + find . -type d -name autom4te.cache | xargs rm -rf extraclean: maintainer-clean rm -f *~ \#*\# --- auctex-11.83.orig/latex.el +++ auctex-11.83/latex.el @@ -4706,7 +4706,9 @@ (setq TeX-command-default "LaTeX") (setq TeX-sentinel-default-function 'TeX-LaTeX-sentinel) (add-hook 'tool-bar-mode-on-hook 'LaTeX-maybe-install-toolbar) - (when (if (featurep 'xemacs) (featurep 'toolbar) tool-bar-mode) + (when (if (featurep 'xemacs) + (featurep 'toolbar) + (and (boundp 'tool-bar-mode) tool-bar-mode)) (LaTeX-maybe-install-toolbar)) (TeX-run-mode-hooks 'text-mode-hook 'TeX-mode-hook 'LaTeX-mode-hook) (TeX-set-mode-name) --- auctex-11.83.orig/tex.el +++ auctex-11.83/tex.el @@ -4732,7 +4732,6 @@ (interactive) (info "auctex")) -(autoload 'Info-find-file "info") (autoload 'info-lookup->completions "info-look") (defvar TeX-doc-backend-alist @@ -4744,7 +4743,11 @@ (call-process "texdoc" nil 0 nil doc))) (latex-info (latex-mode) (lambda () - (when (Info-find-file "latex" t) + (when (condition-case nil + (save-window-excursion + (info "latex" (generate-new-buffer-name "*info*")) + t) + (error nil)) (mapcar (lambda (x) (let ((x (car x))) (if (string-match "\\`\\\\" x) @@ -4754,7 +4757,12 @@ (info-lookup-symbol (concat "\\" doc) 'latex-mode))) (texinfo-info (texinfo-mode) (lambda () - (when (Info-find-file "texinfo" t) + (when (condition-case nil + (save-window-excursion + (info "texinfo" + (generate-new-buffer-name "*info*")) + t) + (error nil)) (mapcar (lambda (x) (let ((x (car x))) (if (string-match "\\`@" x) @@ -4793,7 +4801,7 @@ (if (null docs) (message "No documentation found") ;; Ask the user about the package, command, or document. - (when (and (called-interactively-p) + (when (and (interactive-p) (or (not name) (string= name ""))) (let ((symbol (thing-at-point 'symbol)) contained completions doc) --- auctex-11.83.orig/preview/Makefile.in +++ auctex-11.83/preview/Makefile.in @@ -59,7 +59,7 @@ install-hint: @echo 'Congratulations! Build is complete.' - @echo + @echo @echo 'Now, run "make install" as root, or whatever user has permissions' @echo 'to write to the install directory.' @@ -129,13 +129,13 @@ clean: rm -f latex.out testdocstrip.tex preview-latex.el - rm -rf *.prv *.elc *~ *.aux *.dvi *.log + rm -rf *.prv *.elc *~ *.aux *.dvi *.log (cd latex ; $(MAKE) clean) distclean: clean rm -f config.log config.cache config.status rm -f Makefile */Makefile auto.el -maintainer-clean: +maintainer-clean: distclean $(MAKE) distclean rm -rf autom4te.cache --- auctex-11.83.orig/preview/latex/Makefile.in +++ auctex-11.83/preview/latex/Makefile.in @@ -57,5 +57,5 @@ $(PDFLATEX) '\nonstopmode \AtBeginDocument{\OnlyDescription}\input{preview.drv}' clean: - rm -f *~ *.aux *.dvi *.drv *.log - rm -f $(TEXMFGEN) preview.ins preview-mk.ins + rm -f *~ *.aux *.dvi *.drv *.log *.pdf + rm -f $(TEXMFGEN) preview.ins preview-mk.ins --- auctex-11.83.orig/preview/latex/preview.idx +++ auctex-11.83/preview/latex/preview.idx @@ -0,0 +1,12 @@ +\indexentry{preview={\ttfamily preview} (environment)|usage}{6} +\indexentry{environments:preview=>{\ttfamily preview}|usage}{6} +\indexentry{nopreview={\ttfamily nopreview} (environment)|usage}{6} +\indexentry{environments:nopreview=>{\ttfamily nopreview}|usage}{6} +\indexentry{PreviewMacro=\verb!*+\PreviewMacro+|usage}{6} +\indexentry{PreviewMacro*=\verb!*+\PreviewMacro*+|usage}{7} +\indexentry{PreviewEnvironment=\verb!*+\PreviewEnvironment+|usage}{8} +\indexentry{PreviewEnvironment*=\verb!*+\PreviewEnvironment*+|usage}{8} +\indexentry{PreviewSnarfEnvironment=\verb!*+\PreviewSnarfEnvironment+|usage}{8} +\indexentry{PreviewOpen=\verb!*+\PreviewOpen+|usage}{8} +\indexentry{PreviewClose=\verb!*+\PreviewClose+|usage}{8} +\indexentry{ifPreview=\verb!*+\ifPreview+|usage}{8} --- auctex-11.83.orig/debian/preview-latex-style/prerm.in +++ auctex-11.83/debian/preview-latex-style/prerm.in @@ -0,0 +1,34 @@ +#include "variables" +#! /bin/bash -e +# +# <% postinst %> script for <:=${PLSPKG}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + deconfigure|failed-upgrade|remove|upgrade) :;; + *) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +<:# deregister documentation with <% doc-base %> :>// +case "${1}" in failed-upgrade|remove|upgrade) + <:=${DREMOVE}:> <:=${PLSPKG}:> +esac + +exit 0 +<: +# arch-tag: 06c80812-acc7-473e-8fd7-77a72bbcdb0c +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: deregister +:>// --- auctex-11.83.orig/debian/preview-latex-style/README.in +++ auctex-11.83/debian/preview-latex-style/README.in @@ -0,0 +1,19 @@ +#include "variables" +The Debian package <:=${PLSPKG}:> +-------------------<:="-" x length (${PLSPKG}):> + + +There are no special Debian notes for this package. + + +-- Davide G. M. Salvetti , <:=$_=gmtime:>. +<: +# arch-tag: a9aeff50-cd75-470a-ac70-65b89b0abb04 +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/bug.presubj.in +++ auctex-11.83/debian/preview-latex-style/bug.presubj.in @@ -0,0 +1,31 @@ +#include "variables" +Remember to cover the basics, that is, what you expected to happen and +what in fact did happen. + +If the bug (or problem) is triggered by a particular file, you should +try to produce a minimal (the shortest the better) sample file which +triggers the problem and include it in your report. + +Your bug report will NOT be automatically sent to the <:=${PLSPKG}:> +upstream developers. It will be sent to the Debian Bug Tracking System + instead, where the Debian <:=${PLSPKG}:> +package maintainer will receive it. He will eventually forward your +report upstream if he thinks it related to the <:=${PLSPKG}:> upstream +sources rather than specific to the <:=${PLSPKG}:> package for Debian. + +If you think that your bug report is not specifically related to the +Debian package and would like to send it directly to the <:=${PLSPKG}:> +upstream developers, abort this bug reporting procedure now and follow +the usual bug reporting upstream conventions of <:=${PLSPKG}:> (look in +the <:=${PLSPKG}:> documentation directory "<:$_=${doc}; +s|${PACKAGE}|${PLSPKG}|g; print:>"). +<: +# arch-tag: 1e05717b-d456-4bd8-8e81-c45e9faf8b5a +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 72 +# ispell-local-dictionary: "american" +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/docbase.in +++ auctex-11.83/debian/preview-latex-style/docbase.in @@ -0,0 +1,32 @@ +#include "variables" +Document: <:=${PLSPKG}:> +Title: The preview Package for LaTeX +Author: David Kastrup +Abstract: The main purpose of this package is the extraction of certain + environments (most notably displayed formulas) from LaTeX sources as graphics. + This works with DVI files postprocessed by either Dvips and Ghostscript or + dvipng, but it also works when you are using PDFTeX for generating PDF files + (usually also postprocessed by Ghostscript). + . + Current uses of the package include the preview-latex package for WYSIWYG + functionality in the AUCTeX editing environment, generation of previews in + LyX, as part of the operation of the ps4pdf package, the tbook XML system and + some other tools. +Section: <:=${MENUSEC}:> + +Format: DVI +Files: <:=if($_="${texmfdoc}/preview.dvi.gz") =~tr|/|/|s:> + +<: +# arch-tag: 4a60674c-df89-4d63-b0f8-1c92e37e7add +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: Kastrup DVI postprocessed Dvips Ghostscript dvipng PDFTeX pdf ps +# LocalWords: WYSIWYG AUCTeX tbook XML LaTeX +:>// --- auctex-11.83.orig/debian/preview-latex-style/postinst.in +++ auctex-11.83/debian/preview-latex-style/postinst.in @@ -0,0 +1,37 @@ +#include "variables" +#! /bin/bash -e +# +# <% postinst %> script for <:=${PLSPKG}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + abort-deconfigure|abort-remove|abort-upgrade|configure) :;; + *) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +<:# rebuild the <% TeX ls-R %> database :> +case "${1}" in abort-remove|configure) + <:=${MKTEXLSR}:> +esac + +<:# register documentation with <% doc-base %> :>// +case "${1}" in abort-remove|abort-upgrade|configure) + <:=${DINSTALL}:> <:=if($_="${docbase}/${PLSPKG}")=~tr|/|/|s:> +esac + +exit 0 +<: +# arch-tag: 3b9edfc5-752f-46b3-a095-3346d42ba686 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/postrm.in +++ auctex-11.83/debian/preview-latex-style/postrm.in @@ -0,0 +1,32 @@ +#include "variables" +#! /bin/bash -e +# +# <% postrm %> script for <:=${PLSPKG}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + abort-install|abort-upgrade|disappear|failed-upgrade|purge|remove|upgrade) :;; + *) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +<:# rebuild the <% TeX ls-R %> database :> +case "${1}" in remove|disappear) + <:=${MKTEXLSR}:> +esac + +exit 0 +<: +# arch-tag: 6148eca7-0e7f-4362-9ae9-dc2eaa90740a +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/lintian.in +++ auctex-11.83/debian/preview-latex-style/lintian.in @@ -0,0 +1,17 @@ +#include "variables" +# <% lintian %> override file for <:=${PLSPKG}:> + +# We do check these. +preview-latex-style binary: maintainer-script-does-not-check-for-existence-of-installdocs postinst +preview-latex-style binary: maintainer-script-does-not-check-for-existence-of-installdocs prerm + +<: +# arch-tag: 214ac567-768e-4dc4-980b-0e947c6da60b +# +# local variables: +# mode: fundamental +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/postinst.in.orig +++ auctex-11.83/debian/preview-latex-style/postinst.in.orig @@ -0,0 +1,33 @@ +#include "variables" +#! /bin/bash -e +# +# <% postinst %> script for <:=${PLSPKG}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + (abort-deconfigure|abort-remove|abort-upgrade|configure) + <:# register documentation with <% doc-base %> :>// + <:=${DINSTALL}:> <:=if($_="${docbase}/${PLSPKG}")=~tr|/|/|s:> + <:# rebuild the <% TeX ls-R %> database :> + <:=${MKTEXLSR}:> + ;; + (*) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 + ;; +esac + +exit 0 +<: +# arch-tag: 3b9edfc5-752f-46b3-a095-3346d42ba686 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/postrm.in.orig +++ auctex-11.83/debian/preview-latex-style/postrm.in.orig @@ -0,0 +1,38 @@ +#include "variables" +#! /bin/bash -e +# +# <% postrm %> script for <:=${PLSPKG}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + (failed-upgrade|remove|upgrade) + <:# rebuild the <% TeX ls-R %> database :> + <:=${MKTEXLSR}:> + ;; + (abort-install|abort-upgrade) + <:# rebuild the <% TeX ls-R %> database :> + <:=${MKTEXLSR}:> + ;; + (disappear|purge) + : + ;; + (*) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 + ;; +esac + +exit 0 +<: +# arch-tag: 6148eca7-0e7f-4362-9ae9-dc2eaa90740a +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/preview-latex-style/prerm.in.orig +++ auctex-11.83/debian/preview-latex-style/prerm.in.orig @@ -0,0 +1,33 @@ +#include "variables" +#! /bin/bash -e +# +# <% postinst %> script for <:=${PLSPKG}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + (deconfigure|remove|upgrade|failed-upgrade) + <:# deregister documentation with <% doc-base %> :>// + <:=${DREMOVE}:> <:=${PLSPKG}:> + ;; + (*) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 + ;; +esac + +exit 0 +<: +# arch-tag: 06c80812-acc7-473e-8fd7-77a72bbcdb0c +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: deregister +:>// --- auctex-11.83.orig/debian/po/ru.po +++ auctex-11.83/debian/po/ru.po @@ -0,0 +1,137 @@ +# Russian translation of the "debian/auctex/templates" file of auctex +# Debian package. +# +# Copyright (C) 2007 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Yuri Kozlov , 2007. +# +# arch-tag: 95d0127a-1b10-4325-a61e-7880f29b842a +msgid "" +msgstr "" +"Project-Id-Version: 11.83-6\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2007-08-04 15:11+0200\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "фоновый" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "оперативный" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "не выполнять" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Режим анализа макросов (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "Для значительного увеличения производительности AUCTeX, каждый макропакет TeX и файл стилей LaTeX, установленный в системе, будет проанализирован." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Это может занять много времени, поэтому, вероятно должно выполняться в " +"фоновом режиме; однако также вы можете выполнить это в оперативном " +"режиме, или анализ может вообще не выполняться. Если вы выберете " +"'фоновый', то подробный протокол обработки можно найти в файле ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Еженедельное задание cron позаботится об обновлении данных, собранных " +"сейчас, поэтому обычно вам не нужно беспокоиться о том, что нужно что-то " +"делать при установке новых пакетов (La)TeX или удалении старых." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "В любом случае, вы можете обновить данные вручную запустив update-auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "на консоль" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "в файл" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Место вывода результатов анализа:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Вы выбрали анализ макропакетов TeX и файлов стилей LaTeX в оперативном " +"режиме. В этом случае, обычно, создаётся много результатов обработки." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"По умолчанию, то есть, при выборе 'в файл' -- весь вывод процесса анализа " +"направляется в файл с именем ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Если вы выберете 'на консоль', то вы увидите все (часто ненужные) результаты " +"прямо в терминале." + --- auctex-11.83.orig/debian/po/ja.po +++ auctex-11.83/debian/po/ja.po @@ -0,0 +1,153 @@ +# Japanese translations of the "debian/auctex/templates" file of the auctex +# Debian package. +# +# Copyright (C) 2006 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Atsushi Shimono , 2006 +# +# arch-tag: 6d2c5550-7555-4bc0-b47d-dc3ddd4fa1c5 +msgid "" +msgstr "" +"Project-Id-Version: auctex_11.83-2\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-10-16 18:50+0200\n" +"Last-Translator: Atsushi Shimono \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "バックグラウンド" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "フォアグラウンド" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "なし" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "(La)TeX マクロの解析モード :" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"AUCTeX のパフォーマンスを劇的に改善するために、インストール済みの全ての TeX " +"マクロパッケージと LaTeX スタイルファイルは解析されます。" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"これには非常に時間がかかりますので、おそらくバックグラウンドで実行すべきであ" +"ると思われます。しかし、フォアグラウンドで実行することも、解析を行わないこと" +"も選択できます。もし、バックグラウンドを選択した場合、解析についての詳細のロ" +"グは、${LOGFILE} に出力されます。" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"毎週の cron ジョブにより、今収集したデータは更新されます。ですので、通常は新" +"しい (La)TeX パッケージを入れたり、古いパッケージを削除した際に気にする必要は" +"ありません。" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "いずれにせよ、update-auctex-elisp を手動で実行することで更新できます。" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "コンソール" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "ファイル" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "解析の出力先 :" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"TeX マクロパッケージと LaTeX スタイルファイルをフォアグラウンドで解析すること" +"を選択しました。もちろん問題ありませんが、非常に大量の出力が生成されます。" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"既定では、つまりこの質問にファイルと答えた場合、解析プロセスの詳細な出力は " +"${LOGFILE} へ出力されます。" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"もしコンソールと答えると、すべての (退屈な) 出力があなたのターミナルへそのま" +"ま出力されます。" + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "AUCTeX の自動読み込み機構は変更されました。" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Debian でのバージョン 11.81-1 から、規定で AUCTeX は自動読み込みになりまし" +#~ "た。もし AUCTeX が標準の Emacs TeX モードを上書きして欲しくないユーザがい" +#~ "る場合、AUCTeX を \"(unload-feature 'tex-site)\" を挿入することで完全に読" +#~ "み込ませないようにできます。(たとえば、完全に AUCTeX を無効にするために" +#~ "は、この文字列を各自の \"~/.emacs\" もしくは \"~/.emacs.el\" へ挿入してく" +#~ "ださい。)" --- auctex-11.83.orig/debian/po/POTFILES.in +++ auctex-11.83/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] auctex/templates --- auctex-11.83.orig/debian/po/de.po +++ auctex-11.83/debian/po/de.po @@ -0,0 +1,162 @@ +# German translations of the "debian/auctex/templates" file +# of the auctex Debian package. +# +# Copyright (C) 2001, 02, 03, 04, 05, 06, 07 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Knut Suebert , 2001 +# Helge Kreutzmann , 2007 +# +# arch-tag: 9f94e80b-a3a0-43a6-a958-20be0e1ab270 +msgid "" +msgstr "" +"Project-Id-Version: auctex 11.83-2.1\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2007-03-03 22:42+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Hintergrund" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Vordergrund" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Nicht" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "(La)TeX-Makros Parsing-Modus:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Zur deutlichen Beschleunigung von AUCTeX kann jedes derzeit bei Ihnen " +"installierte TeX-Makro-Paket und jede LaTeX-Style-Datei im Voraus eingelesen " +"werden." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Das kann eine Weile dauern, daher wird die Bearbeitung im Hintergrund " +"empfohlen. Die Bearbeitung kann allerdings auch im Vordergrund erfolgen, und " +"die Voraus-Bearbeitung kann auch ganz unterbleiben. Wenn Sie die Bearbeitung " +"im Hintergrund whlen, finden Sie eine detaillierte Protokollausgabe in " +"${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Weiterhin wird ein wchentlicher cron-Job auf die Fortschreibung der nun " +"erhobenen Informationen achten, so dass Sie sich fr gewhnlich nicht weiter " +"darum kmmern mssen, wenn Sie LaTeX-Pakete installieren oder entfernen." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"Die Aktualisierung kann zudem von Hand durch Aufruf von update-auctex-elisp " +"erfolgen." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Konsole" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Datei" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Ziel der Parsing-Ausgabe:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Sie whlten die Bearbeitung der Tex-Makros und LaTeX-Styles im Vordergrund. " +"Das ist schon in Ordnung, aber fr gewhnlich wird dabei eine Menge Ausgabe " +"erzeugt." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Standardmig (also bei der Wahl von Datei) wird die weitere Ausgabe des " +"Bearbeitungsprozesses in die Datei ${LOGFILE} umgeleitet." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Wenn Sie mit Konsole antworten, wird die gesamte Ausgabe direkt auf Ihrem " +"Terminal erscheinen." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "Der autoload-Mechanismus von AUCTeX hat sich gendert" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Seit Debian-Version 11.81-1 wird AUCTeX standardmig automatisch " +#~ "geladen. Benutzer, die nicht wollen, dass AUCTeX den Standard-Emacs-TeX-" +#~ "Modus berschreibt knnen AUCTeX komplett entladen, indem sie Formel " +#~ "(unload-feature 'tex-site) ausfhren (d.h., dass sie diese Zeichenkette " +#~ "in ihre persnliche ~/.emacs\\- oder ~/.emacs.el-Datei einfgen, um " +#~ "AUCTeX komplett zu deaktivieren)." + +#~ msgid "Where should parsing output go?" +#~ msgstr "Wohin soll die Parsing-Ausgabe gehen?" --- auctex-11.83.orig/debian/po/es.po +++ auctex-11.83/debian/po/es.po @@ -0,0 +1,161 @@ +# Spanish translations of the "debian/auctex/templates" file +# of the auctex Debian package. +# +# Copyright (C) 2002, 03, 04, 05, 06 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Gorka Olaizola , 2002 +# +# arch-tag: 25041147-3f11-48a2-950f-801621be65ca +msgid "" +msgstr "" +"Project-Id-Version: auctex 11.83.2\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-12-08 15:54+0100\n" +"Last-Translator: Steve Lord Flaubert \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Segundo plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Primer plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Ninguno" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Modo de interpretación de las macros (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Para mejorar el rendimiento de AUCTeX se analizará el contenido de cada " +"paquete de macros TeX y cada fichero de estilos LaTeX instalado en su " +"sistema." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Esto puede tardar mucho tiempo, por lo que probablemente debería\n" +"realizarse en segundo plano; sin embargo puede elegir hacerlo en primer\n" +"plano u omitir por completo el análisis. Si elige hacerlo en segundo\n" +"plano, encontrará un registro detallado del proceso en el fichero:\n" +"${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Una tarea semanal actualizará la información recolectada en esta sesión,\n" +"por lo que no se tiene que preocupar cuando instale nuevos paquetes de\n" +"(La)TeX o desinstale los antiguos." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"De cualquier forma, puede actualizarlos manualmente ejecutando\n" +"update-auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Consola" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Fichero" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Destino de la salida del análisis:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Ha elegido analizar los paquetes de macros TeX y ficheros de estilos LaTeX\n" +"en primer plano. Esto es correcto, pero normalmente también mostrará una\n" +"gran cantidad de información." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Por omisión, esto es , respondiendo «Fichero» a esta pregunta, los\n" +"siguientes mensajes del proceso de análisis se guardarán en un fichero\n" +"llamado: ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Si responde «Consola», verá todos los (aburridos) mensajes en su terminal." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "El mecanismo de carga automática de AUCTeX ha cambiado" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Desde la versión Debian 11.81-1, AUCTeX se carga automáticamente por\n" +#~ "omisión. Los usuarios que no deseen que AUCTeX sobreescriba el modo\n" +#~ "TeX-mode estándar de Emacs pueden deshabilitar AUCTeX totalmente de la\n" +#~ "siguiente forma «(unload-features 'tex-site')» (esto es, ponga la\n" +#~ "siguiente cadena en su archivo de configuración personal «~/.emacs» o\n" +#~ "«~/.emacs.el» para deshabilitar completamente AUCTeX)." + +#~ msgid "Where should parsing output go?" +#~ msgstr "¿A donde se debe enviar la información al analizar?" --- auctex-11.83.orig/debian/po/fr.po +++ auctex-11.83/debian/po/fr.po @@ -0,0 +1,161 @@ +# French translations of the "debian/auctex/templates" file of the auctex +# Debian package. +# +# Copyright (C) 2006 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Steve Petruzzello , 2006 +# +# arch-tag: ed47ffdc-4ea8-481a-b3a7-7998f0455890 +msgid "" +msgstr "" +"Project-Id-Version: auctex_11.83-1\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-10-16 19:02+0200\n" +"Last-Translator: Steve Petruzzello \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" +"X-Poedit-Country: SWITZERLAND\n" +"X-Poedit-SourceCharset: iso-8859-15\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Arrire-plan" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Avant-plan" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Aucun" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Mode d'analyse des macros (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Afin d'augmenter grandement les performances d'AUCTeX, chaque paquet de " +"macros de TeX ainsi que le fichier style de LaTeX installs sur votre site " +"seront analyss." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Ceci risque de prendre beaucoup de temps, ainsi il est prfrable de le " +"faire en arrire-plan; toutefois, vous pouvez aussi choisir de le faire en " +"avant-plan ou encore sauter compltement cette partie. Si vous choisissez de " +"le faire en arrire-plan, vous trouverez un rapport dtaill dans le fichier " +"${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Une tche cron hebdomadaire s'occupera de mettre jour les donnes " +"rcoltes maintenant, ainsi vous n'aurez pas besoin de vous en soucier au " +"moment de l'installation de nouveaux paquets (La)TeX ou quand vous en " +"supprimez des vieux." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"De toute faon vous pouvez les mettre jour vous-mme en excutant la " +"commande update-auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Console" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Fichier" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Analyse de la destination de sortie:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Vous avez dcid d'analyser les paquets de macros de TeX ainsi que les " +"fichiers style de LaTeX en avant-plan. Cela est parfaitement valable, mais " +"sachez que ce processus gnre beaucoup de texte en sortie." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Le choix par dfaut (i.e., rpondre Fichier) implique que la sortie du " +"processus d'analyse est dirige dans un fichier nomm ${LOGFILE}. " + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"En rpondant Console, vous verrez la sortie (ennuyeuse) s'afficher sur votre " +"terminal." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "Le mcanisme de chargement automatique d'AUCTeX a chang" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Depuis la version Debian11.81-1, AUCTeX est par dfaut charg " +#~ "automatiquement. Les utilisateurs qui ne dsirent pas qu'AUCTeX ait la " +#~ "priorit sur le mode standard Tex d'Emacs peuvent dcharger compltement " +#~ "AUCTeX en insrant (unload-feature 'tex-site) dans leur fichier " +#~ "personnel ~/.emacs ou ~/.emacs.el. " --- auctex-11.83.orig/debian/po/it.po +++ auctex-11.83/debian/po/it.po @@ -0,0 +1,164 @@ +# Italian translations of the "debian/auctex/templates" file +# of the auctex Debian package. +# +# Copyright (C) 2000, 01, 02, 03, 04, 05, 06 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Davide G. M. Salvetti , 2000 +# +# arch-tag: fac3722c-5cac-4ce1-a5a6-5b574c111e14 +msgid "" +msgstr "" +"Project-Id-Version: auctex 11.81-1\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-10-16 19:02+0200\n" +"Last-Translator: Davide G. M. Salvetti \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Sottofondo" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Primo piano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Nessuno" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Modalità di scansione delle macro per (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Per migliorare grandemente le proprie prestazioni, AUCTeX scandirà tutti i " +"pacchetti di macro per TeX ed i file di stile per LaTeX attualmente " +"installati su questa macchina." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Questa operazione potrebbe richiedere molto tempo ed è quindi probabilmente " +"preferibile eseguirla in sottofondo; tuttavia, si può anche scegliere di " +"eseguirla in primo piano o di non eseguirla affatto. Se si sceglie " +"Sottofondo verrà generata una cronistoria dettagliata dell'operazione nel " +"file: ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Le informazioni raccolte adesso saranno aggiornate settimanalmente per mezzo " +"del demone cron, di modo che normalmente non sarà necessario preoccuparsene " +"di persona al momento dell'installazione o della rimozione di pacchetti " +"aggiuntivi per (La)TeX." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"In ogni caso, le informazioni si possono sempre aggiornare a mano lanciando " +"update-auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Video" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "File" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Destinazione dei messaggi della scansione:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"I pacchetti di macro per TeX ed i file di stile per LaTeX saranno scanditi " +"in primo piano come è stato richiesto. Questo va bene, ma di solito produce " +"molti messaggi informativi." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"In mancanza di scelte contrarie, cioè rispondendo File a questa domanda, i " +"messaggi originati dalla scansione verranno scritti in un file di nome " +"${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Rispondendo Video, i (noiosi) messaggi verranno visualizzati direttamente " +"sul proprio terminale." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "Il meccanismo di caricamento automatico di AUCTeX è cambiato" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Dalla versione Debian 11.81-1 AUCTeX viene caricato automaticamente in\n" +#~ "mancanza di scelte contrarie. Gli utenti che non desiderano che AUCTeX\n" +#~ "sostituisca l'usuale TeX-mode di Emacs, possono scaricare AUCTeX\n" +#~ "completamente valutando l'espressione \"(unload-feature 'tex-site)\"\n" +#~ "(ovvero, per disabilitare completamente AUCTeX far scrivere loro la\n" +#~ "stringa precedente nel proprio file di inizializzazione \"~/.emacs\" o\n" +#~ "\"~/.emacs.el\")." + +#~ msgid "Where should parsing output go?" +#~ msgstr "Dove vanno inviati i messaggi della scansione?" --- auctex-11.83.orig/debian/po/pt_BR.po +++ auctex-11.83/debian/po/pt_BR.po @@ -0,0 +1,146 @@ +# Brazilian Portuguese translations of the "debian/auctex/templates" file +# of the auctex Debian package. +# +# Copyright (C) 2002, 03, 04, 05, 06, 07 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Paulo R. Ormenese , 2002 +# André Luís Lopes , 2007 +# +# arch-tag: 07ed1bd4-5aa8-4122-80a8-2b1b9fcc6ef2 +msgid "" +msgstr "pt_BR utf8\n" +"Project-Id-Version: auctex\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2007-08-04 15:15+0200\n" +"Last-Translator: André Luís Lopes \n" +"Language-Team: Debian-BR Project \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Segundo plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Primeiro plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Modo de interpretação de macros (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Para melhorar enormemente a performance de AUCTeX, todo pacote de macro TeX " +"e arquivo de estilo LaTeX instalados atualmente em seu sistema serão " +"interpretados." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Isso pode consumir um bom tempo, então pode ser feito provavelmente em " +"segundo plano; entretanto, você pode optar por ter isso feito em " +"primeiro plano, ou ao invés disso pular o processo de interpretação. " +"Caso você optar por fazer a interpretação em segundo plano, encontrará " +"um log detalhado do processo no arquivo: ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Um trabalho semanal do cron também tomará o cuidado de atualizar as " +"informações obtidas agora, então você normalmente não precisará preocupar-se " +"com elas mesmo quando instalar novos pacotes (La)TeX ou remover antigos." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"De qualquer forma, você pode atualizá-las manualmente executando update-" +"auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Console" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Arquivo" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Destino da saída do processo de interpretação:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Você optou por interpretar pacotes de macros TeX e arquivos de estilo " +"LaTeX em primero plano. Não há problemas em relação a isso, mas " +"normalmente esse processo também irá gerar bastante saída." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Por padrão -- isto é, respondendo Arquivo a esta questão -- a saída " +"adicional do processo de interpretação irá para um arquivo nomeado: " +"${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Caso você optar por Console, verá toda a saída (cansativa) direto em " +"seu terminal." + +#~ msgid "Where should parsing output go?" +#~ msgstr "Onde deve ir a saída da interpretação?" --- auctex-11.83.orig/debian/po/templates.pot +++ auctex-11.83/debian/po/templates.pot @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" --- auctex-11.83.orig/debian/po/nl.po +++ auctex-11.83/debian/po/nl.po @@ -0,0 +1,157 @@ +# Dutch translations of the "debian/auctex/templates" file of the auctex +# Debian package. +# +# Copyright (C) 2006 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Vincent Zweije , 2006. +# +# arch-tag: 01fe7ac6-ecb4-42d2-9b17-2c06b03501ba +msgid "" +msgstr "" +"Project-Id-Version: auctex 11.83-2\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-10-16 18:54+0200\n" +"Last-Translator: Vincent Zweije \n" +"Language-Team: Debian-Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Achtergrond" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Voorgrond" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Geen" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Modus voor het ontleden van (La)TeX macros:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Om AUCTeX prestaties flink te verbeteren wordt ieder TeX-macropakket en " +"LaTeX-stijlbestand dat momenteel op uw computer is genstalleerd nu ontleed." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Dit kan veel tijd kosten: het verdient dus de voorkeur om dit in de " +"achtergrond te laten doen. U kunt echter ook kiezen dit op de voorgrond te " +"laten doen of om de ontleding geheel achterwege te laten. Indien u " +"achtergrond kiest, kunt u een gedetailleerde log van het proces vinden in " +"het bestand ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Een wekelijkse cron-taak zal er voor zorgen dat de gegevens die nu worden " +"verzameld ook worden bijgewerkt, dus normaal gesproken hoeft u zich daarover " +"geen zorgen te maken wanner u nieuwe (La)TeX-pakketten installeert of oude " +"verwijdert." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"Daarnaast kunt u ze altijd met de hand bijwerken door update-auctex-elisp " +"uit te voeren" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Console" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Bestand" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Uitvoerbestemming van het ontleden:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"U hebt gekozen om TeX-macropakketten en LaTeX-stijlbestanden in de voorgrond " +"te ontleden. Dat is in orde, maar het genereert veel uitvoer." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Standaard, dat wil zeggen, als u kiest voor Bestand, zal verdere uitvoer van " +"het ontleedproces worden bewaard in een bestand genaamd ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Als u kiest voor Console, zult u al die (saaie) uitvoer hier op uw terminal " +"zien." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "Het automatische inleesmechanisme van AUCTeX is veranderd" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Vanaf pakketversie 11.81-1 wordt AUCTeX standaard automatisch ingelezen. " +#~ "Gebruikers die niet willen dat AUCTeX voorgaat op de standaard Emacs-TeX-" +#~ "modus kunnen AUCTeX volledig deactiveren door de expressie \"(unload-" +#~ "feature 'tex-site)\" te evalueren: dat wil zeggen, door hen die string in " +#~ "hun persoonlijke \"~/.emacs\" of \"~/.emacs.el\" bestand te laten " +#~ "plaatsen." --- auctex-11.83.orig/debian/po/pt.po +++ auctex-11.83/debian/po/pt.po @@ -0,0 +1,157 @@ +# Portuguese translations of the "debian/auctex/templates" file of the +# auctex Debian package. +# +# Copyright (C) 2006 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Ricardo Silva , 2006 +# +# arch-tag: 6b3466c8-da06-4060-b4f3-aea36131a21c +msgid "" +msgstr "" +"Project-Id-Version: auctex 11.83-2\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-10-17 11:50+0200\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Native Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Segundo plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Primeiro plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Modo de análise de macros do (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Para optimizar o desempenho do AUCTeX, todos os pacotes de macros do TeX e " +"todos os ficheiros de estilo do LaTeX instalados serão analisados." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Este processo poderá demorar algum tempo, pelo que provavelmente deverá ser " +"executado em segundo plano. No entanto, poderá escolher executá-lo em " +"primeiro plano, ou até saltar o processo de análise. Caso decida executar em " +"segundo plano, um registo detalhado do processo será armazenado no ficheiro: " +"$(LOGFILE)." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Uma tarefa semanal do cron será encarregue de actualizar os dados agora " +"recolhidos, o que fará com que normalmente não se tenha de preocupar quando " +"instalar ou remover pacotes antigos do (La)TeX." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"De qualquer modo, poderá actualizá-los manualmente executando o update-" +"auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Consola" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Ficheiro" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Destino do 'output' da análise:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Escolheu que a análise dos pacotes de macros do TeX e os ficheiros de estilo " +"do LaTeX seja feita em primeiro plano. Tal é permitido, mas normalmente " +"gerará um 'output' de grandes dimensões." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Por omissão -- ou escolhendo a opção Ficheiro -- qualquer 'output' do " +"processo de análise será armazenado no ficheiro: $(LOGFILE)." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Caso escolha a opção Consola, visualizará todo o (enfadonho) 'output' no seu " +"terminal." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "O mecanismo de inicialização automática do AUCTeX foi alterado" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Desde a versão 11.81-1 do Debian, o AUCTeX é, por defeito, carregado " +#~ "automaticamente. Utilizadores que não desejem que o AUCTeX se sobreponha " +#~ "ao modo padrão do Emacs TeX podem-no desactivar utilizando a expressão " +#~ "\"(unload-feature 'tex-site)\" (ou seja, poderão adicionar essa linha nos " +#~ "seus ficheiros \"~/.emacs\" ou \"~/.emacs.el\" para desactivar o AUCTeX " +#~ "por completo)." --- auctex-11.83.orig/debian/po/cs.po +++ auctex-11.83/debian/po/cs.po @@ -0,0 +1,152 @@ +# Czech translation of the "debian/auctex/templates" file of auctex +# Debian package. +# +# Copyright (C) 2006 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Miroslav Kure , 2006. +# +# arch-tag: 752068ed-01aa-46f6-b74d-68d2f908bcff +msgid "" +msgstr "" +"Project-Id-Version: auctex\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2006-12-08 15:47+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Pozadí" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Popředí" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Žádný" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Režim analyzování (La)TeXových maker:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Pro výrazné zlepšení výkonnosti AUCTeXu se analyzuje každý nainstalovaný " +"TeXový balík s makry a LaTeXový soubor se styly." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Analýza může trvat poměrně dlouho, takže je rozumné to provést na pozadí. " +"Nic vám však nebrání analyzovat na popředí, případně analýzu zcela " +"přeskočit. Zvolíte-li Pozadí, naleznete podrobný záznam celého procesu v " +"souboru ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"O průběžnou aktualizaci analyzovaných dat se postará týdenní cronová úloha, " +"takže se o ni nemusíte starat při instalaci nových nebo rušení starých (La)" +"TeXových balíků." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "Data můžete aktualizovat i ručně spuštěním update-auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Konzole" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Soubor" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Výstup analýzy:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Zvolili jste, aby analýza TeXových maker a LaTeXových stylů probíhala na " +"popředí. To je v pořádku, nicméně tato analýza vytvoří spoustu výstupu." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Ve výchozím nastavení (tj. Soubor) bude veškerý výstup vytvořený během " +"analýzy přesměrován do souboru ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "" +"Zvolíte-li možnost Konzole, uvidíte veškerý (nudný) výstup přímo na svém " +"terminálu." + +#~ msgid "The autoload mechanism of AUCTeX has changed" +#~ msgstr "Automatický nahrávací mechanismus AUCTeXu se změnil" + +#~ msgid "" +#~ "Since Debian version 11.81-1, AUCTeX gets autoloaded by default. Users " +#~ "who do not want AUCTeX to override the standard Emacs TeX-mode may unload " +#~ "AUCTeX completely by evaluating the form \"(unload-feature 'tex-site)" +#~ "\" (i.e., let them put that string into their personal \"~/.emacs\" or " +#~ "\"~/.emacs.el\" file to disable AUCTeX completely)." +#~ msgstr "" +#~ "Od verze 11.81-1 se AUCTeX v Debianu nahrává automaticky. Uživatelé, " +#~ "kteří nechtějí, aby AUCTeX přebíjel výchozí TeXový mód z Emacsu, se mohou " +#~ "AUCTeXu kompletně zbavit vyhodnocením výrazu \"(unload-feature 'tex-site)" +#~ "\". Výraz stačí umístit do osobního souboru \"~/.emacs\" nebo \"~/.emacs." +#~ "el\"." --- auctex-11.83.orig/debian/po/gl.po +++ auctex-11.83/debian/po/gl.po @@ -0,0 +1,137 @@ +# Galician translation of the "debian/auctex/templates" file of auctex +# Debian package. +# +# Copyright (C) 2007 Davide G. M. Salvetti +# +# This file is distributed under the same license as the auctex Debian +# package. +# +# Jacobo Tarrio , 2007. +# +# arch-tag: 064cce3f-a101-4556-9b8e-575547e24ca0 +msgid "" +msgstr "" +"Project-Id-Version: auctex\n" +"Report-Msgid-Bugs-To: salve@debian.org\n" +"POT-Creation-Date: 2006-12-08 16:38+0100\n" +"PO-Revision-Date: 2007-03-03 22:27+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Background" +msgstr "Fondo" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "Foreground" +msgstr "Primeiro plano" + +#. Type: select +#. Choices +#: ../auctex/templates:1001 +msgid "None" +msgstr "Ningún" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "(La)TeX macros parsing mode:" +msgstr "Modo de análise de macros de (La)TeX:" + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"To greatly improve AUCTeX performances, every TeX macro package and LaTeX " +"style file currently installed at your site will be parsed." +msgstr "" +"Para mellorar moito o rendemento de AUCTeX, hanse analizar tódolos paquetes " +"de macros de TeX e ficheiros de estilos de LaTeX instalados actualmente no " +"seu sitio." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"This may take a lot of time, so it should be probably done in the " +"background; however you may also choose to have it done in the foreground, " +"or to skip the parsing at all instead. If you choose Background, you will " +"find a detailed log of the process in the file: ${LOGFILE}." +msgstr "" +"Isto pode levar moito tempo, así que seguramente sexa mellor facelo coma " +"tarefa de fondo; nembargantes tamén pode facelo coma tarefa de primeiro " +"plano, ou omitir completamente a análise. Se escolle \"Fondo\", ha ter un " +"rexistro detallado do proceso no ficheiro ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "" +"A weekly cron job will also take care of updating the data collected now, so " +"usually you won't need to worry about them whenever you install new (La)TeX " +"packages or remove old ones." +msgstr "" +"Unha tarefa de cron semanal tamén se ha encargar de actualizar os datos que " +"se colleiten agora, así que normalmente non ha ter que se preocupar por eles " +"ao instalar novos paquetes de (La)TeX ou eliminar paquetes antigos." + +#. Type: select +#. Description +#: ../auctex/templates:1002 +msgid "Anyway, you can update them by hand running update-auctex-elisp." +msgstr "" +"De tódolos xeitos, pode actualizalos á man executando update-auctex-elisp." + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "Console" +msgstr "Consola" + +#. Type: select +#. Choices +#: ../auctex/templates:2001 +msgid "File" +msgstr "Ficheiro" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "Parsing output destination:" +msgstr "Destino da saída da análise:" + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"You chose to parse TeX macro packages and LaTeX style files in foreground. " +"This is OK, but normally it will also generate quite a lot of output." +msgstr "" +"Decidiu analizar os paquetes de macros de TeX e os ficheiros de estilos de " +"LaTeX nunha tarefa de fondo. Isto é correcto, pero normalmente tamén xera " +"moita saída." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"By default -- i.e., answering File to this question -- further output from " +"the parsing process will go to a file named: ${LOGFILE}." +msgstr "" +"Por defecto -- é dicir, se resposta \"Ficheiro\" a esta pregunta --, a saída " +"do proceso de análise ha ir a un ficheiro chamado ${LOGFILE}." + +#. Type: select +#. Description +#: ../auctex/templates:2002 +msgid "" +"If you answer Console, you will see all of the (boring) output right on your " +"terminal." +msgstr "Se resposta \"Consola\" ha ver toda a saída no seu terminal." --- auctex-11.83.orig/debian/auctex/docbase.auctex.in +++ auctex-11.83/debian/auctex/docbase.auctex.in @@ -0,0 +1,58 @@ +#include "variables" +Document: auctex +Title: AUCTeX: an integrated environment for editing LaTeX, ConTeXt, docTeX, Texinfo, and TeX documents +Author: Kresten Krab Thorup, Per Abrahamsen, David Kastrup +Abstract: AUCTeX is a comprehensive customizable integrated environment for + writing input files for TeX/LaTeX/ConTeXt/Texinfo using Emacs. + . + It lets you process your source files by running TeX and related tools (such + as output filters, post processors for generating indices and bibliographies, + and viewers) from inside Emacs. AUCTeX lets you browse through the errors + TeX reported, while it moves the cursor directly to the reported error, and + displays some documentation for that particular error. This will even work + when the document is spread over several files. + . + One component of AUCTeX that LaTeX users will find attractive is + preview-latex, a combination of folding and in-source previewing that + provides true "What You See Is What You Get" experience in your source buffer, + while letting you retain full control. preview-latex comes with its own + manual. + . + AUCTeX automatically indents your `LaTeX-source', not only as you write + it---you can also let it indent and format an entire document. It has a + special outline feature, which can greatly help you `getting an overview' of + a document. + . + Apart from these special features, AUCTeX provides a large range of handy + Emacs macros, which in several different ways can help you write your + documents fast and painlessly. + . + All features of AUCTeX are documented using the GNU Emacs online + documentation system. That is, documentation for any command is just a key + click away! + . + AUCTeX is written entirely in Emacs-Lisp, and hence you can easily add new + features for your own needs. It has become recently a GNU project. AUCTeX + is distributed under the `GNU General Public License Version 2'. +Section: <:=${MENUSEC}:> + +Format: info +Index: <:=if($_="${info}/${PACKAGE}.info.gz")=~tr|/|/|s:> +Files: <:=if($_="${info}/${PACKAGE}.info*")=~tr|/|/|s:> + +Format: HTML +Index: <:=if($_="${html}/auctex/index.html")=~tr|/|/|s:> +Files: <:=if($_="${html}/auctex/*")=~tr|/|/|s:> +<: +# arch-tag: 4a60674c-df89-4d63-b0f8-1c92e37e7add +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: texinfo HTML AUCTeX Kresten Krab Thorup Abrahamsen Kastrup +# LocalWords: LaTeX auctex ConTeXt docTeX +:>// --- auctex-11.83.orig/debian/auctex/NEWS.in +++ auctex-11.83/debian/auctex/NEWS.in @@ -0,0 +1,34 @@ +#include "variables" +The Debian package <:=${PACKAGE}:> news +-------------------<:="-" x length (${PACKAGE}):>----- + + +Loading AUCTeX +=============== + +Since Debian version 11.81-1, AUCTeX gets auto-loaded by default. If you do +not want AUCTeX to override the standard Emacs TeX-mode, you may unload AUCTeX +completely by evaluating the form "(unload-feature 'tex-site)" (i.e., put that +string into your "~/.emacs" to disable AUCTeX completely). + + +preview-latex +============= + +Since upstream version 11.81, preview-latex comes included with AUCTeX. You +do not need to do anything special to use it. + + +-- Davide G. M. Salvetti , <:=$_=gmtime:>. +<: +# arch-tag: 40ef55ea-fc75-4f6f-83af-a804f4d1b045 +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: AUCTeX tex emacs +:>// --- auctex-11.83.orig/debian/auctex/README.in +++ auctex-11.83/debian/auctex/README.in @@ -0,0 +1,91 @@ +#include "variables" +The Debian package <:=${PACKAGE}:> +-------------------<:="-" x length (${PACKAGE}):> + + +RefTeX +====== + +AUCTeX users will probably want to switch the very useful RefTeX package on, +by adding something like "(add-hook 'LaTeX-mode-hook 'turn-on-reftex)" to +their "~/.emacs" (see the RefTeX info manual for more information on RefTeX, +which is part of GNU Emacs). + + +Font-LaTeX +========== + +Starting with AUCTeX 11.01, a new user customizable variable appeared: +"TeX-install-font-lock". Font-LaTeX it's now the default choice, so users +need not doing anything special to load it anymore. Emacs 21 users may choose +"tex-font" instead, should they wish it. + + +On line Documentation +===================== + +On line documentation may be found in the info or HTML manual, and in the +<:=${UPDATE_ELISP}:>(8) and <:=${UPDATE_INSTALL}:>(8) manual pages. + +TeXInfo sources may be found in the "<:=if($_="${docsrc}")=~tr|/|/|s:>" +directory. + + +Notes to System Administrators +============================== + +A) To improve its performance AUCTeX stores information about TeX macros and +LaTeX styles available on the system in the "<:=${var}:>" directory. + +AUCTeX updates this information weekly, by mean of a cron script; +nevertheless, you may want to run "<:=if($_="${sbin}/${UPDATE_ELISP}")=~tr|/|/|s:>" +manually after installing new style files under "/usr/local/share/texmf". + +B) You may probably want to customize the list of printers available at your +site. + +This could be easily accomplished by declaring it in "<:=${SSEL}:>" +(along with the default printer), for example: + +(setq TeX-printer-list + '(("lp" "dvips -f %s | lpr -P %p" "lpq -P %p") + ("lpc" "dvips -f %s | lpr -P %p" "lpq -P %p") + ("lpf" "dvips -f %s | lpr -P %p" "lpq -P %p") + ("lpt" "dvips -f %s | lpr -P %p" "lpq -P %p")) + TeX-printer-default "lpf") + +Please, look at the on line documentation, type `C-h v TeX-printer-list RET' +from within Emacs (load AUCTeX first), or browse through the file +"<:=if($_="${lisp}/tex.el")=~tr|/|/|s:>" for more information on this topic. + + +Contributed Files +================= + +There are several files that are not part of AUCTeX proper, but included in +the distribution in case they are useful: + + - `bib-cite.el': better support for bibliographies and much more; + + - `tex-jp.el': Japanese support; + + - `tex-fptex.el': fpTeX support. + +Read the comments at the start of each file for more information about how to +load it, what does it do, and who wrote and maintains it. + + +-- Davide G. M. Salvetti , <:=$_=gmtime:>. +<: +# arch-tag: a9aeff50-cd75-470a-ac70-65b89b0abb04 +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: AUCTeX RefTeX LaTeX reftex emacs tex TeXInfo cron setq lp dvips +# LocalWords: lpr lpq lpc lpf lpt RET el jp fptex fpTeX +:>// --- auctex-11.83.orig/debian/auctex/bug.presubj.in +++ auctex-11.83/debian/auctex/bug.presubj.in @@ -0,0 +1,30 @@ +#include "variables" +Remember to cover the basics, that is, what you expected to happen and +what in fact did happen. + +If the bug (or problem) is triggered by a particular file, you should +try to produce a minimal (the shortest the better) sample file which +triggers the problem and include it in your report. + +Your bug report will NOT be automatically sent to the <:=${PACKAGE}:> +upstream developers. It will be sent to the Debian Bug Tracking System + instead, where the Debian <:=${PACKAGE}:> +package maintainer will receive it. He will eventually forward your +report upstream if he thinks it related to the <:=${PACKAGE}:> upstream +sources rather than specific to the <:=${PACKAGE}:> package for Debian. + +If you think that your bug report is not specifically related to the +Debian package and would like to send it directly to the <:=${PACKAGE}:> +upstream developers, abort this bug reporting procedure now and follow +the usual bug reporting upstream conventions of <:=${PACKAGE}:> (look in +the <:=${PACKAGE}:> documentation directory "<:=${doc}:>"). +<: +# arch-tag: 1e05717b-d456-4bd8-8e81-c45e9faf8b5a +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 72 +# ispell-local-dictionary: "american" +# end: +:>// --- auctex-11.83.orig/debian/auctex/bug.script.in +++ auctex-11.83/debian/auctex/bug.script.in @@ -0,0 +1,91 @@ +#include "variables" +#! /bin/bash -e +# +# bug reporting script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +EMACS_COMMAND=' +(let ((start "Emacs") + (stop "\n-- \n")) + (TeX-submit-bug-report) + (let ((a (search-forward start nil t)) + (b (search-forward stop nil t))) + (princ (concat + (buffer-substring + (if a (- a (length start)) (point)) + (if b (- b (length stop)) (point-max)))))))' + +cat >&3 <' +------------------------------------------------------------------------ +EOF +find 2>/dev/null <:=${lisp}:> -type f -print0 \ + | xargs --null --no-run-if-empty md5sum | sort --key=2,2 >&3 +cat >&3 <// +FLAVORS=${*:-"emacs21 emacs22 emacs-snapshot"} + +for FLAVOR in ${FLAVORS}; do + if [ -x /usr/bin/${FLAVOR} ]; then + cat >&3 </dev/null >&3 \ + --no-site-file --no-init-file --batch \ + --eval "(require 'tex-site)" --eval "$EMACS_COMMAND" + cat >&3 </dev/null >&3 \ + --no-init-file --batch --eval "$EMACS_COMMAND" + cat >&3 </dev/null >&3 \ + --batch --eval "$EMACS_COMMAND" + cat >&3 <' +------------------------------------------------------------------------ +EOF + command ls >&3 --almost-all --sort=version --format=long \ + <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> + LOG=$(ls <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:>*) + cat >&3 <&3 ${LOG} ;; + (*) cat >&3 ${LOG} ;; + esac + cat >&3 <// --- auctex-11.83.orig/debian/auctex/conffiles.in +++ auctex-11.83/debian/auctex/conffiles.in @@ -0,0 +1,11 @@ +#include "variables" +<:$_="${sstartd}/${EPRIORITY}${PACKAGE}.el"; + s|emacs|emacs21|; $_=~tr|/|/|s; print:> +<:$_="${sstartd}/${EPRIORITY}${PACKAGE}.el"; + s|emacs|emacs22|; $_=~tr|/|/|s; print:> +<:$_="${sstartd}/${EPRIORITY}${PACKAGE}.el"; + s|emacs|emacs-snapshot|; $_=~tr|/|/|s; print:> +<:=if($_="${cron_weekly}/${PACKAGE}")=~tr|/|/|s:> +<: +# arch-tag: 6a902afa-3563-4a43-8c5c-77de4bf3b393 +:>// --- auctex-11.83.orig/debian/auctex/config.in +++ auctex-11.83/debian/auctex/config.in @@ -0,0 +1,44 @@ +#include "variables" +#! /bin/bash -e +# +# <% config %> script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +source <:=${CONFMODULE}:> +db_version 2.0 + +case "${1}" in + configure|reconfigure) + LOGFILE=$(mktemp <:=${TMPMASK}:>) + db_register <:=${PACKAGE}:>/doauto <:=${PACKAGE}:>/logfile || true + db_set <:=${PACKAGE}:>/logfile ${LOGFILE} || true + db_subst <:=${PACKAGE}:>/doauto LOGFILE ${LOGFILE} || true + db_subst <:=${PACKAGE}:>/doautofg LOGFILE ${LOGFILE} || true + db_input low <:=${PACKAGE}:>/doauto || true + db_go || true + db_get <:=${PACKAGE}:>/doauto || true + if [ "${RET}" = "Foreground" ]; then + <:# Ask another time the user, if she really wants to shoot :>// + <:# her very feet. Just to be sure. :>// + db_input low <:=${PACKAGE}:>/doautofg || true + db_go || true + fi;; + *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +exit 0 +<: +# arch-tag: 0c222277-b851-436c-912e-b5c8e4468867 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/auctex/cron.in +++ auctex-11.83/debian/auctex/cron.in @@ -0,0 +1,23 @@ +#include "variables" +#! /bin/bash -e +# +# <% cron %> script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +test -x <:=if($_="${sbin}/${UPDATE_ELISP}")=~tr|/|/|s:> \ + && <:=${UPDATE_ELISP}:> &>/dev/null + +exit 0 +<: +# arch-tag: 126ab2bf-e5ae-4853-a264-827e624d587d +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/auctex/update-auctex-elisp.8.in +++ auctex-11.83/debian/auctex/update-auctex-elisp.8.in @@ -0,0 +1,71 @@ +#include "variables" +.\" Man page for update-auctex-elisp. +.\" Copyright (C) 1998, 99, 2000, 01, 04, 05, 06 +.\" by Davide Giovanni Maria Salvetti. +.\" +.\" This manual page is free software; you can redistribute it and/or + \" modify it under the terms of the GNU General Public License as published + \" by the Free Software Foundation; either version 2 of the License, or (at + \" your option) any later version. +.\" +.\" This manual page is distributed in the hope that it will be useful, + \" but WITHOUT ANY WARRANTY; without even the implied warranty of + \" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General + \" Public License for more details. +.\" +.\" You should have received a copy of the GNU General Public License along + \" with this manual page; if not, write to: The Free Software Foundation, + \" Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. +.\" +.\" On Debian GNU/Linux System you can find a copy of the GNU General + \" Public License in "<:=${GPL}:>". +.\" +.TH Update\-AUCTeX\-elisp 8 "17 February 1998" "Debian Project" "Debian GNU/Linux" +.SH NAME +update\-auctex\-elisp \- update AUCTeX automatically generated TeX macros and +LaTeX styles data. +.SH SYNOPSIS +.B update\-auctex\-elisp +.RI [ FLAVOR .\|.\|. ] +.SH DESCRIPTION +The +.B update\-auctex\-elisp +script updates the automatically generated TeX and LaTeX data used by +AUCTeX and stored in +.B <:=${var}:>. +.PP +It should be called after each major (La)TeX style files installation or +upgrade. +.PP +If no arguments are specified, update\-auctex\-elisp caters to every supported +Emacs flavor installed on the system; else it updates only the specified +flavors, if they are installed. +.PP +On Debian GNU/Linux system +.B update\-auctex\-elisp +is called weekly by a +.BR cron (8) +driven mechanism, to ensure up-to-date data. +.SH BUGS +None known. +.SH FILES +.B <:=${var}:>: +the hierarchy containing the byte-compiled files. +.SH SEE ALSO +.BR emacs (1), +.BR tex (1), +.BR latex (1). +.SH AUTHOR +Davide G. M. Salvetti . +<: +# arch-tag: 407a516c-7fbb-444d-b798-2768d02129cb +# +# local variables: +# mode: nroff +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: auctex elisp GPL AUCTeX varauc cron tex var nroff LaTeX emacs +:>// --- auctex-11.83.orig/debian/auctex/docbase.preview.in +++ auctex-11.83/debian/auctex/docbase.preview.in @@ -0,0 +1,31 @@ +#include "variables" +Document: preview-latex +Title: preview-latex: WYSIWYG LaTeX editing with Emacs and AUCTeX +Author: David Kastrup, Alan Shutko, Jan-Åke Larsson and Nick Alcock +Abstract: preview-latex is a package embedding preview fragments into Emacs + source buffers under the AUCTeX editing environment for LaTeX. It uses + `preview.sty' for the extraction of certain environments (most notably + displayed formulas). Other applications of this style file are possible and + exist. +Section: <:=${MENUSEC}:> + +Format: info +Index: <:=if($_="${info}/preview-latex.info.gz")=~tr|/|/|s:> +Files: <:=if($_="${info}/preview-latex.info*")=~tr|/|/|s:> + +Format: HTML +Index: <:=if($_="${html}/preview-latex/index.html")=~tr|/|/|s:> +Files: <:=if($_="${html}/preview-latex/*")=~tr|/|/|s:> +<: +# arch-tag: cd74f632-6832-46da-82d7-f543f87fd63d +# +# local variables: +# mode: text +# fill-column: 78 +# coding: utf-8 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: WYSIWYG AUCTeX Kastrup Shutko ke Larsson Alcock texinfo HTML +# LocalWords: LaTeX Åke +:>// --- auctex-11.83.orig/debian/auctex/install.in +++ auctex-11.83/debian/auctex/install.in @@ -0,0 +1,129 @@ +#include "variables" +#! /bin/bash -e +# +# <% elisp %> Emacs install script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +<:# parse debconf database :>// +source <:=${CONFMODULE}:> +db_version 2.0 +db_get <:=${PACKAGE}:>/logfile || true; _db_logfile=${RET} +db_get <:=${PACKAGE}:>/doauto || true; _db_doauto=${RET} +db_get <:=${PACKAGE}:>/doautofg || true; _db_doautofg=${RET} + +FLAVOR=${1} + +INSTALL="install -o root -g root -m 644" +INSTDIR="${INSTALL} -m 755 -d" + +do_install () { + echo >&2 -n "install/<:=${PACKAGE}:>: Setting up for ${FLAVOR}" \ + "(log file: <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:>)... " + cd <:=${lisp}:>; umask 0022; + <:# ensure that "configure" is up-to-date WRT "configure.ac" and + # "aclocal.m4":>// + touch --reference configure --date "-1 second" configure.ac + touch --reference configure --date "-1 second" aclocal.m4 + touch --reference configure --date "-1 second" preview/configure.ac + ${INSTDIR} <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> + ./configure --disable-build-dir-test GS=gs \ + LATEX=/bin/true PDFLATEX=/bin/true TEX=/bin/true \ + --prefix=<:$_=${usr}; s|/+|/|g; print:> \ + --with-emacs=${FLAVOR} \ + --with-lispdir=<:$_=${lisp}; s|/+${PACKAGE}/*|/|; + s|emacs|\${FLAVOR}|; s|/+|/|g; print:> \ + --with-texmf-dir=<:=${texmf}:> \ + --with-auto-dir=<:$_=${var}; s|/+|/|g; + s|/$||; print:>/${FLAVOR}/ \ + >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + make INSTALL="${INSTALL}" MKINSTALLDIRS="${INSTDIR}" \ + install-lisp install-startup \ + >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + ln -sf <:=${lisp}:>/images <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/ + pushd preview \ + >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + make INSTALL="${INSTALL}" MKINSTALLDIRS="${INSTDIR}" \ + install-el install-nosearch install-startup \ + >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + popd >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + make maintainer-clean \ + >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + find <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> -type f -name \*.el \ + -print0 | xargs --null rm -f ,dummy, \ + >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 + gzip -9fq <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> + echo >&2 "done." + return 0 +} + +do_auto () { + case "${_db_doauto}" in + (Foreground) + case "${_db_doautofg}" in + (Console) + rm -f ${_db_logfile} + <:="${sbin}/${UPDATE_ELISP}":> ${FLAVOR} ;; + (File) + echo >&2 -n "<:=${UPDATE_ELISP}:>: " + echo >&2 "Further output will appear in: ${_db_logfile}." + echo >&2 -n "<:=${PACKAGE}:>: " + echo >&2 -n "Waiting for <:=${UPDATE_ELISP}:> to terminate... " + <:="${sbin}/${UPDATE_ELISP}":> ${FLAVOR} >> ${_db_logfile} 2>&1 + echo >&2 "done." ;; + (*) echo >&2 \ + "${0##*/}: Unknown Debconf value doautofg = \"${_db_doautofg}\"." ;; + esac ;; + (Background) + <:# Closing fd 3 is debconf important. :>// + <:# debconf\'s frontend wait for its standard input to be closed :>// + <:# before dying, and that means fd 3 :>// + <:# better don\'t close fd 0: Emacs does not take it very well :>// + <:# WARNING: DON\'T CLOSE FD\'S TO BE WRITTEN TO! :>// + <:# WARNING: DON\'T CLOSE FD\'S TO BE READ TO! :>// + <:="${sbin}/${UPDATE_ELISP}":> ${FLAVOR} >> ${_db_logfile} 2>&1 3>&- & + echo >&2 -n "<:=${UPDATE_ELISP}:>[${!}]: " + echo >&2 "Further output will appear in: ${_db_logfile}." ;; + (None) rm -f ${_db_logfile} ;; + (*) echo >&2 \ + "${0##*/}: Unknown Debconf value doauto = \"${_db_doauto}\"." ;; + esac + return 0 +} + +do_clean_old_cruft () { + <:# ".../site-lisp/preview/" is obsolete :>// + rm -f <:=if($_=${style})=~s|emacs|\${FLAVOR}|:>/../preview/.nosearch + test -d <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/../preview/ && \ + rmdir --ignore-fail-on-non-empty \ + <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/../preview/ + return 0 +} + +case "${FLAVOR}" in + emacs) :;; + emacs2[12]|emacs-snapshot) + <:# clean old cruft :>// + do_clean_old_cruft ${FLAVOR} + do_install ${FLAVOR} + <:# parse TeX macros and LaTeX styles :>// + do_auto ${FLAVOR};; + *) echo >&2 "install/<:=${PACKAGE}:>:" \ + "Ignoring emacsen flavor: \"${FLAVOR}\"." +esac + +exit 0 +<: +# arch-tag: 8f5878f2-a4b0-44a9-bb22-92f48baf39b3 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: debconf fd frontend aclocal LaTeX +:>// --- auctex-11.83.orig/debian/auctex/lintian.in +++ auctex-11.83/debian/auctex/lintian.in @@ -0,0 +1,31 @@ +#include "variables" +# <% lintian %> override file for <:=${PACKAGE}:> + +# This is needed to build alternative formats of the manual from sources. +auctex binary: extra-license-file usr/share/doc/auctex/src/copying.texi.gz + +# This is needed at installation time and should stay this way. +auctex binary: executable-not-elf-or-script ./usr/share/emacs/site-lisp/auctex/install-sh + +# This is a maintainer script. +auctex binary: debconf-is-not-a-registry .<:$_ + ="${ecode}/install/${PACKAGE}"; s|/+|/|g; print:> + +# This is legitimate. +auctex binary: debconf-is-not-a-registry .<:$_ + ="${sbin}/${UPDATE_INSTALL}"; s|/+|/|g; print:> + +# We do check these. +auctex binary: maintainer-script-does-not-check-for-existence-of-installdocs postinst +auctex binary: maintainer-script-does-not-check-for-existence-of-installdocs prerm + +<: +# arch-tag: e4349b16-3bb5-44eb-bcd2-240031be2444 +# +# local variables: +# mode: fundamental +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/auctex/lisp-startup.el.in +++ auctex-11.83/debian/auctex/lisp-startup.el.in @@ -0,0 +1,38 @@ +;;; This is a conffile: you can edit it if you like; however, +;;; please note that if you do not want AUCTeX to override the standard +;;; Emacs TeX mode, you may unload AUCTeX completely by evaluating the +;;; form "(unload-feature 'tex-site)" (i.e., put that string into your +;;; "~/.emacs" to disable AUCTeX completely). + +(let ((list '((lisp . "auctex") (source . "auctex")))) + (while list + (let ((elt (car list))) + (cond + ((equal 'lisp (car elt)) + (let ((dir (concat "/usr/share/" + (symbol-name debian-emacs-flavor) + "/site-lisp/" (cdr elt)))) + (when (file-directory-p dir) + (if (fboundp 'debian-pkg-add-load-path-item) + (debian-pkg-add-load-path-item dir) + (add-to-list 'load-path dir 'append))))) + ((equal 'source (car elt)) + (let ((dir (concat "/usr/share/emacs/site-lisp/" (cdr elt)))) + (when (file-directory-p dir) + (add-to-list 'load-path dir 'append)))))) + (setq list (cdr list)))) + +(load "auctex.el") +(load "preview-latex.el") +<: +# arch-tag: eb7b1761-2d85-4ffe-b81c-c9b4a0f29a68 +# +# local variables: +# mode: emacs-lisp +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: conffile AUCTeX tex emacs +:>// --- auctex-11.83.orig/debian/auctex/postinst.in +++ auctex-11.83/debian/auctex/postinst.in @@ -0,0 +1,69 @@ +#include "variables" +#! /bin/bash -e +# +# <% postinst %> script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +<: +# parse <% debconf %> database: do not remove, +# even if no further use of it is made here +:>// +source <:=${CONFMODULE}:> +db_version 2.0 + +#---B-E-G-I-N---O-L-D---S-T-U-F-F---keep-it,-it-doesn't-hurt------------------- +for i in /usr/lib/emacs/common/auctex/auto/ /var/lib/emacs/auctex/; do + if test -d ${i} + then rm -rf ${i} + fi +done +for i in /usr/lib/emacs/common/auctex /usr/lib/emacs/common; do + if test -d ${i} + then find ${i%/*} -name ${i##*/} -type d -empty \ + | xargs --no-run-if-empty rmdir + fi +done +#---E-N-D---O-L-D---S-T-U-F-F-------------------------------------------------- + +case "${1}" in + abort-deconfigure|abort-remove|abort-upgrade|configure) :;; + *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +<:# install <% info %> menu into <% info %> directory :>// +case "${1}" in abort-remove|abort-upgrade|configure) + <:=IINSTALL (undef, ${AUCTEX_INFOMENU}, ${AUCTEX_INFODESC}):> \ + <:="${info}/auctex.info.gz":> + <:=IINSTALL (undef, ${PREVIEW_INFOMENU}, ${PREVIEW_INFODESC}):> \ + <:="${info}/preview-latex.info.gz":> +esac + +<:# register documentation with <% doc-base %> :>// +case "${1}" in abort-remove|abort-upgrade|configure) + <:=${DINSTALL}:> <:=if($_="${docbase}/auctex")=~tr|/|/|s:> + <:=${DINSTALL}:> <:=if($_="${docbase}/preview-latex")=~tr|/|/|s:> +esac + +<:# Emacs install :>// +case "${1}" in abort-deconfigure|abort-remove|abort-upgrade|configure) + <:=${EINSTALL}:> <:=${PACKAGE}:> +esac + +exit 0 +<: +# arch-tag: 3b9edfc5-752f-46b3-a095-3346d42ba686 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: emacs +:>// --- auctex-11.83.orig/debian/auctex/postrm.in +++ auctex-11.83/debian/auctex/postrm.in @@ -0,0 +1,34 @@ +#include "variables" +#! /bin/bash -e +# +# <% postrm %> script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + abort-install|abort-upgrade|disappear|failed-upgrade|purge|remove|upgrade) :;; + *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +<:# purge package from <% debconf %> database :>// +case "${1}" in purge) + if test -e <:=${CONFMODULE}:>; then + source <:=${CONFMODULE}:>; db_version 2.0; db_purge + fi +esac + +exit 0 +<: +# arch-tag: 6148eca7-0e7f-4362-9ae9-dc2eaa90740a +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/auctex/prerm.in +++ auctex-11.83/debian/auctex/prerm.in @@ -0,0 +1,46 @@ +#include "variables" +#! /bin/bash -e +# +# <% postinst %> script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +case "${1}" in + deconfigure|failed-upgrade|remove|upgrade) :;; + *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ + "Unknown argument: \"${1}\"." + exit 1 +esac + +<:# remove <% info %> menu from <% info %> directory :>// +case "${1}" in failed-upgrade|remove|upgrade) + <:=${IREMOVE}:> <:="${info}/auctex.info.gz":> + <:=${IREMOVE}:> <:="${info}/preview-latex.info.gz":> +esac + +<:# deregister documentation with <% doc-base %> :>// +case "${1}" in failed-upgrade|remove|upgrade) + <:=${DREMOVE}:> auctex + <:=${DREMOVE}:> preview-latex +esac + +<:# Emacs remove :>// +case "${1}" in deconfigure|failed-upgrade|remove|upgrade) + <:=${EREMOVE}:> <:=${PACKAGE}:> +esac + +exit 0 +<: +# arch-tag: 06c80812-acc7-473e-8fd7-77a72bbcdb0c +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: deregister +:>// --- auctex-11.83.orig/debian/auctex/remove.in +++ auctex-11.83/debian/auctex/remove.in @@ -0,0 +1,57 @@ +#include "variables" +#! /bin/bash -e +# +# <% elisp %> Emacs remove script for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +set -o posix + +FLAVOR=${1} + +undo_install () { + echo >&2 -n "remove/<:=${PACKAGE}:>: Removing for ${FLAVOR}... " + rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/../{auctex,tex-site}.el + rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/../preview-latex.el + rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:>{,.gz} + rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/images + rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/*.elc + rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/.nosearch + rm -f <:=if($_=${style})=~s|emacs|\${FLAVOR}|:>/*.elc + rm -f <:=if($_=${style})=~s|emacs|\${FLAVOR}|:>/.nosearch + test -d <:=if($_=${style})=~s|emacs|\${FLAVOR}|:> && \ + rmdir --ignore-fail-on-non-empty \ + <:=if($_=${style})=~s|emacs|\${FLAVOR}|:> + test -d <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> && \ + rmdir --ignore-fail-on-non-empty \ + <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> + echo >&2 "done." + return 0 +} + +undo_auto () { + rm -rf <:="${var}/\${FLAVOR}/":> + return 0 +} + +case "${FLAVOR}" in + emacs) :;; + emacs2[12]|emacs-snapshot) + <:# remove all parsed information files :>// + undo_auto + undo_install;; + *) echo >&2 "remove/<:=${PACKAGE}:>:" \ + "Ignoring emacsen flavor: \"${FLAVOR}\"." +esac + +exit 0 +<: +# arch-tag: 02840558-59db-42e5-bc45-fe3cce8d379e +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/auctex/templates +++ auctex-11.83/debian/auctex/templates @@ -0,0 +1,34 @@ +Template: auctex/doauto +Type: select +__Choices: Background, Foreground, None +Default: Background +_Description: (La)TeX macros parsing mode: + To greatly improve AUCTeX performances, every TeX macro package and LaTeX + style file currently installed at your site will be parsed. + . + This may take a lot of time, so it should be probably done in the + background; however you may also choose to have it done in the foreground, + or to skip the parsing at all instead. If you choose Background, you will + find a detailed log of the process in the file: ${LOGFILE}. + . + A weekly cron job will also take care of updating the data collected now, + so usually you won't need to worry about them whenever you install new + (La)TeX packages or remove old ones. + . + Anyway, you can update them by hand running update-auctex-elisp. + +Template: auctex/doautofg +Type: select +__Choices: Console, File +Default: File +_Description: Parsing output destination: + You chose to parse TeX macro packages and LaTeX style files in foreground. + This is OK, but normally it will also generate quite a lot of output. + . + By default -- i.e., answering File to this question -- further output from + the parsing process will go to a file named: ${LOGFILE}. + . + If you answer Console, you will see all of the (boring) output right on + your terminal. + +# arch-tag: f0377964-4347-46dc-a310-3f371380b170-child --- auctex-11.83.orig/debian/auctex/templates.in +++ auctex-11.83/debian/auctex/templates.in @@ -0,0 +1,48 @@ +#include "variables" +Template: auctex/doauto +Type: select +__Choices: Background, Foreground, None +Default: Background +_Description: (La)TeX macros parsing mode: + To greatly improve AUCTeX performances, every TeX macro package and LaTeX + style file currently installed at your site will be parsed. + . + This may take a lot of time, so it should be probably done in the + background; however you may also choose to have it done in the foreground, + or to skip the parsing at all instead. If you choose Background, you will + find a detailed log of the process in the file: ${LOGFILE}. + . + A weekly cron job will also take care of updating the data collected now, + so usually you won't need to worry about them whenever you install new + (La)TeX packages or remove old ones. + . + Anyway, you can update them by hand running update-auctex-elisp. + +Template: auctex/doautofg +Type: select +__Choices: Console, File +Default: File +_Description: Parsing output destination: + You chose to parse TeX macro packages and LaTeX style files in foreground. + This is OK, but normally it will also generate quite a lot of output. + . + By default -- i.e., answering File to this question -- further output from + the parsing process will go to a file named: ${LOGFILE}. + . + If you answer Console, you will see all of the (boring) output right on + your terminal. + +<:="# arch" . "-" . "tag: f0377964-4347-46dc-a310-3f371380b170-child":> +<: +# arch-tag: f0377964-4347-46dc-a310-3f371380b170 +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 76 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: defaultchanged autoload AUCTeX autoloaded tex doauto LOGFILE +# LocalWords: cron doautofg auctex elisp emacs LaTeX +:>// --- auctex-11.83.orig/debian/auctex/update-auctex-install.8.in +++ auctex-11.83/debian/auctex/update-auctex-install.8.in @@ -0,0 +1,72 @@ +#include "variables" +.\" Man page for update-auctex-install. +.\" Copyright (C) 2004, 05, 06 by Davide Giovanni Maria Salvetti. +.\" +.\" This manual page is free software; you can redistribute it and/or + \" modify it under the terms of the GNU General Public License as published + \" by the Free Software Foundation; either version 2 of the License, or (at + \" your option) any later version. +.\" +.\" This manual page is distributed in the hope that it will be useful, + \" but WITHOUT ANY WARRANTY; without even the implied warranty of + \" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General + \" Public License for more details. +.\" +.\" You should have received a copy of the GNU General Public License + \" along with this manual page; if not, write to: The Free Software + \" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, + \" USA. +.\" +.\" On Debian GNU/Linux System you can find a copy of the GNU General + \" Public License in "<:=${GPL}:>". +.\" +.TH Update\-AUCTeX\-install 8 "19 May 2004" "Debian Project" "Debian GNU/Linux" +.SH NAME +update\-auctex\-install \- update AUCTeX installation. +.SH SYNOPSIS +.B update\-auctex\-install +.RI [ FLAVOR .\|.\|. ] +.SH DESCRIPTION +The +.B update\-auctex\-install +script updates AUCTeX installation. +.PP +It should be called after each major (La)TeX installation or upgrade. +.PP +If no arguments are specified, update\-auctex\-install caters to every +supported Emacs flavor installed on the system; else it updates only the +specified flavors, if they are installed. +.PP +On Debian GNU/Linux system +.B update\-auctex\-install +is not called weekly by a +.BR cron (8) +driven mechanism, because it modifies files installed in the +.B <:=${usr}:> +hierarchy, and that would not be policy compliant. You may call it by hand, +or have the maintainer of relevant packages add a call for it in their +.B postinst +package scripts. +.SH BUGS +None known. +.SH FILES +.B <:=${usr}:>: +the hierarchy containing AUCTeX installed files. +.SH SEE ALSO +.BR emacs (1), +.BR tex (1), +.BR latex (1). +.SH AUTHOR +Davide G. M. Salvetti . +<: +# arch-tag: 70d3ef3a-3f7d-4568-8a3d-5bd8f38effb0 +# +# local variables: +# mode: nroff +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +# +# LocalWords: auctex GPL AUCTeX cron tex usr postinst nroff emacs +:>// --- auctex-11.83.orig/debian/auctex/update-auctex-elisp.in +++ auctex-11.83/debian/auctex/update-auctex-elisp.in @@ -0,0 +1,35 @@ +#include "variables" +#! /bin/bash -e +# +# Update AUCTeX auto-loads. +# Installed by the Debian <:=${PACKAGE}:> package. +# +<:=@COPYRIGHT:>// + +set -o posix + +<:# Default flavors: only GNU, XEmacs comes with its own AUCTeX. :>// +FLAVORS=${*:-"emacs21 emacs22 emacs-snapshot"} + +for FLAVOR in ${FLAVORS}; do + if [ -x /usr/bin/${FLAVOR} ]; then + ${FLAVOR} --no-site-file --no-init-file --batch \ + --load=<:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/../tex-site.el \ + --funcall=TeX-auto-generate-global + fi +done + +<:# save space, keep only byte compiled style files :>// +find <:=${var}:> -type f -name \*.el -print0 | xargs -0 rm -f +<: +# arch-tag: 9e3a877b-8471-4e26-9909-1ea4c690fa00 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: AUCTeX +:>// --- auctex-11.83.orig/debian/auctex/update-auctex-install.in +++ auctex-11.83/debian/auctex/update-auctex-install.in @@ -0,0 +1,38 @@ +#include "variables" +#! /bin/bash -e +# +# Update AUCTeX installation. +# Installed by the Debian <:=${PACKAGE}:> package. +# +<:=@COPYRIGHT:>// + +set -o posix + +<:# parse debconf database :>// +source <:=${CONFMODULE}:> +db_version 2.0 + +<:# Default flavors: only GNU, XEmacs comes with its own AUCTeX.:>// +FLAVORS=${*:-"emacs21 emacs22 emacs-snapshot"} + +for FLAVOR in ${FLAVORS}; do + if [ -x /usr/bin/${FLAVOR} ]; then + LOGFILE=$(mktemp <:=${TMPMASK}:>) + db_set <:=${PACKAGE}:>/logfile ${LOGFILE} || true + <:=${ecode}:>/remove/<:=${PACKAGE}:> ${FLAVOR} + <:=${ecode}:>/install/<:=${PACKAGE}:> ${FLAVOR} + fi +done + +<: +# arch-tag: 8367175f-2821-4e25-aefd-10ff9157886f +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: AUCTeX debconf +:>// --- auctex-11.83.orig/debian/=TODO +++ auctex-11.83/debian/=TODO @@ -0,0 +1,105 @@ +* Package bugs + +** Unreported bugs + These bugs should be reported via the BTS. +*** TODO Configuration files + Rethink about the issue of configuration files. Are we really sure that + files in "/etc/emacs*/site-lisp.d/" should be editable by the system + administrator? They should probably contain only autoload code and + defcustoms. +*** TODO (unload-feature 'tex-site) + This new feature does not work. Maybe preview has to be unloaded first, + maybe the lisp startup files do not do the right thing. +*** DGMS update reportbug scripts + The scripts should also cater for preview-latex and for the new auctex.el + and preview.el startup files. In particular, the md5sum of the new + startup files should be reported. +*** TODO The uncompressed Changelog file in site-lisp/auctex + Frank Küster: ``You install the uncompressed Changelog file in + site-lisp/auctex, but the comment sounds as if you don't really like that. + Wouldn't it be sufficient to store only the first lines of that file?'' + DGMS replies: ``It would probably be sufficient, but once we have + cluttered that location I'm unsure if the need to manually update the + Changelog file at each release is worth saving some 300kB. Or do you + suggest using head to select just the few N lines? Maybe csplit would be + the right tool, since we just (I think) have to save the first lines until + the most recent version statement gets included (I'm also thinking about + CVS snapshots here, so that that statement might be not in the very first + lines). Comments?'' + +** Open bugs + These bugs should be checked to see if they still apply to the current + release. +*** TODO #120031 +*** TODO #172237 +*** TODO #276102 +*** TODO #290635 +*** DONE #341213 + This bug can be closed, it does not apply to current AUCTeX. + +** Non bugs + These are not bugs, even if they might look like as if they were such. +*** DONE po-debconf: Fails to merge a number of translations. + This is due to the "fuzzy" mark: fuzzy entries are not included. On the + other hand, fuzzy entries should really be reviewed by some translator, so + this is ok. + +** Unsettled issues +*** TODO XEmacs integration (#63513/#74702, #144846) + XEmacs includes its own AUCTeX: if the Debian auctex package were to + provide an upgrade, it should be careful to avoid load-path conflicts, + both for the byte compiled files as well as for the source elisp files. + Moreover, upstream says that there are not so many feedback by AUCTeX + XEmacs users, and states that GNU Emacs is much better supported. Is it + worth to cater for XEmacs in the Debian auctex package? + + +* Miscellaneous stuff + +** DONE Update copyright + +** DONE Remove teTeX dependencies + +** TODO Add some lintian override. + auctex: extra-license-file usr/share/doc/auctex/src/copying.texi.gz + auctex: doc-base-file-unknown-format auctex:38 texinfo + auctex: doc-base-file-unknown-format preview-latex:11 texinfo + auctex: executable-not-elf-or-script ./usr/share/emacs/site-lisp/auctex/install-sh + auctex: debconf-is-not-a-registry ./usr/sbin/update-auctex-install +** TODO Lintian thingies + auctex: malformed-prompt-in-templates auctex/doauto + auctex: malformed-prompt-in-templates auctex/doautofg +** TODO "auctex.el", "preview-latex.el", "tex-site.el" + Do we need those files (there)? Wouldn't be better to move the code in + lisp-startup? Should those files mess with "load-path"? Make the unload + feature work. +** TODO .nosearch + Do we really need "/usr/share/emacs-snapshot/site-lisp/auctex/.nosearch"? +** DGMS Patches to upstream sources + Evaluate and discuss them with upstream developers. +** TODO /usr/sbin/update-auctex-install + Get the proper packages (teTeX?, ...?) to use it, add perhaps a note in the + README.Debian file. +** TODO TeX-printer-list, TeX-printer-default + Is there any simple way to collect local printer info at installation time, + or, even better, at load time? + + + +arch-tag: dff5e454-a005-4bef-8c59-5f609e66aa62 + +local variables: +mode: org +coding: utf-8 +org-todo-keywords: ("TODO" "DGMS" "DONE") +org-todo-interpretation: type +fill-column: 78 +ispell-local-dictionary: "american" +end: + +LocalWords: auctex README dep autoconf tex debian po debconf pt Uploaders TODO +LocalWords: comaintainingship teTeX TeXLive elisp DGMS AUCTeX BTS changelog md +LocalWords: DAK Makoto OHURA reportbug autoload defcustoms defaultchanged CVS +LocalWords: upgraders autoloading preinst postinst prerm viceversa csplit kB +LocalWords: symlink dpkg dlocate wishlist wontfix nosearch Küster Cardenes +LocalWords: emacsen --- auctex-11.83.orig/debian/changelog +++ auctex-11.83/debian/changelog @@ -0,0 +1,1137 @@ +auctex (11.83-7ubuntu1) gutsy; urgency=low + + * add missing depends on texlive-base-bin so that the postrm + does not fail on missing mktexlsr (LP: #148469) + + -- Michael Vogt Fri, 05 Oct 2007 18:26:18 +0200 + +auctex (11.83-7) unstable; urgency=medium + + * copyright.in, COPYRIGHT, variables: Update copyright. + * config.in, install.in, postinst.in, postrm.in, preinst.in, prerm.in, + remove.in: Linting. + * control (Build-Depends-Indep, Depends), install.in, remove.in, + rules.in, auctex/bug.script.in (FLAVORS), auctex/conffiles.in, + auctex/update-auctex-elisp.in, auctex/update-auctex-install.in: Added + "emacs22". (Closes: #425148, #426339, #432206, #432215) + * postinst.in, postrm.in, prerm.in: Check script arguments before calling + actions. + * variables (DINSTALL, DREMOVE): Check for "install-docs" in "${PATH}" + rather than by absolute location. + + * control (Build-Depends-Indep): Dropped "tetex-bin". + (auctex/Recommends): Dropped "tetex-base". + (preview-latex-style/Depends): Dropped "tetex-bin". + (Build-Depends-Indep): Replaced "texlive-base" (which should have been + "texlive-base-bin") by "texlive-latex-base", which depends on + "texlive-base-bin" through "texlive-base" because LaTeX is needed by + "preview" at build time to build its documentation, and checked for by + "preview/configure". + (auctex/Recommends): Replaced "xpdf" by "xpdf-reader", since it is the + reader which is intended to be recommended. + (auctex/Depends, auctex/Recommends): Move "gs-gpl | gs" from "Depends" + to "Recommends", as it is not necessary at installation time and it is + only needed by "preview". + (preview-latex-style/Recommends): Added missing "doc-base"; note that + since "auctex" depends on "preview-latex-style"), "doc-base" could be + safely removed from "auctex/Recommends"; however, there's no harm + duplicating it there, for the sake of clearness. + (preview-latex-style/Depends): Replaced "texlive-base" by + "tex-common", following Debian TeX policy implementation to check if + "mktexlsr" has to be run. + (Build-Depends-Indep): Removed "ed", which is no more necessary. + (auctex/Depends): Removed "debianutils (>= 1.7)", which is no more + necessary (see #198778). + * auctex/install.in (do_install): Pass "LATEX=/bin/true", + "PDFLATEX=/bin/true", and "TEX=/bin/true" to configure, in order to + skip the associated program-in-path test. This avoids an unnecessary + dependency on "texlive-latex-base". (Closes: #408227, #428908) + + * install.in (do_install): Remove an extra space character in the + 'setting-up' message. + + * po/pt_BR.po: Updated; thanks to André Luís Lopes. (Closes: #421529) + * po/ru.po: New file; thanks to Yuri Kozlov. (Closes: #434238) + + * auctex/docbase.auctex.in, auctex/docbase.preview.in: Remove + unsupported format "texinfo". + + * auctex/lintian.in, preview-latex-style/lintian.in: We do check for + "installdocs" existence. + * rules.in (DFILES, binary-indep-pls): Add "lintian" overrides for + "preview-latex-style". + + * rules.in (clean): Test for "Makefile" existence before calling "make + distclean". + + -- Davide G. M. Salvetti Wed, 08 Aug 2007 13:10:11 +0200 + +auctex (11.83-6) unstable; urgency=medium + + * Rebuild with clean source. + * rules.in (build-package): Added dependency on the "clean" target. + + -- Davide G. M. Salvetti Wed, 14 Mar 2007 00:43:56 +0100 + +auctex (11.83-5) unstable; urgency=medium + + * po/de.po: Updated; thanks to Helge Kreutzmann and Frank Küster + (Closes: #406831, #411855). + * po/gl.po: New file; thanks to Jacobo Tarrio. (Closes: #411836) + + * "debian/auctex/templates" is an auto-generated object, from + "debian/auctex/templates.in". Via the following changes, it has been + added to the sources, to ease the life of translators running + "debconf-updatepo"; thanks to Thomas Huriaux and Frank Küster. + (Closes: #407215) + * rules.in (DFILES): Removed "debian/<:=${PACKAGE}:>/templates": it + should not be deleted at clean time. + (build): Added dependency on "debian/po/templates.pot". + (clean): Added dependency on "debian/po/templates.pot". + * auctex/templates.in: Add an ePerl auto-generated arch-tag to + "auctex/templates". + + * auctex/bug.script.in: Redirect Emacs stdin from "dev/null"; thanks to + Andrea Mennucci. (Closes: #389249) + + * auctex/install.in (do_install): State the log file location; thanks to + Romain Francoise. (See: #408227) + + * control (Recommends): Added "xpdf | pdf-viewer"; thanks to Andrea + Mennucci. (See: #409795) + + -- Davide G. M. Salvetti Fri, 9 Mar 2007 11:28:24 +0100 + +auctex (11.83-4) unstable; urgency=medium + + * ../latex.el (TeX-latex-mode): Backport of diff between version 5.418 + and 5.419; thanks to Luca Capello. (Closes: #401119) + + * rules.in (AUCTEXSRCS): Filter out "auctex.el". + (PREVIEWSRCS): Filter out "preview/auto.el". + Thanks to James R. Van Zandt, Andrea Mennucci, and Frank Küster. + (Closes: #352576) + + * ../tex.el (Info-find-file, TeX-doc-backend-alist, TeX-doc): Backport + provided by Ralf Angeli; thanks to Ralf Stubner, Frank Küster, and + Ralf Angeli. (Closes: #375264) + + -- Davide G. M. Salvetti Sat, 9 Dec 2006 23:49:11 +0100 + +auctex (11.83-3) unstable; urgency=medium + + * control (auctex/Build-Depends-Indep, auctex/Recommends, + preview-latex-style/Depends): Updated texlive alternative dependencies + according to suggestions: + "tetex-base | texlive-latex-recommended" and "tetex-bin | + texlive-base". + + * po/pt.po: New file; thanks to Ricardo Silva. (Closes: #380674) + * po/ja.po: New file; thanks to Shimono Atsushi. (Closes: #384996) + * po/nl.po: New file; thanks to Vincent Zweije. (Closes: #392216) + * po/cs.po: New file; thanks to Miroslav Kure. (Closes: #396052) + * po/es.po: Updated file; thanks to Steve Lord Flaubert. (Closes: #402025) + + * auctex/config.in: Do not display the "auctex/defaultchanged" note + anymore. (Closes: #388825) + * auctex/templates.in (auctex/defaultchanged): Note deleted. (See: + #388825) + + * rules.in (DFILES): Added "debian/auctex/templates", since it is + auto-generated. + + -- Davide G. M. Salvetti Fri, 8 Dec 2006 17:35:02 +0100 + +auctex (11.83-2.1) unstable; urgency=high + + * NMU to fix an RC bug. + * control (auctex/Provides): Add "preview-latex". The package actually + does this, and declaring it will allow the RC-buggy preview-latex + package to be removed from etch. (Closes: #395294) + + -- Frank Küster Thu, 26 Oct 2006 09:30:43 +0200 + +auctex (11.83-2) unstable; urgency=low + + * {auctex, preview-latex-style}/{postinst.in, postrm.in, prerm.in}: + Fixed typo; exit 1 if called with unknown argument; thanks to Justin + Pryzby. + * {auctex, preview-latex-style}/prerm.in (failed-upgrade): Was + backwards, fixed; thanks to Justin Pryzby. (Closes: #372146) + + * auctex/install.in (do_install): Pass "GS=gs" to configure, to skip the + associated test. This is important when a Ghostscript providing + package has not already been configured ("/usr/bin/gs" is managed + through alternatives); thanks do David Kastrup. (Closes: #372566) + + * po/fr.po: New file; thanks to Steve Petruzzello. (Closes: #374751) + + -- Davide G. M. Salvetti Wed, 21 Jun 2006 11:39:43 +0200 + +auctex (11.83-1) unstable; urgency=low + + * New upstream release. (Closes: #363643, #366255) + + * control (Standards-Version): Updated to 3.7.2. + * control (auctex/Description, preview-latex-style/Description): Added + upstream URL. + + * control (Build-Depends-Indep): Add alternative "texlive-base". + * control (Recommends): Add alternative "texlive-base". + + * rules.in (fixperms): New variable. The command used to canonicalize + the whole tree permissions. + (clean): Use "$(fixperms)" to canonicalize permissions after cleaning. + + * rules.in (%): Cater for ePerl "*.in" sources in subdirectories of + "debian". + + * rules.in (checkdir, checkroot): Should not be implemented by means of + phony targets, otherwise targets which depend on them will never be + up-to-date. + (build, clean, binary-indep, binary-arch): Change accordingly. + + * auctex/docbase.auctex.in (Abstract): Fixed typo. + + * auctex/templates.in: Renamed from "auctex/template". + (auctex/doauto, auctex/doautofg): Improved wording. + * po/de.po, po/es.po, po/it.po, po/pt_BR.po, po/templates.po: Updated + accordingly. + * rules.in (po-debconf): Refactored. + (clean): Updated. + + * update-auctex-elisp.8.in: Improved wording. Updated copyright. + * update-auctex-install.8.in: Updated copyright. + + * debian/po: Moved from "debian/auctex/po"; thanks to Denis Barbier. + (Closes: #353146) + * debian/po/POTFILES.in: Updated accordingly. + + * auctex/lintian.in: New file. + * rules.in (binary-indep-auctex): Install it. + + * variables ($texmfdoc): New variable. + * rules.in (binary-indep-pls), preview-latex-style/docbase.in (DVI): Use + it. + + -- Davide G. M. Salvetti Thu, 8 Jun 2006 13:47:12 +0200 + +auctex (11.82-1) unstable; urgency=high + + * New upstream release. + + * High urgency upload: fixes a serious bug. + * control (Depends): Add "gs-gpl | gs"; thanks to Frank Küster. + * install.in (do_install): Also touch "preview/configure.ac"; thanks to + Frank Küster. (Closes: #349330, #349471, #349620) + + * control (Build-Depends-Indep): Change Ghostscript dependence to + "gs-gpl | gs". + + * control (Depends): Add alternative "texlive-latex-base"; thanks to + Norbert Preining. (Closes: #349662) + + * rules.in (%): Declare ${DEBIAN_DIR}. + * variables: Use it, to include "COPYRIGHT" in ePerl auto-generated files + located in a "debian/" subdirectory. + + * install.in (do_install): Remove unneeded cleanup in old + ".../site-lisp/preview/" directory. + (do_clean_old_cruft): New function. Clean up ".../site-lisp/preview/" + if possible. + * remove.in (undo_install): Remove obsolete clean up code for + ".../site-lisp/preview/". + + -- Davide G. M. Salvetti Sat, 4 Feb 2006 01:49:01 +0100 + +auctex (11.81-2) unstable; urgency=low + + * First public release for the 11.81 series. + * control (Uploaders): Added "OHURA Makoto ". + * update-auctex-elisp.in: Use the proper combination of "find" and "rm"; + thanks to Norbert Preining. (Closes: #347472) + + -- Davide G. M. Salvetti Sat, 21 Jan 2006 12:27:13 +0100 + +auctex (11.81-1) UNRELEASED; urgency=low + + * New upstream release. (Closes: #277885, #318114) + * This debian version supersedes and replaces the preview-latex package + (which is no longer a separate package) and provides the binary + package preview-latex-style (which remains a separate package). This + is done in agreement with OHURA Makoto, preview-latex maintainers, + which becomes a co-maintainer for auctex. (Closes: #300933) + * General overhaul of the build and installation procedure. + * control (Standards-Version): Updated to 3.6.2. + (Build-Depends-Indep): Added "gs | gs-aladdin", "po-debconf", and + "tetex-bin". Declared "texi2html (>=1.76-1)", thanks to Frank Küster. + (auctex/Depends): Added "preview-latex-style". + (auctex/Suggests): Added "dvipng". + (auctex/Conflicts, auctex/Replaces): This auctex version completely + replaces the old package "preview-latex". + (auctex/Description): Updated. + (preview-latex-style): New binary section. This binary package depends + on "tetex-bin", because it uses "mktexlsr" in its maintainer scripts. + Inherits the "Conflicts" field from previous versions with source + package "preview-latex". + (Depends): Modified the dependency on "debconf" to "debconf | + debconf-2.0" in order to allow the transition to cdebconf. + (Closes: #331751) + * rules.in: Heavily modified; it now builds two binary packages: "auctex" + and "preview-latex-style". + (binary-indep, binary-indep-auctex, binary-indep-pls): Split the + content of "binary-indep" between "binary-indep-auctex" and + "binary-indep-pls", one for each of the two binary packages. + * variables (PLSPKG): New variable, the name of "preview-latex-style", + the second binary package. + (DOCS): Updated. + (AUCTEX_INFOMENU, AUCTEX_INFODESC, PREVIEW_INFOMENU, + PREVIEW_INFODESC): New variables, split from INFOMENU and INFODESC to + cope with two distinct Info manuals, for AUCTeX and for preview-latex. + (IINSTALL): New function, replaces the variable ${IINSTALL}. + * NEWS.in: New file, suggested by Frank Küster. Note that AUCTeX gets + now auto-loaded by default. Note that preview-latex is now included + into AUCTeX. + * conffiles.in: Add the lisp startup files for emacs-snapshot and + emacs21. + * config.in: Question about default loading ("alreadydefault" and + "default") removed. Note "defaultchanged" added. + * docbase.auctex.in: Updated. + * docbase.preview.in: New file. + * install.in (debconf): Question "default" query removed. + (do_install): Updated to cater for the new 11.81 upstream release. + * lisp-startup.el.in: New file. + * remove.in (undo_install): Updated to cater for the new 11.81 upstream + release. + * postinst.in (DINSTALL, IINSTALL): Also register preview-latex. + * prerm.in (DREMOVE, DINSTALL, IREMOVE, IINSTALL): Also (de)register + preview-latex. + * templates: Renamed from template.in. Adapted to po-debconf. + (default, alreadydefault): Removed. + (defaultchanged): New. A note displayed to users upgrading from + versions older than 11.81-1 which states that AUCTeX gets now + auto-loaded by default. + * po: New subdirectory. Translations. + * po/POTFILES.in: New file. Automatically managed by po-debconf. + * po/de.po, po/es.po, po/it.po, po/pt_BR.po: New files. Localized + translations for templates, moved from templates. + * po/templates.pot: New file. Automatically managed by po-debconf. + * rules.in (DFILES, updatepo, po/updatepo, templates.merged, + binary-indep): Cater for po-debconf. + + -- Davide G. M. Salvetti Fri, 30 Sep 2005 10:15:29 +0200 + +auctex (11.55-3) unstable; urgency=low + + * General overhaul of the debian directory. + * preinst: Deleted. + + -- Davide G. M. Salvetti Sun, 11 Sep 2005 16:41:07 +0200 + +auctex (11.55-2) unstable; urgency=low + + * bug.presubj, bug.script: New files; thanks to Frank Küster. + (Closes: #293139) + * install (do_install): Add a directory separator at the end of + "--with-auto-dir"; thanks to Reuben Thomas. (Closes: #302916) + * rules (binary-indep): Handle "bug.presubj" and "bug.script". + * rules (binary-indep): Remove "tex-site.el", which is not needed; + thanks to Reuben Thomas. (Closes: #302915) + + -- Davide G. M. Salvetti Sat, 23 Apr 2005 19:47:40 +0200 + +auctex (11.55-1) unstable; urgency=medium + + * New upstream release. + * ../latex.el: Revert to upstream. + * ../tex-buf.el: Revert to upstream. + * ../tex.el: Revert to upstream. + * rules (build, binary-indep): Reflect upstream change in html build + directory. + * rules (binary-indep): Add "RELEASE" to "/usr/share/doc/auctex/". + + -- Davide G. M. Salvetti Sat, 5 Feb 2005 03:35:55 +0100 + +auctex (11.54-5) unstable; urgency=high + + * Urgency high: fixes an important bug. (See: #292886) + * ../latex.el: Apply a patch from Ralf Angeli, thanks to Daniel Burrows. + (Closes: #292886) + + -- Davide G. M. Salvetti Tue, 1 Feb 2005 00:29:34 +0100 + +auctex (11.54-4) unstable; urgency=medium + + * control (Conflicts): Set emacspeak version to (<= 17.0-1). + + -- Davide G. M. Salvetti Fri, 28 Jan 2005 11:41:55 +0100 + +auctex (11.54-3) unstable; urgency=high + + * Urgency high: fixes an important bug. (See: #292508) + * ../tex.el: Apply a patch from Ralf Angeli, thanks to Frank Küster. + (Closes: #292508) + * control (Conflicts): Add emacspeak (<= 21), thanks to Frank Küster. + (See: #291970) + + -- Davide G. M. Salvetti Thu, 27 Jan 2005 16:34:12 +0100 + +auctex (11.54-2) unstable; urgency=low + + * ../tex-buf.el: Apply a patch from Ralf Angeli. (Closes: #258686) + + -- Davide G. M. Salvetti Tue, 18 Jan 2005 14:24:53 +0100 + +auctex (11.54-1) unstable; urgency=medium + + * New upstream release. (Closes: #290263) + * Medium urgency: the potential impact of bug #287461 is unknown, so + better fix it soon; should go in sarge. + * install (do_install): Use "--disable-build-dir-test" instead of + "DISABLE_VALID_BUILD_DIR=YES". + * install (do_install): Strip extra "/" from configure command line; + thanks to Marcus Frings and others. (Closes: #287461) + * rules (binary-indep): Change the "index.html" link to "auctex.html". + * docbase, prerm, postinst, rules (build): AUCTeX info manual is now called + "auctex.info". + + -- Davide G. M. Salvetti Sat, 15 Jan 2005 13:13:56 +0100 + +auctex (11.53+CVS.2004.09.09.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + * install (do_install): Add "DISABLE_VALID_BUILD_DIR=YES" to "configure" + call. No more add ".nosearch" to the ${FLAVOR} "site-lisp" directory. + * remove (undo_install): No need to remove ".nosearch" from the + ${FLAVOR} "site-lisp" directory anymore. + + -- Davide G. M. Salvetti Thu, 9 Sep 2004 16:13:22 +0200 + +auctex (11.53-1) unstable; urgency=low + + * New upstream release. + + -- Davide G. M. Salvetti Thu, 9 Sep 2004 10:07:40 +0200 + +auctex (11.52-3) unstable; urgency=high + + * Important bug fix release. (Closes: #268156) + * ../configure: Completely remove the test for build directory validity. + (Unharmful hack on Debian.) + + -- Davide G. M. Salvetti Wed, 8 Sep 2004 09:52:18 +0200 + +auctex (11.52-2) UNRELEASED; urgency=high + + * ../configure: Add "-no-site-file" to the test for build directory + validity. + * install (do_install): Add ".nosearch" to the ${FLAVOR} "site-lisp" + directory. + * remove (undo_install): Also remove uncompressed log and ".nosearch". + + -- Davide G. M. Salvetti Fri, 27 Aug 2004 16:45:41 +0200 + +auctex (11.52-1) unstable; urgency=high + + * New upstream release, urgency set to high due to release date + approaching and very high number of closed bugs. + (Closes: #244336, #244342, #245388, #246908, #257496, #265598) + * config (configure, reconfigure): Do not display egrep error messages; + thanks to Frank Küster. (Closes: #258304) + * control (Build-Depends-Indep): Added "emacs21 | emacs-snapshot"; + thanks to Frank Küster. + * rules (build, binary-indep): Rename "auc-tex_toc.html" to + "auctex_toc.html". + + -- Davide G. M. Salvetti Thu, 26 Aug 2004 18:14:48 +0200 + +auctex (11.14+CVS.2004.06.16.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + * variables: Added "FAQ". + + -- Davide G. M. Salvetti Mon, 14 Jun 2004 10:03:59 +0200 + +auctex (11.14+CVS.2004.05.25.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + * rules: Add a "dir" file before calling "install-info", caters for + older version of that program. + + -- Davide G. M. Salvetti Tue, 25 May 2004 11:28:53 +0200 + +auctex (11.14+CVS.2004.05.19.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + * README, cron, install, rules, templates: Change "${UPDATE}" to + "${UPDATE_ELISP}". + * README (Online Documentation): Add "update-auctex-install(8)". + * rules: Add targets for "update-auctex-install" and + "update-auctex-install(8)". + * update-auctex-elisp.8: Spell fixes. + * update-auctex-install: New script. + * update-auctex-install.8: New man page. + * variables: Added "${UPDATE_INSTALL}". + + -- Davide G. M. Salvetti Wed, 19 May 2004 11:35:40 +0200 + +auctex (11.14+CVS.2004.05.18.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + * control (Standards-Version): Updated to 3.6.1. + (Depends): Added emacs-snapshot as a supported Emacs flavor. + * install: Added emacs-snapshot as a supported Emacs flavor. + * remove: Added emacs-snapshot as a supported Emacs flavor. + * update-auctex-elisp: Added emacs-snapshot as a supported Emacs flavor. + + -- Davide G. M. Salvetti Tue, 18 May 2004 16:15:11 +0200 + +auctex (11.14+CVS.2004.05.14.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + + -- Davide G. M. Salvetti Fri, 14 May 2004 21:30:25 +0200 + +auctex (11.14+CVS.2004.05.13.1-1) UNRELEASED; urgency=low + + * New CVS upstream source. + * ../latex.el: Upstream updated, reverted. + * ../doc/Makefile: Reverted to upstream. + * ../doc/auc-tex.texi: Reverted to upstream. + * Changed AUC.TeX to AUCTeX in all relevant files. + * README (Contributed Files): Removed "hilit-LaTeX.el", section improved. + * control (Description): Updated. + (Depends): Added make. + * copyright: Sentence on Debian GNU configuration removed. + * docbase (Title,Author,Abstract): Updated. + * install (do_byte_compile): Renamed to "do_install". + (do_install): Rewritten from scratch. + * postinst (conf_autoload): Code moved to "install (do_install)". + * prerm (deconf_autoload): Code moved to "remove (undo_install)". + * remove (undo_byte_compile): Renamed to "undo_install". + * rules (build, binary-indep): Heavily revised. + * update-auctex-elisp: Use the right, ${FLAVOR} dependent, + "tex-site.el". + * variables (DOCSRC,SOURCES,MULESRC,XSRC,STYLES): Removed. + (INFODESC): This sentence shouldn't end with a full stop. + + -- Davide G. M. Salvetti Thu, 13 May 2004 16:50:32 +0200 + +auctex (11.14-3) unstable; urgency=low + + * ../doc/Makefile: Code from patch-info moved here. + * ../doc/auc-tex.texi: Code from patch-info moved here. + * ../latex.el: Code from patch-multicolumn moved here. + * ../tex.el: Code from patch-custom moved here. + (TeX-macro-global): Changed "bibtex" in "bibtex/bst"; thanks to Frank + Küster. (Reread: #125715) + * ../tex-site.el: Code from patch-custom moved here. + * install: Open ${_db_logfile} in append mode instead of truncating it + with every new flavor run; thanks to Frank Küster. + * patch-custom: Removed. + * patch-info: Removed. + * patch-multicolumn: Removed. + + -- Davide G. M. Salvetti Thu, 18 Mar 2004 15:08:15 +0100 + +auctex (11.14-2) unstable; urgency=high + + * COPYRIGHT: Updated. + * config: Set ${LOGFILE} for the doautofg template; thanks to Yannick + Roehlly. (Closes: #238415) + * copyright: Updated. + * install: emacs20 removed. + * patch-custom: Fixed. (Closes: #238413) + * remove: emacs20 removed. + * update-auctex-elisp (${FLAVORS}): emacs20 removed. + + -- Davide G. M. Salvetti Wed, 17 Mar 2004 11:13:55 +0100 + +auctex (11.14-1) unstable; urgency=high + + * New upstream version. (Closes: #203632) + * ../tex-site.el: Debian customization code moved into patch-custom. + (TeX-Lisp-lisp-directory): defvar changed to defcustom. + Add source directories location on Debian to load-path; thanks to Matt + Swift. (Closes: #214576) + * control (Depends): emacs20 removed. (Closes: #232744) + (Suggests): catdvi added. + * patch-custom: New file with customization code formerly held in + ../tex-site.el, patch applied to ../tex.el and ../tex-site.el. + (Closes: #214594) + * patch-info: Updated. + * patch-multicolumn: New file, patch applied to ../latex.el; thanks to + Julian Gilbey. (Closes: #234110) + * rules: Use patch-custom and patch-multicolumn. + + -- Davide G. M. Salvetti Tue, 16 Mar 2004 14:20:13 +0100 + +auctex (11.13-2) unstable; urgency=high + + * patch-info: New file. + * rules: Use it. (Closes: #204034) + + -- Davide G. M. Salvetti Wed, 20 Aug 2003 16:09:08 +0200 + +auctex (11.13-1) unstable; urgency=medium + + * New upstream version. (Closes: #177270, #199193) + * COPYRIGHT: Updated. + * README (RefTeX): New section. + (Contributed Files): Removed font-latex.el; added tex-fptex.el. + * control (Standard-Version): Upgraded to 3.5.10. + * copyright: Updated. + * variables ($STYLES): Auto-generated; suggested by Frank Küster. + (Closes: #177902) + + -- Davide G. M. Salvetti Sun, 29 Jun 2003 17:28:10 +0200 + +auctex (11.11-3) unstable; urgency=medium + + * control (Build-Depends-Indep): Added ed. (Closes: #187648) + + -- Davide G. M. Salvetti Sun, 6 Apr 2003 11:49:24 +0200 + +auctex (11.11-2) unstable; urgency=low + + * control (Standards-Version): Upgraded to 3.5.7. + * postinst (do_link): Removed. + * prerm (undo_link): Removed. + + -- Davide G. M. Salvetti Fri, 27 Sep 2002 15:36:55 +0200 + +auctex (11.11-1) unstable; urgency=medium + + * New upstream CVS version. + (Closes: #81522, #118305, #118307, #122259, #125849) + * Not really a bug. (Closes: #150718) + * ../tex-site.el: A lot of changes. (Closes: #118400) + * copyright: Updated. + * templates: Added Brazilian Portuguese; thanks to Paulo R. Ormenese. + (Closes: #144630) + (doauto, doautofg): Added forgotten Choices-de strings. + * variables (STYLES): Added "style/prosper.el". + + -- Davide G. M. Salvetti Sun, 22 Sep 2002 11:20:38 +0200 + +auctex (11.06-1) unstable; urgency=low + + * New upstream CVS version. (Closes: #115660, #109114) + * ../tex-site.el (TeX-macro-global): Removed old ".../lib/texmf/" items; + added "/usr/local/share/texmf/bibtex/" and + "/usr/share/texmf/bibtex/"; thanks to Matt Hodges. (Closes: #125715) + * COPYRIGHT: Updated. + * README (Font-LaTeX): Documented new default. (Closes: #115694) + * config: Removed fldefault and flalreadydefault, see + README (Font-LaTeX). (Closes: #115694) + * control (Depends): Removed no longer existing mule2. + (Standards-Version): Updated to 3.5.6. + Build-Depends -> Build-Depends-Indep. + * copyright: Updated. + * install: Removed no longer existing mule2. + Added do_auto from postinst. + * postinst: Removed fldefault code, see README (Font-LaTeX). + (Closes: #115694) + Moved do_auto to install. + * postrm: Removed no more needed debconf inclusion. + * preinst: Removed no more needed debconf inclusion. + * prerm: Moved undo_auto to remove. + * remove: Removed no longer existing mule2. + Added undo_auto from remove; thanks to Julian D. Gilbey. + (Closes: #117047) + * templates: Added Spanish; thanks to Gorka Olaizola. (Closes: #108211) + Removed fldefault and flalreadydefault, see README (Font-LaTeX). + (Closes: #115694) + * update-auctex-elisp: Removed no longer existing mule2. + Added flavor arguments; thanks to Julian D. Gilbey. (Closes: #117047) + * update-auctex-elisp.8: Documented new command-line arguments. + * variables (AUC TeX sources): Added font-latex.el, tex-font.el. + (Contributed sources): Removed font-latex.el, added tex-fptex.el. + (Styles): Added verbatim.el. + + -- Davide G. M. Salvetti Fri, 18 Jan 2002 16:30:43 +0100 + +auctex (10.0g-4) unstable; urgency=low + + * control (Standards-Version): Updated to 3.5.5. + * remove: Changed `|| true' after `rmdir' to `test -d && rmdir'. + * templates (alreadydefault): Type changed from `text' to `note'. + (Closes: #106329) + + -- Davide G. M. Salvetti Sat, 28 Jul 2001 14:57:24 +0200 + +auctex (10.0g-3) unstable; urgency=low + + * remove: Added `|| true' after `rmdir'; thanks to Timshel Knoll. + (Closes: #101067) + + -- Davide G. M. Salvetti Sat, 16 Jun 2001 13:47:34 +0200 + +auctex (10.0g-2) unstable; urgency=high + + * rules (build): Removed debian/rules from deps. + (debian/rules): Removed debian/system.variables from deps. + + -- Davide G. M. Salvetti Wed, 16 May 2001 14:48:51 +0200 + +auctex (10.0g-1) unstable; urgency=low + + * New upstream release. (Closes: #92996) + * control (Build-Depends): Added eperl. + * copyright: Updated md5sum; typo fixed. + * rules (debian/rules): Added. + * rules (build): Added debian/rules. + * templates: Added German; thanks to Knut Suebert. (Closes: #93686) + + -- Davide G. M. Salvetti Sat, 5 May 2001 15:47:53 +0200 + +auctex (10.0d-1) unstable; urgency=medium + + * New upstream release. + * COPYRIGHT: Updated. + * README: Added font-latex support. + * config: Added font-latex support. + * control (Depends): added emacs21; + (Build-Depends): added texinfo, texi2html. + * install: Removed no more needed beauty stuff. + * postinst: Removed no more needed beauty stuff. + Added font-latex support. + * templates: Added font-latex support. + * update-auctex-elisp.8: Updated copyright. + * variables: Updated $STYLES. + + -- Davide G. M. Salvetti Thu, 18 Jan 2001 13:18:19 +0100 + +auctex (9.10t-3) unstable; urgency=low + + * COPYRIGHT: Updated. + * config: Added support for doautofg. + Cosmetic fix. + * control: Cosmetic fix. + * install: Added support for emacs21. + * postinst: Added support for doautofg. + * remove: Added support for emacs21. + * template (doautofg): New question. (Closes: #77428) + * update-auctex-elisp.8: Updated copyright. + * update-auctex-elisp: Added support for emacs21. + Cosmetic fix. + + -- Davide G. M. Salvetti Fri, 5 Jan 2001 02:33:35 +0100 + +auctex (9.10t-2) unstable; urgency=low + + * install: Touch ".nosearch" in ".../$FLAVOR/$style" to prevent it + from being automatically added to load-path by the execution of + normal-top-level-add-subdirs-to-load-path. + * remove: Remove ".nosearch" from ".../$FLAVOR/$style" + * rules: Touch ".nosearch" in "...$style" to prevent it from being + automatically added to load-path by the execution of + normal-top-level-add-subdirs-to-load-path. + Added -isp to dpkg-gencontrol. + * templates: Wording improved. + + -- Davide G. M. Salvetti Wed, 15 Nov 2000 17:29:18 +0100 + +auctex (9.10t-1) unstable; urgency=low + + * New upstream version. + * Wrong quote string bug fixed upstream. (Closes: #64185, #64186) + * config: Uses a better regexp to detect alreadydefault. (Closes: #67408) + * control (Depends): emacs19 removed: upstream version now supports + _ONLY_ Emacs 20 and newer. + (Standards-Version): Updated to 3.2.1. + * copyright: Updated, removed japanese-patch statement. + * install: Removed emacs19. + * japanese-patch: Removed (included upstream). + * japanese-patch-copyright: Removed. + * templates: Wording improved. (Closes: #61064) + Localized in Italian. (Closes: #64159) + * remove: Removed emacs19. + * rules: Removed rules for japanese-patch. + * updated-auctex-elisp: Removed emacs19. + * updated-auctex-elisp.8: Updated. + * variables: Added tex-mik.el and various new styles. + + -- Davide G. M. Salvetti Fri, 20 Oct 2000 02:14:58 +0200 + +auctex (9.9p-13) frozen unstable; urgency=medium + + * control (Standards-Version): Updated to 3.0.0. + * postinst: Fixed typo. + * rules: Fixed info files renaming rule; thanks to Ryuichi + Arafune. (Closes: #51364) + * update-auctex-elisp: mule2 ad hoc rule added; thanks to Takuo + Kitame. (Closes: #52016) + + -- Davide G. M. Salvetti Thu, 20 Jan 2000 15:32:38 +0100 + +auctex (9.9p-12) unstable; urgency=low + + * Debconf support updated. + + -- Davide G. M. Salvetti Sun, 31 Oct 1999 22:49:57 +0100 + +auctex (9.9p-11) unstable; urgency=low + + * control: Added mule2 support. + * install: Added mule2 support. + * remove: Added mule2 support. + * rules: Rule to update system.variables added. + * update-auctex-elisp: Added mule2 support. + + -- Davide G. M. Salvetti Fri, 22 Oct 1999 21:55:20 +0200 + +auctex (9.9p-10) unstable; urgency=low + + * postinst,prerm: Fixed typo. (Closes: #47418) + + -- Davide G. M. Salvetti Thu, 14 Oct 1999 21:09:16 +0200 + +auctex (9.9p-9) unstable; urgency=low + + * templates: Fixed typo. (Ref: #47306) + * postinst: Run update-auctex-elisp with fd 3 closed; issue "db_stop" at + exit. (Closes: #47325) + * preinst: New file. + * variables: Split generic stuff to system.variables. + + -- Davide G. M. Salvetti Thu, 14 Oct 1999 16:38:37 +0200 + +auctex (9.9p-8) unstable; urgency=high + + * install: Really ignore emacs. + * postinst: Mental typo with umask fixed (hence urgency=high). + * remove: Really ignore emacs. + * rules: Fixed japanese-patch mistake. (Closes: #47189) + + -- Davide G. M. Salvetti Tue, 12 Oct 1999 16:34:45 +0200 + +auctex (9.9p-7) unstable; urgency=low + + * README: Instructions on AUC-TeX auto-loading updated. + * config: Default auto-loading questions added. + * postinst: Default auto-loading rule added; fixed ../share/doc/pkg + bug. (Closes: #47119) + * prerm: Default auto-loading rule added. + * templates: Default auto-loading questions added. + + -- Davide G. M. Salvetti Mon, 11 Oct 1999 10:13:43 +0200 + +auctex (9.9p-6) unstable; urgency=low + + * Debconf support added. + * Eperl handling of Debian files. + * ../tex-site.el: Macros directory updated. + * COPYRIGHT: New file. + * README: Added note for TeX/TeXInfo sources. + * config: New file. + * control: Dependence on debconf added. + * emacsen.install: Renamed to install. + * emacsen.remove: Renamed to remove. + * postinst: Old hacks removed. + * postrm: New file. + * preinst: File removed (hopefully we need those old hacks no more). + * rules: Debconf support added; new doc directory for TeX/TeXInfo + sources. + * templates: New file. + + -- Davide G. M. Salvetti Sat, 9 Oct 1999 18:35:47 +0200 + +auctex (9.9p-5) unstable; urgency=low + + * Docbase support added. + * docbase: New file. + * auctex.cron: Renamed to cron. + * auctex.dhelp: File removed. + * auctex.menu: File removed. + * emacsen.install: Renamed to install. + * emacsen.remove: Renamed to remove. + * postrm: File removed. + * prerm: Docbase support added. + * postinst: Docbase support added. + * rules: Docbase support added. + + -- Davide G. M. Salvetti Thu, 7 Oct 1999 17:48:43 +0200 + +auctex (9.9p-4) unstable; urgency=low + + * control: Standards-Version: 3.0.0. + * postinst: Updated accordingly. + * prerm: Updated accordingly. + * rules: Updated accordingly. + + -- Davide G. M. Salvetti Wed, 6 Oct 1999 01:17:04 +0200 + +auctex (9.9p-3) unstable; urgency=low + + * Added dhelp support. (Closes: #41592) + * auctex.dhelp: New file. + * postinst: Added dhelp support. + * prerm: Added dhelp support. + * rules: Added auctex.dhelp rule. + + -- Davide G. M. Salvetti Tue, 5 Oct 1999 20:09:42 +0200 + +auctex (9.9p-2) unstable; urgency=low + + * ../tex.el: Applied patch from Hidenobu Nabetani + . (Closes: #39547) + * ../tex-jp.el: Applied patch from Hidenobu Nabetani + . (Closes: #39547) + * japanese-patch: added. + * japanese-patch-copyright: added. + * rules: updated to support japanese-patch. + + -- Davide G. M. Salvetti Fri, 16 Jul 1999 18:21:11 +0200 + +auctex (9.9p-1) unstable; urgency=low + + * New upstream version (stable version). + * README: updated. + * copyright: updated. + * emacsen.install: E(MULE)?FLAGS switched to long style option and + `--no-site-file' added (side effects on the `custom' emacs19 add-on + package expected; sigh!). (Closes: #39095) + * update-auctex-elisp: $FLAVOR flags switched to long style option and + `--no-site-file' added (side effects on the `custom' emacs19 add-on + package expected; sigh!). (Closes: #39095) + * ../tex-jp.el: reverted to upstream version, waiting for Japanese + patches to be tested against it. (See: #39547) + + -- Davide G. M. Salvetti Fri, 2 Jul 1999 17:53:45 +0200 + +auctex (9.9o-1) unstable; urgency=low + + * New upstream version. (Closes: #32122) + * update-auctex-elisp: Removed emacs' option `-no-site-file', since we + already byte compile stuff without it. This should allow AUC TeX to + make good use of the `custom' add-on package with `emacs19'; however, + it may well have some nasty side effects on non-standard sites, since + this way we're going to compile things in an (potentially) unknown + environment, due to the fact we let `site-start.el' to be loaded on + startup as well. Well, we'll see; thanks to Martin Stjernholm for + this fix. (Closes: #30419) + + -- Davide G. M. Salvetti Sat, 23 Jan 1999 15:38:48 +0100 + +auctex (9.9j-3) unstable; urgency=low + + * ../tex-jp.el: Applied patch from Hidenobu Nabetani + . (Closes: #28223) + * emacsen.install: Added lpath-jp.el trick to allow byte-compiling of + tex-jp.el. + + -- Davide G. M. Salvetti Wed, 21 Oct 1998 01:25:50 +0200 + +auctex (9.9j-2) frozen unstable; urgency=medium + + * Bug fix release for frozen. + * README: s/update-auctex-lisp/update-auctex-elisp/. + * auctex.cron: s/auctex-auto-load/update-auctex-elisp/. + + -- Davide G. M. Salvetti Sat, 17 Oct 1998 15:42:24 +0200 + +auctex (9.9j-1) unstable; urgency=low + + * New upstream version. + * copyright: Updated upstream sources reference. + * emacsen.install: Updated $SOURCES, added texmathp.el. + * rules: Updated $(AUCSRC), added texmathp.el. + + -- Davide G. M. Salvetti Fri, 28 Aug 1998 18:33:17 +0200 + +auctex (9.9b-4) stable unstable; urgency=low + + * README: Added a note about `TeX-printer-list'; added a note about + contributed files. + * postinst: Delete old relics if empty. (Closes: #22734) + * preinst: Added `--no-run-if-empty' to `xargs rmdir'. (Closes: #22734) + Move old byte-compiled files along with their sources. + + -- Davide G. M. Salvetti Thu, 27 Aug 1998 15:50:14 +0200 + +auctex (9.9b-3) frozen unstable; urgency=low + + * emacsen.install: Log compilation warnings. + * postrm: New file. + * prerm: Moved call to update-menus to postrm. + * rules: Added postrm rule. + + -- Davide G. M. Salvetti Tue, 21 Apr 1998 19:02:59 +0200 + +auctex (9.9b-2) frozen unstable; urgency=low + + * control: Added dependence on debianutils (>=1.7). (Closes: #21049). + * postinst: Moved abort stuff in a separate nop case statement. + * preinst: Added -f to mv -V t -b. + + -- Davide G. M. Salvetti Tue, 14 Apr 1998 14:35:17 +0200 + +auctex (9.9b-1) unstable; urgency=low + + * New upstream version. + * ../tex-site.el: Switched Debian configuration variables definitions + from `defvar' to `defcustom'. + * ../tex-site.el: Re-added trailing `/' to TeX-lisp-directory. + * postinst: Fixed test on /var/lib/auctex before call to + run_auto_generate. + * rules: auctex-auto-load -> update-auctex-elisp compatibility symlink + disabled. + + -- Davide G. M. Salvetti Mon, 9 Mar 1998 14:20:15 +0100 + +auctex (9.9a-2) unstable; urgency=low + + * ../tex-site.el: Removed trailing `/' from TeX-lisp-directory. + * postinst: Use mktemp for update-auctex-elisp' log file; don't ask the + user about running it in background any more, just do it. + Fixed test for update-menus. + * preinst: Removed a couple of question to the user. + * prerm: Fixed test for update-menus. + + -- Davide G. M. Salvetti Fri, 6 Mar 1998 15:53:06 +0100 + +auctex (9.9a-1) unstable; urgency=low + + * New upstream version. + * emacsen.install: Added tex-jp.elc rule for emacs20. + + -- Davide G. M. Salvetti Mon, 23 Feb 1998 17:38:35 +0100 + +auctex (9.8i-3) unstable; urgency=medium + + * ../tex-site.el: Added "/usr/local/lib/texmf/tex/" to TeX-macro-global. + Added debian-emacs-flavor code. + /var/lib/emacs/auctex/ -> /var/lib/auctex/. + * README: New file. + * auctex-auto-load: Changed name to update-auctex-elisp; added a + compatibility symlink that should eventually disappear. + * auctex.menu: New file. + * conffiles (tex-site.el): Removed. + * control (Standards-Version): Updated to 2.4.0.0. + (Depends): Changed to emacs19|emacs20. + * emacsen.install: New file. + * emacsen.remove: New file. + * postinst: Added support for `menu'. + Info description changed. + Added call to emacs-package-install. + * preinst: Added warning about /etc/elisp/tex-site.el removal. + Dropped a few ancient warnings. + * prerm: Added support for `menu'. + Added call to emacs-package-remove. + * postrm: Moved some stuff into prerm and deleted. + * rules: Moved the Debian patched tex-site.el in the upstream source + directory. + Moved elisp directory from /usr/lib/emacs/common/auctex/ to + /usr/share/emacs/site-lisp/auctex/. + Added math-ref.tex.gz and tex-ref.tex.gz to /usr/doc/auctex/. + Added HTML documentation in /usr/doc/auctex/auctex.html/. + Modified to support the new emacsen proposal. + * update-auctex-elisp: Added debian-emacs-flavor code. + * update-auctex-elisp.8: New file. + + -- Davide G. M. Salvetti Thu, 19 Feb 1998 00:06:54 +0100 + +auctex (9.8i-2) unstable; urgency=low + + * auctex.cron: Doesn't send useless output to root anymore. (Closes: + #16988) + * copyright: Upstream maintainer email address fixed. (Hopefully. :-) + + -- Davide G. M. Salvetti Mon, 12 Jan 1998 20:09:47 +0100 + +auctex (9.8i-1) unstable; urgency=low + + * New maintainer. + * New upstream version. + * control (Standards-Version): Updated to 2.3.0.1. + (Description): Improved. + * tex-site.el: Auto generated files are now created under /var instead + of /usr. + * auctex-auto-load: Remove auto generated *.el files after *.elc have + been generated. + * auctex.cron: Added test to prevent execution in config-files status. + * postinst: Warn the user upgrading from old version about the new + location of tex-site.el. (Closes: #12111) + Changed old version upgrade test. (Closes: #12111) + run_auto_generate is now correctly called. + * preinst: Warn the user before trying to remove old AUCTeX directory. + (Closes: #12111) + * rules: Heavily rewritten; don't compress copyright anymore. (Closes: + #14395) + + -- Davide G. M. Salvetti Thu, 8 Jan 1998 11:07:00 +0100 + +auctex (9.7n-2) frozen unstable; urgency=low + + * fixed the postinst script + + -- Helmut Geyer Fri, 18 Apr 1997 03:04:19 +0200 + +auctex (9.7n-1) unstable; urgency=low + + * new upstream version. + * fixed files permissions (Bug# 8448) + * Architecture: all (Bug# 8442) + + -- Helmut Geyer Wed, 2 Apr 1997 00:56:38 +0200 + +auctex (9.7m-1) unstable; urgency=medium + + * new upstream release 9.7m + * new maintainer Helmut Geyer + * correct handling of site-start.d using standard priority 50 for emacs, + xemacs 19 and xemacs 20. + + -- Helmut Geyer Mon, 17 Mar 1997 20:42:25 +0100 + +auctex (9.7l-1) unstable; urgency=medium + + * new upstream release 9.7l + * unmaintained release for bo (Debian 1.3) + * new Debian packaging standard used + * new location for auctex: /usr/lib/emacs/common/auctex + * lacheck no longer part of the package -> (not-yet-existent) lacheck package + * changes to support the new TeX packages based on teTeX + * fixed several bugs + * TeX-auto-generate{,-global} now is aware of already parsed files. This + does regretfully not work for style/macro files that do not generate + any lisp file. + * added weekly cron entry for auctex-auto-generate + + -- Helmut Geyer Sat, 15 Mar 1997 15:30:00 +0100 + +comment (0) UNRELEASED; urgency=low + + * This is not a changelog entry. + + * local variables: + * mode: debian-changelog + * coding: utf-8 + * ispell-local-dictionary: "american" + * end: + + * LocalWords: texlive fixperms canonicalize ePerl checkdir checkroot indep + * LocalWords: doauto doautofg gpl Küster Ghostscript Preining Uploaders po + * LocalWords: OHURA Makoto elisp aladdin debconf tetex texi html dvipng pls + * LocalWords: mktexlsr cdebconf PLSPKG INFOMENU INFODESC AUCTeX IINSTALL de + * LocalWords: conffiles emacs config alreadydefault defaultchanged postinst + * LocalWords: DINSTALL prerm DREMOVE IREMOVE DFILES updatepo Sep preinst dir + * LocalWords: tex el emacspeak Frings docbase CVS nosearch Unharmful egrep + * LocalWords: auc toc README cron hilit LaTeX conf autoload deconf DOCSRC md + * LocalWords: MULESRC XSRC multicolumn bibtex bst logfile Yannick Roehlly fd + * LocalWords: defvar defcustom catdvi Gilbey RefTeX fptex Ormenese fldefault + * LocalWords: flalreadydefault postrm Gorka Olaizola rmdir Timshel deps Knut + * LocalWords: eperl Suebert texinfo subdirs isp dpkg gencontrol japanese mik + * LocalWords: Ryuichi Arafune hoc Takuo Kitame umask TeXInfo emacsen dhelp + * LocalWords: Hidenobu Nabetani Stjernholm lpath jp texmathp AUCSRC xargs mv + * LocalWords: debianutils nop symlink mktemp elc usr Helmut Geyer xemacs bo + * LocalWords: lacheck teTeX auctex debian refactored Barbier texmfdoc DVI + * LocalWords: presubj Kreutzmann Tarrio Capello AUCTEXSRCS PREVIEWSRCS Zandt + * LocalWords: Mennucci backend alist Stubner Shimono Atsushi Zweije Kure dev + * LocalWords: Miroslav NMU Pryzby Kastrup Petruzzello xpdf PDFLATEX André + * LocalWords: Luís Kozlov Huriaux stdin pdf + + * arch-tag: 3b0f7922-dfa2-4938-9f0e-1492f3528a80 + + -- Davide G. M. Salvetti Thu, 01 Jan 1970 00:00:01 +0000 --- auctex-11.83.orig/debian/variables +++ auctex-11.83/debian/variables @@ -0,0 +1,103 @@ +<: +# Copyright (C) 1999, 2000, 01, 02, 03, 04, 05, 06, 07 +# by Davide G. M. Salvetti. +:>// +<:$PACKAGE="auctex":>// +<:$PLSPKG="preview-latex-style":>// +<:# documentation :>// +<:$DOCS="README CHANGES FAQ TODO":>// +<:# miscellaneous package variables :>// +<:$UPDATE_ELISP="update-auctex-elisp":>// +<:$UPDATE_INSTALL="update-auctex-install":>// +<:$TMPMASK="/tmp/update-auctex-elisp.XXXXXXX":>// +<:$MENUSEC="Apps/Editors":>// +<:$INFOSEC="Document Preparation":>// +<:$AUCTEX_INFOMENU="AUCTeX":>// +<:$AUCTEX_INFODESC="An integrated environment for editing LaTeX, ConTeXt," + . " docTeX, Texinfo, and TeX files.":>// +<:$PREVIEW_INFOMENU="preview-latex":>// +<:$PREVIEW_INFODESC="A package embedding preview fragments into Emacs" + . " source buffers under the AUCTeX editing environment for" + . " LaTeX.":>// +<:$EPRIORITY="50":>// +<:# Debian packaging specific :>// +<:$debian="/DEBIAN/":>// +<:$etc="/etc/$PACKAGE/":>// +<:$doc="/usr/share/doc/$PACKAGE/":>// +<:$docsrc="$doc/src/":>// +<:$examples="$doc/examples/":>// +<:$html="$doc/HTML":>// +<:$var="/var/lib/$PACKAGE/":>// +<:# <% usr %> and friends :>// +<:$usr="/usr/":>// +<:$share="/usr/share/":>// +<:$bin="/usr/bin/":>// +<:$man="/usr/share/man/":>// +<:$sbin="/usr/sbin/":>// +<:# <% cron %> :>// +<:$cron_d="/etc/cron.d/":>// +<:$cron_daily="/etc/cron.daily/":>// +<:$cron_weekly="/etc/cron.weekly/":>// +<:$cron_monthly="/etc/cron.monthly/":>// +<:# <% debconf %> :>// +<:$CONFMODULE="/usr/share/debconf/confmodule":>// +<:# <% docbase %> :>// +<:$DINSTALL="type install-docs &>/dev/null && install-docs --install":>// +<:$DREMOVE="type install-docs &>/dev/null && install-docs --remove":>// +<:$docbase="/usr/share/doc-base/":>// +<:# <% emacs %> :>// +<:$ELCLOG="CompilationLog":>// +<:$EINSTALL="test -x /usr/lib/emacsen-common/emacs-package-install" +. " && /usr/lib/emacsen-common/emacs-package-install":>// +<:$EREMOVE="test -x /usr/lib/emacsen-common/emacs-package-remove" +. " && /usr/lib/emacsen-common/emacs-package-remove":>// +<:$SSEL="/etc/emacs/site-start.el":>// +<:$sstartd="/etc/emacs/site-start.d/":>// +<:$ecode="/usr/lib/emacsen-common/packages/":>// +<:$lisp="/usr/share/emacs/site-lisp/$PACKAGE/":>// +<:$style="$lisp/style/":>// +<:# <% info %> :>// +<:sub IINSTALL { + my (${section}, ${menu}, ${description}) = @_; + + ${section} = ${INFOSEC} unless ${section}; + ${menu} = ${INFOMENU} unless ${menu}; + ${description} = ${INFODESC} unless ${description}; + + return "install-info --section \"${section}\" \"${section}\"" + . " --menuentry=\"${menu}\"" + . " --description=\"${description}\"" + . " --quiet"; +}:>// +<:$IREMOVE="install-info --quiet --remove":>// +<:$info="/usr/share/info/":>// +<:# <% texmf %> :>// +<:$texmf="/usr/share/texmf/":>// +<:$texmfdoc="/usr/share/doc/texmf/latex/styles/":>// +<:$MKTEXLSR="kpsewhich --version &>/dev/null" +. " && type mktexlsr &>/dev/null" +. " && mktexlsr >/dev/null":>// +<:# <% dictionaries-common %> :>// +<:$dict="/usr/share/dict/":>// +<:$winfo="/var/lib/dictionaries-common/wordlist/":>// +<:$WREBUILD="/usr/sbin/update-default-wordlist --rebuild":>// +<:$WREMOVE="/usr/sbin/remove-default-wordlist $PACKAGE":>// +<:# <% reportbug %> :>// +<:$bug="/usr/share/bug/$PACKAGE/":>// +<:# <% lintian %> :>// +<:$lintian="/usr/share/lintian/overrides/":>// +<:# <% misc %> :>// +<:$GPL="/usr/share/common-licenses/GPL":>// +<:open(COPYRIGHT,"${DEBIAN_DIR}/COPYRIGHT"); + @COPYRIGHT=; + close(COPYRIGHT):>// +<: +# arch-tag: b01c14c9-57be-47ff-abb7-de12aebfc520 +# +# local variables: +# mode: shell-script +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +:>// --- auctex-11.83.orig/debian/COPYRIGHT +++ auctex-11.83/debian/COPYRIGHT @@ -0,0 +1,19 @@ +# Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06, 07 +# by Davide G. M. Salvetti. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to: The Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +# +# On Debian GNU/Linux System you can find a copy of the GNU General Public +# License in "/usr/share/common-licenses/GPL". --- auctex-11.83.orig/debian/copyright.in +++ auctex-11.83/debian/copyright.in @@ -0,0 +1,58 @@ +#include "variables" +This is the Debian package <:=${PACKAGE}:>, maintained by + + Davide G. M. Salvetti + +using sources obtained from + + . + + +COPYRIGHT +========= + +This program is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation; either version 2, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program; if not, write to the Free Software Foundation, Inc., 51 Franklin +St, Fifth Floor, Boston, MA 02110-1301, USA. + + +DEBIAN SPECIFIC CHANGES +======================= + +The Debian specific changes are free software + + Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06, 07 + by Davide G. M. Salvetti + +and you can redistribute it and/or modify it under the terms of the GNU +General Public License as published by the Free Software Foundation; +either version 2 of the License, or (at your option) any later version. + +On Debian GNU/Linux System you can find a copy of the GNU General Public +License in "<:=${GPL}:>". + +A copy of the GNU General Public License is also available at + + . + +You may also obtain it by writing to the Free Software Foundation, Inc., 51 +Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +<: +# arch-tag: 93e24830-7374-49ac-afc2-22236497e636 +# +# local variables: +# mode: text +# coding: utf-8 +# fill-column: 78 +# ispell-local-dictionary: "american" +# end: +:>// --- auctex-11.83.orig/debian/control +++ auctex-11.83/debian/control @@ -0,0 +1,66 @@ +Source: auctex +Priority: optional +Section: tex +Maintainer: Davide G. M. Salvetti +Uploaders: OHURA Makoto +Standards-Version: 3.7.2 +Build-Depends-Indep: emacs22 | emacs21 | emacs-snapshot, eperl, gs-gpl | gs, po-debconf, texlive-latex-base, texinfo, texi2html (>=1.76-1) + +Package: auctex +Architecture: all +Depends: debconf | debconf-2.0, emacs22 | emacs21 | emacs-snapshot, make, preview-latex-style +Recommends: doc-base, gs-gpl | gs, texlive-latex-recommended, xpdf-reader | pdf-viewer +Suggests: catdvi, dvipng, lacheck +Conflicts: emacspeak (<= 17.0-1), preview-latex +Replaces: preview-latex +Provides: preview-latex +Description: An integrated environment for editing TeX and friends documents + AUCTeX is a comprehensive customizable integrated environment for writing + input files for TeX/LaTeX/ConTeXt/Texinfo using Emacs. + . + It lets you process your source files by running TeX and related tools (such + as output filters, post processors for generating indices and bibliographies, + and viewers) from inside Emacs. AUCTeX lets you browse through the errors + TeX reported, while it moves the cursor directly to the reported error, and + displays some documentation for that particular error. This will even work + when the document is spread over several files. + . + One component of AUCTeX that LaTeX users will find attractive is + preview-latex, a combination of folding and in-source previewing that + provides true "What You See Is What You Get" experience in your sourcebuffer, + while letting you retain full control. preview-latex comes with its own + manual. + . + AUCTeX automatically indents your `LaTeX-source', not only as you write + it---you can also let it indent and format an entire document. It has a + special outline feature, which can greatly help you `getting an overview' of + a document. + . + Apart from these special features, AUCTeX provides a large range of handy + Emacs macros, which in several different ways can help you write your + documents fast and painlessly. + . + All features of AUCTeX are documented using the GNU Emacs online + documentation system. That is, documentation for any command is just a key + click away! + . + AUCTeX is written entirely in Emacs-Lisp, and hence you can easily add new + features for your own needs. It has become recently a GNU project. AUCTeX + is distributed under the `GNU General Public License Version 2'. + . + Currently XEmacs ships with its own AUCTeX, so this package should only + be used with GNU/Emacs. (I.e., you don't need to install this package if + your site uses only XEmacs.) + . + Homepage: http://www.gnu.org/software/auctex/ + +Package: preview-latex-style +Architecture: all +Depends: tex-common, texlive-base-bin +Recommends: doc-base +Conflicts: preview-latex (<=0.7.3-2) +Description: LaTeX style files for editor embedded preview of some environments + These style files are allow previewing LaTeX environments such as math or + figures in editors which support it. + . + Homepage: http://www.gnu.org/software/auctex/preview-latex.html --- auctex-11.83.orig/debian/rules +++ auctex-11.83/debian/rules @@ -0,0 +1,295 @@ +#! /usr/bin/make -f +# +# rules for auctex +# +# Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06, 07 +# by Davide G. M. Salvetti. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to: The Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +# +# On Debian GNU/Linux System you can find a copy of the GNU General Public +# License in "/usr/share/common-licenses/GPL". + +checkdir=test -f debian/rules +checkroot=test root = "$$(whoami)" +fixperms=chmod -R a+rX . + +tmp := $(shell pwd)/debian/tmp/ +auctex := $(tmp)/auctex/ +pls := $(tmp)/preview-latex-style/ + +SHELL := /bin/bash +INSTDIR := install -m 755 -d +INSTPROG := install -m 755 -s +INSTDATA := install -m 644 +INSTSCRIPT := install -m 755 +STRIP := strip -R .note -R .comment + +DFILES := debian/auctex/README debian/copyright \ +debian/auctex/NEWS \ +debian/auctex/config debian/auctex/postinst \ +debian/auctex/prerm debian/auctex/postrm \ +debian/auctex/conffiles debian/auctex/cron \ +debian/auctex/docbase.auctex \ +debian/auctex/docbase.preview \ +debian/auctex/lintian \ +debian/auctex/bug.presubj debian/auctex/bug.script \ +debian/auctex/install debian/auctex/remove \ +debian/auctex/lisp-startup.el \ +debian/auctex/update-auctex-elisp \ +debian/auctex/update-auctex-elisp.8 \ +debian/auctex/update-auctex-install \ +debian/auctex/update-auctex-install.8 \ +debian/preview-latex-style/README \ +debian/preview-latex-style/postinst \ +debian/preview-latex-style/prerm debian/preview-latex-style/postrm \ +debian/preview-latex-style/docbase \ +debian/preview-latex-style/lintian \ +debian/preview-latex-style/bug.presubj + +DCSOURCES := $(shell cat debian/po/POTFILES.in \ + | perl -pe 's|^\[[^]]+\] +(.*)$$|debian/$${1}|') +DFILES += $(patsubst %templates, %templates.dcobj, $(DCSOURCES)) + +AUCTEXSCRIPTS := configure install-sh +AUCTEXSRCS := $(filter-out auctex.el, \ + $(wildcard aclocal.m4 configure.ac *.in *.el)) +STYLES := style/*.el style/.nosearch +PREVIEWSCRIPTS := preview/configure +PREVIEWSRCS := $(filter-out preview/auto.el, \ + $(wildcard preview/configure.ac preview/*.in preview/*.el)) +MAKEFILEHACKS := doc/Makefile.in preview/latex/Makefile.in + +test: + @echo $(AUCTEXSRCS) + @echo $(PREVIEWSRCS) + +.PHONY: pre-build +pre-build: + test -x ./autogen.sh && ./autogen.sh || true + +debian/rules: debian/variables + +%:: %.in + eperl -d DEBIAN_DIR="$(shell pwd)/debian/" \ + -I "$(shell pwd)/debian/" -P -o $@ $< + +debian/po/templates.pot: $(DCSOURCES) + umask 0022 && debconf-updatepo --verbose --podir=debian/po/ + @touch $@ + +%.dcobj: % debian/po/templates.pot + po2debconf --verbose --podir debian/po $< > $@ + +build: $(DFILES) debian/po/templates.pot + $(checkdir) + ./configure \ + --prefix=/usr/ \ + --infodir=/usr/share/info/ \ + --with-emacs=$$(type emacs-snapshot &>/dev/null \ + && echo emacs-snapshot || echo emacs) + cd doc && $(MAKE) all + cd doc && $(MAKE) auctex.htmls/auctex.html + cd doc && $(MAKE) preview-latex.htmls/preview-latex.html + cd preview && $(MAKE) texmf + touch build + +.PHONY: clean +clean: debian/po/templates.pot + $(checkdir) + -rm -rf build core $(tmp) debian/{files*,substvars} + test ! -f Makefile || $(MAKE) distclean + -rm -f $(DFILES) + $(fixperms) + +.PHONY: binary +binary: binary-arch binary-indep + +.PHONY: binary-indep +binary-indep: binary-indep-auctex binary-indep-pls + +.PHONY: binary-indep-auctex +binary-indep-auctex: build + $(checkdir) + $(checkroot) + -rm -rf $(auctex) + + $(INSTDIR) $(auctex)//usr/share/emacs/site-lisp/auctex/ $(auctex)//usr/share/emacs/site-lisp/auctex//style/ \ + $(auctex)//usr/share/emacs/site-lisp/auctex//preview/ + $(INSTSCRIPT) $(AUCTEXSCRIPTS) $(auctex)//usr/share/emacs/site-lisp/auctex// + $(INSTDATA) ChangeLog $(auctex)//usr/share/emacs/site-lisp/auctex// + $(INSTDATA) $(AUCTEXSRCS) $(auctex)//usr/share/emacs/site-lisp/auctex// + $(INSTDATA) $(STYLES) $(auctex)//usr/share/emacs/site-lisp/auctex//style// + $(INSTSCRIPT) $(PREVIEWSCRIPTS) $(auctex)//usr/share/emacs/site-lisp/auctex//preview/ + $(INSTDATA) $(PREVIEWSRCS) $(auctex)//usr/share/emacs/site-lisp/auctex//preview/ + $(MAKE) prefix=$(auctex)//usr/ install-images + cd preview && $(MAKE) prefix=$(auctex)//usr/ install-images + umask 0022; for i in $(MAKEFILEHACKS); do \ + $(INSTDIR) $(auctex)//usr/share/emacs/site-lisp/auctex//$${i%/*}/; \ + echo -e "clean distclean:\n\trm -f Makefile\n" \ + > $(auctex)//usr/share/emacs/site-lisp/auctex//$${i}; \ + done + $(INSTDIR) $(auctex)//usr/share/info/ + $(MAKE) infodir=$(auctex)//usr/share/info/ INSTALL_INFO=: install-docs + gzip -9frv $(auctex)//usr/share/info/ + + $(INSTDIR) $(auctex)//usr/share/doc/auctex/ $(auctex)//usr/share/doc/auctex//src/ \ + $(auctex)//usr/share/doc/auctex//HTML/{auctex,preview-latex} \ + $(auctex)//usr/share/man//man8/ + $(INSTDATA) README CHANGES FAQ TODO $(auctex)//usr/share/doc/auctex/ + $(INSTDATA) doc/*.tex{,i} $(auctex)//usr/share/doc/auctex//src/ + $(INSTDATA) preview/*.tex $(auctex)//usr/share/doc/auctex//src/ + $(INSTDATA) debian/auctex/README \ + $(auctex)//usr/share/doc/auctex//README.Debian + $(INSTDATA) debian/auctex/NEWS \ + $(auctex)//usr/share/doc/auctex//NEWS.Debian + $(INSTDATA) ChangeLog $(auctex)//usr/share/doc/auctex/ + $(INSTDATA) preview/ChangeLog \ + $(auctex)//usr/share/doc/auctex//ChangeLog.preview + $(INSTDATA) preview/ChangeLog.1 \ + $(auctex)//usr/share/doc/auctex//ChangeLog.preview.1 + $(INSTDATA) RELEASE $(auctex)//usr/share/doc/auctex/ + $(INSTDATA) debian/changelog $(auctex)//usr/share/doc/auctex//changelog.Debian + gzip -9frv $(auctex)//usr/share/doc/auctex/ + ln -sf ChangeLog.gz $(auctex)//usr/share/doc/auctex//changelog.gz + $(INSTDATA) debian/copyright $(auctex)//usr/share/doc/auctex/ + $(INSTDATA) doc/auctex.htmls/* \ + $(auctex)//usr/share/doc/auctex//HTML/auctex/ + ln -snf auctex.html \ + $(auctex)//usr/share/doc/auctex//HTML/auctex/index.html + $(INSTDATA) doc/preview-latex.htmls/* \ + $(auctex)//usr/share/doc/auctex//HTML/preview-latex/ + ln -snf preview-latex.html \ + $(auctex)//usr/share/doc/auctex//HTML/preview-latex/index.html + $(INSTDATA) debian/auctex/update-auctex-elisp.8 \ + $(auctex)//usr/share/man//man8/ + $(INSTDATA) debian/auctex/update-auctex-install.8 \ + $(auctex)//usr/share/man//man8/ + gzip -9frv $(auctex)//usr/share/man/ + + $(INSTDIR) $(auctex)//etc/emacs21/site-start.d/ \ + $(auctex)//etc/emacs22/site-start.d/ \ + $(auctex)//etc/emacs-snapshot/site-start.d/ + $(INSTDATA) debian/auctex/lisp-startup.el \ + $(auctex)//etc/emacs21/site-start.d/50auctex.el + $(INSTDATA) debian/auctex/lisp-startup.el \ + $(auctex)//etc/emacs22/site-start.d/50auctex.el + $(INSTDATA) debian/auctex/lisp-startup.el \ + $(auctex)//etc/emacs-snapshot/site-start.d/50auctex.el + $(INSTDIR) $(auctex)//etc/cron.weekly/ + $(INSTSCRIPT) debian/auctex/cron \ + $(auctex)//etc/cron.weekly//auctex + $(INSTDIR) $(auctex)//usr/sbin/ + $(INSTSCRIPT) debian/auctex/update-auctex-elisp \ + $(auctex)//usr/sbin/ + $(INSTSCRIPT) debian/auctex/update-auctex-install \ + $(auctex)//usr/sbin/ + $(INSTDIR) $(auctex)//var/lib/auctex/ + $(INSTDIR) $(auctex)//usr/share/emacs/site-lisp/auctex/ + $(INSTDIR) $(auctex)//usr/lib/emacsen-common/packages//{install,remove} + $(INSTSCRIPT) debian/auctex/install \ + $(auctex)//usr/lib/emacsen-common/packages//install/auctex + $(INSTSCRIPT) debian/auctex/remove \ + $(auctex)//usr/lib/emacsen-common/packages//remove/auctex + $(INSTDIR) $(auctex)//usr/share/doc-base/ + $(INSTDATA) debian/auctex/docbase.auctex \ + $(auctex)//usr/share/doc-base//auctex + $(INSTDATA) debian/auctex/docbase.preview \ + $(auctex)//usr/share/doc-base//preview-latex + $(INSTDIR) $(auctex)//usr/share/bug/auctex/ + $(INSTDATA) debian/auctex/bug.presubj \ + $(auctex)//usr/share/bug/auctex//presubj + $(INSTSCRIPT) debian/auctex/bug.script \ + $(auctex)//usr/share/bug/auctex//script + $(INSTDIR) $(auctex)//usr/share/lintian/overrides/ + $(INSTDATA) debian/auctex/lintian \ + $(auctex)//usr/share/lintian/overrides//auctex + + $(INSTDIR) $(auctex)//DEBIAN/ + $(INSTDATA) debian/auctex/conffiles \ + $(auctex)//DEBIAN/ + $(INSTDATA) debian/auctex/templates.dcobj \ + $(auctex)//DEBIAN//templates + $(INSTSCRIPT) debian/auctex/{config,postinst,postrm,prerm} \ + $(auctex)//DEBIAN/ + + cd $(auctex) && md5sum \ + $$(find ./ -path './DEBIAN' -prune \ + -o -type f -printf "%P\n") \ + | sort -k 2 -o $(auctex)//DEBIAN//md5sums + dpkg-gencontrol -isp -P$(auctex) -pauctex + chown -R root.root $(auctex) + chmod -R go=rX $(auctex) + dpkg --build $(auctex) .. + +.PHONY: binary-indep-pls +binary-indep-pls: build + $(checkdir) + $(checkroot) + -rm -rf $(pls) + + cd preview && $(MAKE) prefix=$(pls)//usr/ TEXHASH=: \ + previewdocdir=$(pls)//usr/share/doc/texmf/latex/styles/ \ + install-texmf + gzip -9frv $(pls)//usr/share/doc/texmf/latex/styles/ + + $(INSTDIR) $(pls)//usr/share/doc/preview-latex-style/ + $(INSTDATA) preview/latex/README $(pls)//usr/share/doc/preview-latex-style/ + $(INSTDATA) debian/preview-latex-style/README \ + $(pls)//usr/share/doc/preview-latex-style//README.Debian + $(INSTDATA) preview/ChangeLog $(pls)//usr/share/doc/preview-latex-style/ + $(INSTDATA) preview/ChangeLog.1 $(pls)//usr/share/doc/preview-latex-style/ + $(INSTDATA) debian/changelog $(pls)//usr/share/doc/preview-latex-style//changelog.Debian + gzip -9frv $(pls)//usr/share/doc/preview-latex-style/ + ln -sf ChangeLog.gz $(pls)//usr/share/doc/preview-latex-style//changelog.gz + $(INSTDATA) debian/copyright $(pls)//usr/share/doc/preview-latex-style/ + + $(INSTDIR) $(pls)//usr/share/doc-base/ + $(INSTDATA) debian/preview-latex-style/docbase \ + $(pls)//usr/share/doc-base//preview-latex-style + $(INSTDIR) $(pls)//usr/share/bug/preview-latex-style/ + $(INSTDATA) debian/preview-latex-style/bug.presubj \ + $(pls)//usr/share/bug/preview-latex-style//presubj + $(INSTDIR) $(pls)//usr/share/lintian/overrides/ + $(INSTDATA) debian/preview-latex-style/lintian \ + $(pls)//usr/share/lintian/overrides//preview-latex-style + + $(INSTDIR) $(pls)//DEBIAN/ + $(INSTSCRIPT) debian/preview-latex-style/{postinst,prerm,postrm} \ + $(pls)//DEBIAN/ + + cd $(pls) && md5sum \ + $$(find ./ -path './DEBIAN' -prune \ + -o -type f -printf "%P\n") \ + | sort -k 2 -o $(pls)//DEBIAN//md5sums + dpkg-gencontrol -isp -P$(pls) -ppreview-latex-style + chown -R root.root $(pls) + chmod -R go=rX $(pls) + dpkg --build $(pls) .. + +.PHONY: binary-arch +binary-arch: build + $(checkdir) + $(checkroot) + +.PHONY: build-package +build-package: clean + dpkg-buildpackage -rfakeroot -tc -i + +.PHONY: source diff +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +# arch-tag: 7f6799c7-dca1-4d84-8038-1ad9c2888751-child --- auctex-11.83.orig/debian/rules.in +++ auctex-11.83/debian/rules.in @@ -0,0 +1,320 @@ +#include "variables" +#! /usr/bin/make -f +# +# rules for <:=${PACKAGE}:> +# +<:=@COPYRIGHT:>// + +checkdir=test -f debian/rules +checkroot=test root = "$$(whoami)" +fixperms=chmod -R a+rX . + +tmp := $(shell pwd)/debian/tmp/ +auctex := $(tmp)/auctex/ +pls := $(tmp)/preview-latex-style/ + +SHELL := /bin/bash +INSTDIR := install -m 755 -d +INSTPROG := install -m 755 -s +INSTDATA := install -m 644 +INSTSCRIPT := install -m 755 +STRIP := strip -R .note -R .comment + +<:# DO NOT include <% debian/rules %> nor <% debian/templates %> :>// +DFILES := debian/<:=${PACKAGE}:>/README debian/copyright \ +debian/<:=${PACKAGE}:>/NEWS \ +debian/<:=${PACKAGE}:>/config debian/<:=${PACKAGE}:>/postinst \ +debian/<:=${PACKAGE}:>/prerm debian/<:=${PACKAGE}:>/postrm \ +debian/<:=${PACKAGE}:>/conffiles debian/<:=${PACKAGE}:>/cron \ +debian/<:=${PACKAGE}:>/docbase.auctex \ +debian/<:=${PACKAGE}:>/docbase.preview \ +debian/<:=${PACKAGE}:>/lintian \ +debian/<:=${PACKAGE}:>/bug.presubj debian/<:=${PACKAGE}:>/bug.script \ +debian/<:=${PACKAGE}:>/install debian/<:=${PACKAGE}:>/remove \ +debian/<:=${PACKAGE}:>/lisp-startup.el \ +debian/<:=${PACKAGE}:>/<:=${UPDATE_ELISP}:> \ +debian/<:=${PACKAGE}:>/<:=${UPDATE_ELISP}:>.8 \ +debian/<:=${PACKAGE}:>/<:=${UPDATE_INSTALL}:> \ +debian/<:=${PACKAGE}:>/<:=${UPDATE_INSTALL}:>.8 \ +debian/<:=${PLSPKG}:>/README \ +debian/<:=${PLSPKG}:>/postinst \ +debian/<:=${PLSPKG}:>/prerm debian/<:=${PLSPKG}:>/postrm \ +debian/<:=${PLSPKG}:>/docbase \ +debian/<:=${PLSPKG}:>/lintian \ +debian/<:=${PLSPKG}:>/bug.presubj + +<:# <% Debconf %> templates :>// +DCSOURCES := $(shell cat debian/po/POTFILES.in \ + | perl -pe 's|^\[[^]]+\] +(.*)$$|debian/$${1}|') +DFILES += $(patsubst %templates, %templates.dcobj, $(DCSOURCES)) + +AUCTEXSCRIPTS := configure install-sh +AUCTEXSRCS := $(filter-out auctex.el, \ + $(wildcard aclocal.m4 configure.ac *.in *.el)) +STYLES := style/*.el style/.nosearch +PREVIEWSCRIPTS := preview/configure +PREVIEWSRCS := $(filter-out preview/auto.el, \ + $(wildcard preview/configure.ac preview/*.in preview/*.el)) +<:# Hacks needed by configure. :>// +MAKEFILEHACKS := doc/Makefile.in preview/latex/Makefile.in + +test: + @echo $(AUCTEXSRCS) + @echo $(PREVIEWSRCS) + +.PHONY: pre-build +pre-build: + test -x ./autogen.sh && ./autogen.sh || true + +debian/rules: debian/variables + +<:# Eperl is simply great: thanks, Ralf! :>// +%:: %.in + eperl -d DEBIAN_DIR="$(shell pwd)/debian/" \ + -I "$(shell pwd)/debian/" -P -o $@ $< + +debian/po/templates.pot: $(DCSOURCES) + umask 0022 && debconf-updatepo --verbose --podir=debian/po/ + @touch $@ + +%.dcobj: % debian/po/templates.pot + po2debconf --verbose --podir debian/po $< > $@ + +build: $(DFILES) debian/po/templates.pot + $(checkdir) + ./configure \ + --prefix=<:$_=${usr}; s|/+|/|g; print:> \ + --infodir=<:=${info}:> \ + --with-emacs=$$(type emacs-snapshot &>/dev/null \ + && echo emacs-snapshot || echo emacs) + cd doc && $(MAKE) all + cd doc && $(MAKE) auctex.htmls/auctex.html + cd doc && $(MAKE) preview-latex.htmls/preview-latex.html + cd preview && $(MAKE) texmf + touch build + +.PHONY: clean +clean: debian/po/templates.pot + $(checkdir) + -rm -rf build core $(tmp) debian/{files*,substvars} + test ! -f Makefile || $(MAKE) distclean + -rm -f $(DFILES) + $(fixperms) + +.PHONY: binary +binary: binary-arch binary-indep + +.PHONY: binary-indep +binary-indep: binary-indep-auctex binary-indep-pls + +.PHONY: binary-indep-auctex +binary-indep-auctex: build + $(checkdir) + $(checkroot) + -rm -rf $(auctex) + +<:# install package :>// + $(INSTDIR) $(auctex)/<:=${lisp}:> $(auctex)/<:=${style}:> \ + $(auctex)/<:=${lisp}:>/preview/ + $(INSTSCRIPT) $(AUCTEXSCRIPTS) $(auctex)/<:=${lisp}:>/ +<:# The ChangeLog is needed by configure, uncompressed; therefore it + # cannot be a link to the compressed version in doc/${PACKAGE}:>// + $(INSTDATA) ChangeLog $(auctex)/<:=${lisp}:>/ + $(INSTDATA) $(AUCTEXSRCS) $(auctex)/<:=${lisp}:>/ + $(INSTDATA) $(STYLES) $(auctex)/<:=${style}:>/ + $(INSTSCRIPT) $(PREVIEWSCRIPTS) $(auctex)/<:=${lisp}:>/preview/ + $(INSTDATA) $(PREVIEWSRCS) $(auctex)/<:=${lisp}:>/preview/ + $(MAKE) prefix=$(auctex)/<:$_=${usr}; s|/+|/|g; print:> install-images + cd preview && $(MAKE) prefix=$(auctex)/<:$_=${usr}; + s|/+|/|g; print:> install-images + umask 0022; for i in $(MAKEFILEHACKS); do \ + $(INSTDIR) $(auctex)/<:=${lisp}:>/$${i%/*}/; \ + echo -e "clean distclean:\n\trm -f Makefile\n" \ + > $(auctex)/<:=${lisp}:>/$${i}; \ + done + $(INSTDIR) $(auctex)/<:=${info}:> + $(MAKE) infodir=$(auctex)/<:=${info}:> INSTALL_INFO=: install-docs + gzip -9frv $(auctex)/<:=${info}:> + +<:# install Debian doc :>// + $(INSTDIR) $(auctex)/<:=${doc}:> $(auctex)/<:=${docsrc}:> \ + $(auctex)/<:=${html}:>/{auctex,preview-latex} \ + $(auctex)/<:=${man}:>/man8/ + $(INSTDATA) <:=${DOCS}:> $(auctex)/<:=${doc}:> + $(INSTDATA) doc/*.tex{,i} $(auctex)/<:=${docsrc}:> + $(INSTDATA) preview/*.tex $(auctex)/<:=${docsrc}:> + $(INSTDATA) debian/<:=${PACKAGE}:>/README \ + $(auctex)/<:=${doc}:>/README.Debian + $(INSTDATA) debian/<:=${PACKAGE}:>/NEWS \ + $(auctex)/<:=${doc}:>/NEWS.Debian + $(INSTDATA) ChangeLog $(auctex)/<:=${doc}:> + $(INSTDATA) preview/ChangeLog \ + $(auctex)/<:=${doc}:>/ChangeLog.preview + $(INSTDATA) preview/ChangeLog.1 \ + $(auctex)/<:=${doc}:>/ChangeLog.preview.1 + $(INSTDATA) RELEASE $(auctex)/<:=${doc}:> + $(INSTDATA) debian/changelog $(auctex)/<:=${doc}:>/changelog.Debian + gzip -9frv $(auctex)/<:=${doc}:> + ln -sf ChangeLog.gz $(auctex)/<:=${doc}:>/changelog.gz + $(INSTDATA) debian/copyright $(auctex)/<:=${doc}:> + $(INSTDATA) doc/auctex.htmls/* \ + $(auctex)/<:=${html}:>/auctex/ + ln -snf auctex.html \ + $(auctex)/<:=${html}:>/auctex/index.html + $(INSTDATA) doc/preview-latex.htmls/* \ + $(auctex)/<:=${html}:>/preview-latex/ + ln -snf preview-latex.html \ + $(auctex)/<:=${html}:>/preview-latex/index.html + $(INSTDATA) debian/<:=${PACKAGE}:>/<:=${UPDATE_ELISP}:>.8 \ + $(auctex)/<:=${man}:>/man8/ + $(INSTDATA) debian/<:=${PACKAGE}:>/<:=${UPDATE_INSTALL}:>.8 \ + $(auctex)/<:=${man}:>/man8/ + gzip -9frv $(auctex)/<:=${man}:> + +<:# install Debian system files :>// + $(INSTDIR) $(auctex)/<:$_=${sstartd}; s|emacs|emacs21|; print:> \ + $(auctex)/<:$_=${sstartd}; s|emacs|emacs22|; print:> \ + $(auctex)/<:$_=${sstartd}; s|emacs|emacs-snapshot|; print:> + $(INSTDATA) debian/<:=${PACKAGE}:>/lisp-startup.el \ + $(auctex)/<:$_="${sstartd}/${EPRIORITY}${PACKAGE}.el"; + s|emacs|emacs21|; $_=~tr|/|/|s; print:> + $(INSTDATA) debian/<:=${PACKAGE}:>/lisp-startup.el \ + $(auctex)/<:$_="${sstartd}/${EPRIORITY}${PACKAGE}.el"; + s|emacs|emacs22|; $_=~tr|/|/|s; print:> + $(INSTDATA) debian/<:=${PACKAGE}:>/lisp-startup.el \ + $(auctex)/<:$_="${sstartd}/${EPRIORITY}${PACKAGE}.el"; + s|emacs|emacs-snapshot|; $_=~tr|/|/|s; print:> + $(INSTDIR) $(auctex)/<:=${cron_weekly}:> + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/cron \ + $(auctex)/<:=${cron_weekly}:>/<:=${PACKAGE}:> + $(INSTDIR) $(auctex)/<:=${sbin}:> + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/<:=${UPDATE_ELISP}:> \ + $(auctex)/<:=${sbin}:> + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/<:=${UPDATE_INSTALL}:> \ + $(auctex)/<:=${sbin}:> + $(INSTDIR) $(auctex)/<:=${var}:> + $(INSTDIR) $(auctex)/<:=${lisp}:> + $(INSTDIR) $(auctex)/<:=${ecode}:>/{install,remove} + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/install \ + $(auctex)/<:=${ecode}:>/install/<:=${PACKAGE}:> + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/remove \ + $(auctex)/<:=${ecode}:>/remove/<:=${PACKAGE}:> + $(INSTDIR) $(auctex)/<:=${docbase}:> + $(INSTDATA) debian/<:=${PACKAGE}:>/docbase.auctex \ + $(auctex)/<:=${docbase}:>/auctex + $(INSTDATA) debian/<:=${PACKAGE}:>/docbase.preview \ + $(auctex)/<:=${docbase}:>/preview-latex + $(INSTDIR) $(auctex)/<:=${bug}:> + $(INSTDATA) debian/<:=${PACKAGE}:>/bug.presubj \ + $(auctex)/<:=${bug}:>/presubj + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/bug.script \ + $(auctex)/<:=${bug}:>/script + $(INSTDIR) $(auctex)/<:=${lintian}:> + $(INSTDATA) debian/<:=${PACKAGE}:>/lintian \ + $(auctex)/<:=${lintian}:>/<:=${PACKAGE}:> + +<:# install Debian control files :>// + $(INSTDIR) $(auctex)/<:=${debian}:> + $(INSTDATA) debian/<:=${PACKAGE}:>/conffiles \ + $(auctex)/<:=${debian}:> + $(INSTDATA) debian/<:=${PACKAGE}:>/templates.dcobj \ + $(auctex)/<:=${debian}:>/templates + $(INSTSCRIPT) debian/<:=${PACKAGE}:>/{config,postinst,postrm,prerm} \ + $(auctex)/<:=${debian}:> + +<:# standard stuff :>// + cd $(auctex) && md5sum \ + $$(find ./ -path './DEBIAN' -prune \ + -o -type f -printf "%P\n") \ + | sort -k 2 -o $(auctex)/<:=${debian}:>/md5sums + dpkg-gencontrol -isp -P$(auctex) -pauctex + chown -R root.root $(auctex) + chmod -R go=rX $(auctex) + dpkg --build $(auctex) .. + +.PHONY: binary-indep-pls +binary-indep-pls: build + $(checkdir) + $(checkroot) + -rm -rf $(pls) + +<:# install package :>// + cd preview && $(MAKE) prefix=$(pls)/<:$_=${usr}; + s|/+|/|g; print:> TEXHASH=: \ + previewdocdir=$(pls)/<:=${texmfdoc}:> \ + install-texmf + gzip -9frv $(pls)/<:=${texmfdoc}:> + +<:# install Debian doc :>// + $(INSTDIR) $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:> + $(INSTDATA) preview/latex/README $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:> + $(INSTDATA) debian/<:=${PLSPKG}:>/README \ + $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:>/README.Debian + $(INSTDATA) preview/ChangeLog $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:> + $(INSTDATA) preview/ChangeLog.1 $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:> + $(INSTDATA) debian/changelog $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:>/changelog.Debian + gzip -9frv $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:> + ln -sf ChangeLog.gz $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:>/changelog.gz + $(INSTDATA) debian/copyright $(pls)/<:$_=${doc}; + s|${PACKAGE}|${PLSPKG}|g; print:> + +<:# install Debian system files :>// + $(INSTDIR) $(pls)/<:=${docbase}:> + $(INSTDATA) debian/<:=${PLSPKG}:>/docbase \ + $(pls)/<:=${docbase}:>/<:=${PLSPKG}:> + $(INSTDIR) $(pls)/<:$_=${bug}; + s|${PACKAGE}|${PLSPKG}|g; print:> + $(INSTDATA) debian/<:=${PLSPKG}:>/bug.presubj \ + $(pls)/<:$_=${bug}; + s|${PACKAGE}|${PLSPKG}|g; print:>/presubj + $(INSTDIR) $(pls)/<:=${lintian}:> + $(INSTDATA) debian/<:=${PLSPKG}:>/lintian \ + $(pls)/<:=${lintian}:>/<:=${PLSPKG}:> + +<:# install Debian control files :>// + $(INSTDIR) $(pls)/<:=${debian}:> + $(INSTSCRIPT) debian/<:=${PLSPKG}:>/{postinst,prerm,postrm} \ + $(pls)/<:=${debian}:> + +<:# standard stuff :>// + cd $(pls) && md5sum \ + $$(find ./ -path './DEBIAN' -prune \ + -o -type f -printf "%P\n") \ + | sort -k 2 -o $(pls)/<:=${debian}:>/md5sums + dpkg-gencontrol -isp -P$(pls) -p<:=${PLSPKG}:> + chown -R root.root $(pls) + chmod -R go=rX $(pls) + dpkg --build $(pls) .. + +.PHONY: binary-arch +binary-arch: build + $(checkdir) + $(checkroot) + +.PHONY: build-package +build-package: clean + dpkg-buildpackage -rfakeroot -tc -i + +.PHONY: source diff +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +# arch-tag: 7f6799c7-dca1-4d84-8038-1ad9c2888751<:='-child':> +<: +# local variables: +# mode: makefile +# coding: utf-8 +# ispell-local-dictionary: "american" +# ispell-check-comments: exclusive +# end: +# +# LocalWords: Eperl Ralf auctexdoc tex ChangeLog +:>//