32c1ca
# AucTeX includes preview-latex which allows previeweing directly in the Emacs
32c1ca
# buffer. This makes use of preview.sty, a LaTeX class, which is also included
32c1ca
# with AucTex. preview-latex can either use a privately installed copy of
32c1ca
# preview.sty, or it can use one installed in the system texmf tree. If the
32c1ca
# following is set to 1, an add-on LaTeX package will be created which installs
32c1ca
# into the system texmf tree, and preview-latex will use that. However, TeXLive
32c1ca
# already includes preview.sty and so this may not be desireable -- setting the
32c1ca
# following value to 0 means that preview-latex/AucTeX will use a privately
32c1ca
# installed copy of preview.sty.
32c1ca
%global separate_preview 1
32c1ca
32c1ca
Summary:        Enhanced TeX modes for Emacs
32c1ca
Name:           emacs-auctex
32c1ca
Version:        12.3
32c1ca
Release:        2%{?dist}
32c1ca
License:        GPLv3+ and GFDL
32c1ca
URL:            http://www.gnu.org/software/auctex/
32c1ca
Requires:       emacs(bin) >= %{_emacs_version}
32c1ca
Requires:       ghostscript dvipng
32c1ca
Requires:       tex(latex) tex(dvips)
32c1ca
Obsoletes:      emacs-auctex-el <= 11.86-9
32c1ca
Provides:       emacs-auctex-el = %{version}-%{release}
32c1ca
%if %{separate_preview}
32c1ca
Requires:       tex-preview = %{version}-%{release}
32c1ca
%endif
32c1ca
32c1ca
Source0:        http://ftp.gnu.org/pub/gnu/auctex/auctex-%{version}.tar.gz
32c1ca
32c1ca
BuildArch:      noarch
32c1ca
BuildRequires:  emacs tex(latex) texinfo-tex ghostscript
32c1ca
32c1ca
%description
32c1ca
AUCTeX is an extensible package that supports writing and formatting
32c1ca
TeX files for most variants of Emacs.
32c1ca
32c1ca
AUCTeX supports many different TeX macro packages, including AMS-TeX,
32c1ca
LaTeX, Texinfo and basic support for ConTeXt.  Documentation can be
32c1ca
found under /usr/share/doc, e.g. the reference card (tex-ref.pdf) and
32c1ca
the FAQ. The AUCTeX manual is available in Emacs info (C-h i d m
32c1ca
AUCTeX RET). On the AUCTeX home page, we provide manuals in various
32c1ca
formats.
32c1ca
32c1ca
AUCTeX includes preview-latex support which makes LaTeX a tightly
32c1ca
integrated component of your editing workflow by visualizing selected
32c1ca
source chunks (such as single formulas or graphics) directly as images
32c1ca
in the source buffer.
32c1ca
32c1ca
This package is for GNU Emacs.
32c1ca
32c1ca
%package doc
32c1ca
Summary:        Documentation in various formats for AUCTeX
32c1ca
License:        GFDL
32c1ca
32c1ca
%description doc
32c1ca
Documentation for the AUCTeX package for emacs in various formats,
32c1ca
including HTML and PDF.
32c1ca
32c1ca
%if %{separate_preview}
32c1ca
%package -n tex-preview
32c1ca
Summary:        Preview style files for LaTeX
32c1ca
Requires:       tex(latex)
32c1ca
Provides:       tex(preview.sty)
32c1ca
# This is the latest build we accidentally provided from texlive
32c1ca
Obsoletes:      texlive-preview <= 7:svn44883
32c1ca
Provides:       texlive-preview
32c1ca
32c1ca
%description -n tex-preview
32c1ca
The preview package for LaTeX allows for the processing of selected
32c1ca
parts of a LaTeX input file.  This package extracts indicated pieces
32c1ca
from a source file (typically displayed equations, figures and
32c1ca
graphics) and typesets with their base point at the (1in,1in) magic
32c1ca
location, shipping out the individual pieces on separate pages without
32c1ca
any page markup.  You can produce either DVI or PDF files, and options
32c1ca
exist that will set the page size separately for each page.  In that
32c1ca
manner, further processing (as with Ghostscript or dvipng) will be
32c1ca
able to work in a single pass.
32c1ca
32c1ca
The main purpose of this package is the extraction of certain
32c1ca
environments (most notably displayed formulas) from LaTeX sources as
32c1ca
graphics. This works with DVI files postprocessed by either Dvips and
32c1ca
Ghostscript or dvipng, but it also works when you are using PDFTeX for
32c1ca
generating PDF files (usually also postprocessed by Ghostscript).
32c1ca
32c1ca
The tex-preview package is generated from the AUCTeX package for
32c1ca
Emacs.
32c1ca
%endif
32c1ca
32c1ca
%prep
32c1ca
%setup -q -n auctex-%{version}
32c1ca
32c1ca
%build
32c1ca
%if %{separate_preview}
32c1ca
%configure --with-emacs \
32c1ca
           --with-texmf-dir=%{_datadir}/texlive/texmf-dist \
