emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/auctex 6094700 17/28: Restore deleted preview README.


From: Tassilo Horn
Subject: [elpa] externals/auctex 6094700 17/28: Restore deleted preview README.
Date: Fri, 07 Aug 2015 15:59:23 +0000

branch: externals/auctex
commit 609470047cfbfffa91e81cd8a3c38f57b9d80ff9
Author: Mosè Giordano <address@hidden>
Commit: Mosè Giordano <address@hidden>

    Restore deleted preview README.
    
    * latex/README: restore file deleted by mistake when preview/
    directory has been moved to top level.
    
    * Makefile.in: Use everywhere $(MAKE) in place of make.
---
 ChangeLog    |    7 ++++++
 Makefile.in  |    8 +++---
 latex/README |   64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 75 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 4446c4c..2813370 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-07-09  Mos� Giordano  <address@hidden>
+
+       * latex/README: restore file deleted by mistake when preview/
+       directory has been moved to top level.
+
+       * Makefile.in: Use everywhere $(MAKE) in place of make.
+
 2015-06-21  Mos� Giordano  <address@hidden>
 
        * tex-buf.el (TeX-LaTeX-sentinel): Add support for hf-tikz
diff --git a/Makefile.in b/Makefile.in
index f365af7..290462c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -505,7 +505,7 @@ xemacs-package: check-tag
        $(CP_A) auctex-$(TAG) $(XEMACS_BUILD_DIR)
        cd $(XEMACS_BUILD_DIR) \
        && ./configure INSTALL_INFO=: TEXHASH=: --with-xemacs 
--with-packagedir=`pwd`/xemacs-package --without-texmf-dir 
--with-auto-dir=etc/auctex/auto \
-       && make all install-man install && cd xemacs-package && tar -cf - 
--owner=root --group=root . | gzip --best > $(FTPDIR)/auctex-$(TAG)-pkg.tar.gz
+       && $(MAKE) all install-man install && cd xemacs-package && tar -cf - 
--owner=root --group=root . | gzip --best > $(FTPDIR)/auctex-$(TAG)-pkg.tar.gz
 
 # Pre-compiled AUCTeX package for Emacs on Windows
 WBUILDDIR=$(PWD)/windows-package
@@ -565,9 +565,9 @@ windows-package: check-tag
          --without-texmf-dir --with-emacs=$(WEMACS) \
          --with-lispdir=$(WBUILDDIR)/emacs-$(WEMACSVER)/$(WEMACSSITELISP) \
          --datarootdir=$(WBUILDDIR)/emacs-$(WEMACSVER)/$(WEMACSDATAROOTDIR) \
-       && make \
+       && $(MAKE) \
        && sed -i -e 's/"\/[^\n]\+/(expand-file-name "..\/var\/auctex" 
(file-name-directory load-file-name))/' tex-site.el \
-       && make install
+       && $(MAKE) install
 # Create the package
        test -d $(FTPDIR) || mkdir -p $(FTPDIR)
        rm -f $(FTPDIR)/$(WPACKAGE)
@@ -622,7 +622,7 @@ preview-ball: check-tag
 # Use TAG_EXPORT if set (for snapshots)
        git archive $${TAG_EXPORT:=`echo release_$(TAG) | sed 's/[.]/_/g'`} \
          latex/ | tar -xC $(PREVIEW_BUILD_DIR) --strip-components=1
-       cd $(PREVIEW_BUILD_DIR) && make -f ../latex/Makefile preview.ins 
preview.pdf
+       cd $(PREVIEW_BUILD_DIR) && $(MAKE) -f ../latex/Makefile preview.ins 
preview.pdf
        chmod -R go-w+rX $(PREVIEW_BUILD_DIR)
        test -d $(CTANDIR) || mkdir -p $(CTANDIR)
 # CTAN requires a top level directory "preview/" for the archive.
diff --git a/latex/README b/latex/README
new file mode 100644
index 0000000..0d0e8a8
--- /dev/null
+++ b/latex/README
@@ -0,0 +1,64 @@
+The preview.sty style file
+==========================
+
+Purpose
+-------
+
+The main purpose of the preview package is the extraction of selected
+elements from a LaTeX source, like formulas or graphics, into separate
+pages of a DVI file.  A flexible and convenient interface allows it to
+specify what commands and constructs should be extracted.  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.
+
+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 and pst-pdf
+packages, the tbook XML system and some other tools.
+
+Availability
+------------
+
+The preview package is being developed along and distributed with
+AUCTeX.  It can therefore be obtained as part of AUCTeX distribution
+files available at <URL:ftp://ftp.gnu.org/pub/gnu/auctex/> or its
+mirror at <CTAN:support/auctex>.  CTAN also provides a standalone
+version at <CTAN:macros/latex/contrib/preview>.  The project page at
+<URL:http://savannah.gnu.org/projects/auctex/> offers downloads and
+anonymous CVS access for cutting edge versions.  For more information
+about the preview package please refer to the home page of AUCTeX at
+<URL:http://www.gnu.org/software/auctex/>.
+
+Installation
+------------
+
+To install the preview style file on its own without the entire AUCTeX
+package, run
+tex preview.ins
+If preview.ins happens to be missing, you can regenerate it by running
+tex docstrip
+on preview.dtx with the option `installer'.
+
+Running TeX on preview.ins will then extract further files:
+preview.drv which you can run through LaTeX in order to get the
+documentation for preview.sty, preview.sty itself, a bunch of option
+files with extension .def and a few configuration files with extension
+.cfg.  In case your docstrip configuration has not already taken care
+of that, install the files with extension .sty, .def and .cfg to a
+location where LaTeX will be able to find them, generate the
+documentation and have fun.
+
+The license of the original file is the GPL which you'll find a copy
+of in the complete AUCTeX distribution.  The distribution will also
+unpack and install the respective LaTeX files with an
+autoconf-supported mechanism, so you might consider using that.
+
+Bug reporting
+-------------
+
+Please report problems to <URL:mailto:address@hidden>, including a
+small example file which uses the \listfiles statement, and the
+resulting log file.
+
+David Kastrup



reply via email to

[Prev in Thread] Current Thread [Next in Thread]