32c1ca
%else
32c1ca
%configure --with-emacs \
32c1ca
           --without-texmf-dir
32c1ca
%endif
32c1ca
32c1ca
make
32c1ca
32c1ca
# Build documentation in various formats
32c1ca
pushd doc
32c1ca
make extradist
32c1ca
popd
32c1ca
32c1ca
# Fix some encodings
32c1ca
iconv -f ISO-8859-1 -t UTF8 RELEASE > RELEASE.utf8 && touch -r RELEASE RELEASE.utf8 && mv RELEASE.utf8 RELEASE
32c1ca
32c1ca
%install
32c1ca
mkdir -p %{buildroot}%{_emacs_sitestartdir}
32c1ca
make DESTDIR=%{buildroot} install
32c1ca
rm -rf %{buildroot}%{_var}
32c1ca
32c1ca
# Remove /usr/share/doc/auctex directory from buildroot since we don't want doc
32c1ca
# files installed here
32c1ca
rm -rf %{buildroot}%{_docdir}/auctex
32c1ca
32c1ca
# Create these ,nosearch files to keep the directories from the elisp search path
32c1ca
touch %{buildroot}%{_emacs_sitelispdir}/auctex/.nosearch
32c1ca
touch %{buildroot}%{_emacs_sitelispdir}/auctex/style/.nosearch
32c1ca
32c1ca
%if %{separate_preview}
32c1ca
%post -n tex-preview
32c1ca
/usr/bin/texhash > /dev/null 2>&1 || :
32c1ca
32c1ca
%postun -n tex-preview
32c1ca
/usr/bin/texhash > /dev/null 2>&1 || :
32c1ca
%endif
32c1ca
32c1ca
%files
32c1ca
%doc RELEASE COPYING README TODO FAQ CHANGES
32c1ca
%doc %{_infodir}/*.info*
32c1ca
%exclude %{_infodir}/dir
32c1ca
%{_emacs_sitestartdir}/*
32c1ca
%dir %{_emacs_sitelispdir}/auctex
32c1ca
%dir %{_emacs_sitelispdir}/auctex/style
32c1ca
%{_emacs_sitelispdir}/auctex/*.el
32c1ca
%{_emacs_sitelispdir}/auctex/*.elc
32c1ca
%{_emacs_sitelispdir}/auctex/style/*.el
32c1ca
%{_emacs_sitelispdir}/auctex/style/*.elc
32c1ca
%{_emacs_sitelispdir}/auctex/.nosearch
32c1ca
%{_emacs_sitelispdir}/auctex/style/.nosearch
32c1ca
%{_emacs_sitelispdir}/auctex/images
32c1ca
%{_emacs_sitelispdir}/tex-site.el
32c1ca
%if !%{separate_preview}
32c1ca
%{_emacs_sitelispdir}/auctex/latex
32c1ca
%{_emacs_sitelispdir}/auctex/doc
32c1ca
%endif
32c1ca
32c1ca
%if %{separate_preview}
32c1ca
%files -n tex-preview
32c1ca
%doc COPYING
32c1ca
%{_datadir}/texlive/texmf-dist/tex/latex/preview
32c1ca
%{_datadir}/texlive/texmf-dist/doc/latex/styles
32c1ca
%endif
32c1ca
32c1ca
%files doc
32c1ca
%doc doc/*.{dvi,ps,pdf}
32c1ca
%doc doc/html
32c1ca
32c1ca
%changelog
32c1ca
* Fri Aug 6 2021 Jacek Migacz <jmigacz@redhat.com> - 12.3-1
32c1ca
- Fix build failure on CentOS Stream. Related: rhbz#1951306
32c1ca
- Revert patch for FSF addresses (it became obsolete with 12.2)
32c1ca
- Remove Obsoletes and Provides tetex-preview
32c1ca
32c1ca
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 12.1-10
32c1ca
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
32c1ca
32c1ca
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-9
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
32c1ca
32c1ca
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-8
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
32c1ca
32c1ca
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-7
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
32c1ca
32c1ca
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-6
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
32c1ca
32c1ca
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-5
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
32c1ca
32c1ca
* Thu May 24 2018 Tom Callaway <spot@fedoraproject.org> - 12.1-4
32c1ca
- Provide/Obsolete texlive-preview in tex-preview subpackage
32c1ca
32c1ca
* Sun Feb 25 2018 Jonathan Underwood <jonathan.underwood@gmail.com> - 12.1-3
32c1ca
- Add patch to fix FSF address in some files
32c1ca
32c1ca
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-2
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
32c1ca
32c1ca
* Mon Jan 29 2018 Than Ngo <than@redhat.com> - 12.1-1
32c1ca
- update to 12.1
32c1ca
32c1ca
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.89-5
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
32c1ca
32c1ca
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.89-4
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
32c1ca
32c1ca
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 11.89-3
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
32c1ca
32c1ca
* Mon Dec 28 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.89-2
32c1ca
- Add Provides tex(preview.sty) to preview sub-package
32c1ca
32c1ca
* Sat Nov 14 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.89-1
32c1ca
- Update to 11.89
32c1ca
- Use http for Source location
32c1ca
- Create the .nosearch files with touch, as Makefile no longer does
32c1ca
32c1ca
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.88-2
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
32c1ca
32c1ca
* Wed Feb 18 2015 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.88-1
32c1ca
- Update to 11.88
32c1ca
32c1ca
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.87-9
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
32c1ca
32c1ca
* Fri Feb 28 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-8
32c1ca
- Add patch to fix BZ 995245
32c1ca
32c1ca
* Wed Feb 12 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-7
32c1ca
- Really Fix up installation location of doc files
32c1ca
32c1ca
* Thu Feb  6 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-6
32c1ca
- Fix up installation location of doc files
32c1ca
32c1ca
* Thu Feb  6 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-5
32c1ca
- Move preview files to be installed under %%{_datadir}/texlive/texmf-dist (BZ 995544)
32c1ca
32c1ca
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.87-4
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
32c1ca
32c1ca
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.87-3
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
32c1ca
32c1ca
* Tue Dec  4 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-2
32c1ca
- Fix the install location of the preview tex files
32c1ca
- Fix the BuildRequires for latex
32c1ca
32c1ca
* Mon Dec  3 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-1
32c1ca
- Update to new upstream version 11.87
32c1ca
32c1ca
* Wed Oct  3 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-10
32c1ca
- Fix the Obsoletes and Provides to allow package updating (BZ 862398)
32c1ca
32c1ca
* Wed Sep 19 2012 Karel Klíč <kklic@redhat.com> - 11.86-9
32c1ca
- ELisp source code is no longer distributed in a separate package
32c1ca
- License filed includes GFDL for the documentation
32c1ca
32c1ca
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.86-8
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
32c1ca
32c1ca
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.86-7
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
32c1ca
32c1ca
* Tue Mar  8 2011 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-6
32c1ca
- Replace define with global in macro definitions
32c1ca
- Add patch to fix previewing of equations courtesy of Sato Ichi (BZ 646632)
32c1ca
- Add defattr to doc sub-package
32c1ca
32c1ca
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.86-5
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
32c1ca
32c1ca
* Fri Jul 16 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-4
32c1ca
- Duplicate only the COPYING file and not the other docs in the tex-preview
32c1ca
  subpackage
32c1ca
32c1ca
* Fri Jul 16 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-3
32c1ca
- Add COPYING file and other docs to the tex-preview subpackage to comply with
32c1ca
  updated licensing guidelines
32c1ca
- Remove the no longer needed BuildRoot, %%clean and cleaning of Buildroot
32c1ca
  inside %%install
32c1ca
32c1ca
* Sun May 23 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-2
32c1ca
- Drop Requires for evince (rhbz 595104)
32c1ca
32c1ca
* Sat Mar  6 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-1
32c1ca
- Update to 11.86
32c1ca
- Drop unneeded patch for PDF and HTML viewing
32c1ca
32c1ca
* Thu Jan 28 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-11
32c1ca
- Add patch to use evince for PDF file viewing and xdg-open for html file
32c1ca
  viewing
32c1ca
- Add Requires for evince
32c1ca
32c1ca
* Sat Nov  7 2009 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-10
32c1ca
- Update spec file to use macros defined in /etc/rpm/macros.emacs
32c1ca
- Fix typo in spec comments
32c1ca
32c1ca
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.85-9
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
32c1ca
32c1ca
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.85-8
32c1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
32c1ca
32c1ca
* Sun Feb 24 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-7
32c1ca
- Add Requires for dvipng
32c1ca
32c1ca
* Sat Feb 16 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-6
32c1ca
- Preserve timestamp of RELEASE when converting to UTF8
32c1ca
32c1ca
* Wed Feb 13 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-5
32c1ca
- Re-add creation of emacs_startdir
32c1ca
32c1ca
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-4
32c1ca
- Remove BuildRequires for pkgconfig - not needed
32c1ca
- Clean out uneeded creation of site start directory
32c1ca
- Remove /usr/share/doc/auctex directory from buildroot
32c1ca
32c1ca
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-3
32c1ca
- Bump release and rebuild - had forgotten to upload the new sources
32c1ca
32c1ca
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-2
32c1ca
- Add BuilddRequires for pkgconfig
32c1ca
32c1ca
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-1
32c1ca
- Update to version 11.85
32c1ca
- Change license to GPLv3+ accordingly
32c1ca
32c1ca
* Wed Jan 23 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-7
32c1ca
- tex-preview no longer Requires ghostscript (#429811)
32c1ca
- Use virtual provides for tex(latex) etc.
32c1ca
32c1ca
* Tue Dec 25 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-6
32c1ca
- Add Obsolotes and Provides for tetex-preview to tex-preview (#426758)
32c1ca
32c1ca
* Sun Dec 23 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-5
32c1ca
- Enable building of separate tex-preview package
32c1ca
- Remove a few residual tetex references
32c1ca
32c1ca
* Sun Dec 16 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-4
32c1ca
- Add macros for automatic detection of Emacs version, site-lisp directory etc
32c1ca
- Make building of tex-preview subpackage optional, and disable for now
32c1ca
- Adjust Requires and BuildRequires for texlive
32c1ca
- Remove auctex-init.el since not needed
32c1ca
- Make RELEASE utf8
32c1ca
32c1ca
* Sat Aug  4 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-3
32c1ca
- Clarify license version
32c1ca
- Correct version and release requirement for the el package
32c1ca
32c1ca
* Sat Jan 13 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-2
32c1ca
- Update BuildRequires for texinfo-tex package
32c1ca
32c1ca
* Sat Jan 13 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-1
32c1ca
- Update to version 11.84
32c1ca
- Build all documentation and package in a -doc package
32c1ca
32c1ca
* Mon Aug 28 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-7
32c1ca
- Bump release for FC-6 mass rebuild
32c1ca
32c1ca
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-6
32c1ca
- Remove debug patch entry
32c1ca
32c1ca
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-5
32c1ca
- Bump release
32c1ca
32c1ca
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-4
32c1ca
- Bump release
32c1ca
32c1ca
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-3
32c1ca
- Sync with FC-5 spec file which includes the following changes
32c1ca
- No longer use makeinstall macro
32c1ca
- No longer specify texmf-dir, tex-dir for configure
32c1ca
- Main package now owns the site-lisp auctex and styles directories
32c1ca
- Place preview.dvi in correct directory, and have tetex-preview own
32c1ca
  it
32c1ca
- General cleanups
32c1ca
32c1ca
* Sat Jun 10 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-4
32c1ca
- Bump release
32c1ca
32c1ca
* Sat Jun 10 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-3
32c1ca
- Bump release. Wrap descriptions at column 70.
32c1ca
32c1ca
* Sat Jun 10 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-1
32c1ca
- Update to 11.83
32c1ca
- Add specific release requirement to tetex-preview Requires of main package
32c1ca
32c1ca
* Wed May 24 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-12
32c1ca
- Bump version number.
32c1ca
32c1ca
* Wed May 24 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-11
32c1ca
- Fix up whitespace for Ed. Bump version number.
32c1ca
32c1ca
* Thu May 18 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-9
32c1ca
- Split out tetex-preview subpackage
32c1ca
- Split out source elisp files
32c1ca
- Update package descriptions
32c1ca
32c1ca
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-8
32c1ca
- Add tetex-latex to BuildRequires
32c1ca
32c1ca
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-7
32c1ca
- Add ghostscript to Requires and BuildRequires
32c1ca
32c1ca
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-6
32c1ca
- Leave .nosearch file in styles directory - this directory shouldn't be in the load-path
32c1ca
32c1ca
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-5
32c1ca
- Move installation of the preview style files out of the texmf tree for now
32c1ca
32c1ca
* Mon Apr 24 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-4
32c1ca
- Added preview-latex
32c1ca
- Removed INSTALL document from package (not necessary)
32c1ca
- Clean up generation of startup files from spec file
32c1ca
32c1ca
* Thu Apr 20 2006 Ed Hill <ed@eh3.com> - 11.82-3
32c1ca
- fix startup file per bug# 189488
32c1ca
32c1ca
* Sun Apr  9 2006 Ed Hill <ed@eh3.com> - 11.82-2
32c1ca
- rebuild
32c1ca
32c1ca
* Sun Apr  9 2006 Ed Hill <ed@eh3.com> - 11.82-1
32c1ca
- update to 11.82
32c1ca
32c1ca
* Fri Sep 30 2005 Ed Hill <ed@eh3.com> - 11.81-2
32c1ca
- fix stupid tagging mistake
32c1ca
32c1ca
* Fri Sep 30 2005 Ed Hill <ed@eh3.com> - 11.81-1
32c1ca
- update to 11.81
32c1ca
- disable preview for now since it needs some packaging work
32c1ca
32c1ca
* Tue Sep  6 2005 Ed Hill <ed@eh3.com> - 11.55-5
32c1ca
- bugzilla 167439
32c1ca
32c1ca
* Tue Aug  9 2005 Ed Hill <ed@eh3.com> - 11.55-4
32c1ca
- call it BuildArch
32c1ca
32c1ca
* Tue Aug  9 2005 Ed Hill <ed@eh3.com> - 11.55-3
32c1ca
- add Requires and BuildRequires
32c1ca
32c1ca
* Mon Aug  8 2005 Ed Hill <ed@eh3.com> - 11.55-2
32c1ca
- modify for acceptance into Fedora Extras
32c1ca
32c1ca
* Fri Jan 21 2005 David Kastrup <dak@gnu.org>
32c1ca
- Conflict with outdated Emacspeak versions
32c1ca
32c1ca
* Fri Jan 14 2005 David Kastrup <dak@gnu.org>
32c1ca
- Install and remove auctex.info, not auctex
32c1ca
32c1ca
* Thu Aug 19 2004 David Kastrup <dak@gnu.org>
32c1ca
- Change tex-site.el to overwriting config file mode.  New naming scheme.
32c1ca
32c1ca
* Mon Aug 16 2004 David Kastrup <dak@gnu.org>
32c1ca
- Attempt a bit of SuSEism.  Might work if we are lucky.
32c1ca
32c1ca
* Sat Dec  7 2002 David Kastrup <David.Kastrup@t-online.de>
32c1ca
- Change addresses to fit move to Savannah.
32c1ca
32c1ca
* Mon Apr 15 2002 Jan-Ake Larsson <jalar@imf.au.dk>
32c1ca
- Adjusted TeX-macro-global and put autoactivation in preinstall
32c1ca
  script so that it can be chosen at install time.
32c1ca
32c1ca
* Tue Feb 19 2002 Jan-Ake Larsson <jalar@imf.au.dk>
32c1ca
- Added site-start.el support
32c1ca
32c1ca
* Sat Feb 16 2002 Jan-Ake Larsson <jalar@imf.au.dk>
32c1ca
- Prerelease 11.11