9d7cd5
Name: docbook-style-xsl
9d7cd5
Version: 1.78.1
9d7cd5
Release: 3%{?dist}
9d7cd5
Group: Applications/Text
9d7cd5
9d7cd5
Summary: Norman Walsh's XSL stylesheets for DocBook XML
9d7cd5
9d7cd5
License: DMIT
9d7cd5
URL: http://docbook.sourceforge.net/projects/xsl/
9d7cd5
9d7cd5
Provides: docbook-xsl = %{version}
9d7cd5
Requires: docbook-dtd-xml
9d7cd5
# xml-common was using /usr/share/xml until 0.6.3-8.
9d7cd5
Requires: xml-common >= 0.6.3-8
9d7cd5
# libxml2 required because of usage of /usr/bin/xmlcatalog
9d7cd5
Requires(post): libxml2 >= 2.4.8
9d7cd5
Requires(postun): libxml2 >= 2.4.8
9d7cd5
# PassiveTeX before 1.21 can't handle the newer stylesheets.
9d7cd5
Conflicts: passivetex < 1.21
9d7cd5
9d7cd5
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
9d7cd5
9d7cd5
BuildArch: noarch
9d7cd5
Source0: http://downloads.sourceforge.net/docbook/docbook-xsl-%{version}.tar.bz2
9d7cd5
Source1: %{name}.Makefile
9d7cd5
Source2: http://downloads.sourceforge.net/docbook/docbook-xsl-doc-%{version}.tar.bz2
9d7cd5
9d7cd5
#Avoid proportional-column-width for passivetex (bug #176766).
9d7cd5
Patch1: docbook-xsl-pagesetup.patch
9d7cd5
#Hard-code the margin-left work around to expect passivetex (bug #113456).
9d7cd5
Patch2: docbook-xsl-marginleft.patch
9d7cd5
#fix of #161619 - adjustColumnWidths now available
9d7cd5
Patch3: docbook-xsl-newmethods.patch
9d7cd5
#change a few non-constant expressions to constant - needed for passivetex(#366441)
9d7cd5
Patch4: docbook-xsl-non-constant-expressions.patch
9d7cd5
#added fixes for passivetex extension and list-item-body(#161371)
9d7cd5
Patch5: docbook-xsl-list-item-body.patch
9d7cd5
#workaround missing mandir section problem (#727251)
9d7cd5
Patch6: docbook-xsl-mandir.patch
9d7cd5
9d7cd5
9d7cd5
%description
9d7cd5
These XSL stylesheets allow you to transform any DocBook XML document to
9d7cd5
other formats, such as HTML, FO, and XHMTL.  They are highly customizable.
9d7cd5
9d7cd5
9d7cd5
%prep
9d7cd5
%setup -q -n docbook-xsl-%{version}
9d7cd5
pushd ..
9d7cd5
tar jxf %{SOURCE2}
9d7cd5
popd
9d7cd5
%patch1 -p1 -b .pagesetup
9d7cd5
%patch2 -p1 -b .marginleft
9d7cd5
%patch3 -p1 -b .newmethods
9d7cd5
%patch4 -p1 -b .nonconstant
9d7cd5
%patch5 -p1 -b .listitembody
9d7cd5
%patch6 -p1 -b .mandir
9d7cd5
9d7cd5
cp -p %{SOURCE1} Makefile
9d7cd5
9d7cd5
# fix of non UTF-8 files rpmlint warnings
9d7cd5
for fhtml in $(find ./doc -name '*.html' -type f)
9d7cd5
do
9d7cd5
  iconv -f ISO-8859-1 -t UTF-8 "$fhtml" -o "$fhtml".tmp
9d7cd5
  mv -f "$fhtml".tmp "$fhtml"
9d7cd5
  sed -i 's/charset=ISO-8859-1/charset=UTF-8/' "$fhtml"
9d7cd5
done
9d7cd5
9d7cd5
for f in $(find -name "*'*")
9d7cd5
do
9d7cd5
  mv -v "$f" $(echo "$f" | tr -d "'")
9d7cd5
done
9d7cd5
9d7cd5
9d7cd5
%build
9d7cd5
9d7cd5
9d7cd5
%install
9d7cd5
DESTDIR=$RPM_BUILD_ROOT
9d7cd5
rm -rf $RPM_BUILD_ROOT
9d7cd5
make install BINDIR=$DESTDIR%{_bindir} DESTDIR=$DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}
9d7cd5
cp -a VERSION.xsl $DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}/VERSION.xsl
9d7cd5
ln -s xsl-stylesheets-%{version} \
9d7cd5
	$DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets
9d7cd5
9d7cd5
# Don't ship the extensions (bug #177256).
9d7cd5
rm -rf $DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets/extensions/*
9d7cd5
9d7cd5
9d7cd5
%clean
9d7cd5
DESTDIR=$RPM_BUILD_ROOT
9d7cd5
rm -rf $RPM_BUILD_ROOT
9d7cd5
9d7cd5
%files
9d7cd5
%defattr (-,root,root,-)
9d7cd5
%doc BUGS
9d7cd5
%doc README
9d7cd5
%doc TODO
9d7cd5
%doc doc
9d7cd5
%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}
9d7cd5
%{_datadir}/sgml/docbook/xsl-stylesheets
9d7cd5
9d7cd5
9d7cd5
%post
9d7cd5
CATALOG=%{_sysconfdir}/xml/catalog
9d7cd5
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
9d7cd5
 "http://docbook.sourceforge.net/release/xsl/%{version}" \
9d7cd5
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
9d7cd5
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
9d7cd5
 "http://docbook.sourceforge.net/release/xsl/%{version}" \
9d7cd5
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
9d7cd5
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
9d7cd5
 "http://docbook.sourceforge.net/release/xsl/current" \
9d7cd5
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
9d7cd5
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
9d7cd5
 "http://docbook.sourceforge.net/release/xsl/current" \
9d7cd5
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
9d7cd5
9d7cd5
9d7cd5
%postun
9d7cd5
# remove entries only on removal of package
9d7cd5
if [ "$1" = 0 ]; then
9d7cd5
  CATALOG=%{_sysconfdir}/xml/catalog
9d7cd5
  %{_bindir}/xmlcatalog --noout --del \
9d7cd5
   "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
9d7cd5
fi
9d7cd5
9d7cd5
%changelog
9d7cd5
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.78.1-3
9d7cd5
- Mass rebuild 2013-12-27
9d7cd5
9d7cd5
* Mon Jul 29 2013 Ondrej Vasik <ovasik@redhat.com> 1.78.1-2
9d7cd5
- use DMIT (modified MIT) as a license for the
9d7cd5
  stylesheets (#988715)
9d7cd5
9d7cd5
* Mon Mar 18 2013 Ondrej Vasik <ovasik@redhat.com> 1.78.1-1
9d7cd5
- new upstream release 1.78.1
9d7cd5
9d7cd5
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.0-2
9d7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
9d7cd5
9d7cd5
* Thu Dec 20 2012 Ondrej Vasik <ovasik@redhat.com> 1.78.0-1
9d7cd5
- new upstream release 1.78.0
9d7cd5
9d7cd5
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.77.1-3
9d7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9d7cd5
9d7cd5
* Tue Jun  5 2012 Ondrej Vasik <ovasik@redhat.com> 1.77.1-2
9d7cd5
- ship VERSION.xsl file (#829014)
9d7cd5
9d7cd5
* Tue Jun  5 2012 Ondrej Vasik <ovasik@redhat.com> 1.77.1-1
9d7cd5
- new stable upstream release 1.77.1
9d7cd5
- defuzz patches
9d7cd5
9d7cd5
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76.1-5
9d7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9d7cd5
9d7cd5
* Tue Sep  6 2011 Ondrej Vasik <ovasik@redhat.com> 1.76.1-4
9d7cd5
- revert previous change, workaround the mandir links issue
9d7cd5
  in buildroot (#727251)
9d7cd5
9d7cd5
* Mon Aug 29 2011 Ondrej Vasik <ovasik@redhat.com> 1.76.1-3
9d7cd5
- make man.output.in.separate.dir "on" by default (#727251)
9d7cd5
9d7cd5
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76.1-2
9d7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9d7cd5
9d7cd5
* Tue Nov 02 2010 Ondrej Vasik <ovasik@redhat.com> 1.76.1-1
9d7cd5
- new upstream release 1.76.1
9d7cd5
9d7cd5
* Mon Sep 06 2010 Ondrej Vasik <ovasik@redhat.com> 1.76.0-1
9d7cd5
- new upstream release 1.76.0
9d7cd5
9d7cd5
* Tue May 04 2010 Ondrej Vasik <ovasik@redhat.com> 1.75.2-6
9d7cd5
- ship eclipse help stylesheets(#588613)
9d7cd5
9d7cd5
* Fri Dec 18 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-5
9d7cd5
- comment patches purpose
9d7cd5
- License Copyright only
9d7cd5
9d7cd5
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.75.2-4
9d7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9d7cd5
9d7cd5
* Thu Jul 23 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-3
9d7cd5
- upstream changed changed doc tarball after release
9d7cd5
  (empty reference pdf file in old tarball)
9d7cd5
9d7cd5
* Wed Jul 22 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-2
9d7cd5
- upstream changed tarballs after release
9d7cd5
9d7cd5
* Tue Jul 21 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-1
9d7cd5
- New upstream release 1.75.2
9d7cd5
9d7cd5
* Thu May 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.1-1
9d7cd5
- New upstream release 1.75.1
9d7cd5
9d7cd5
* Mon May 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.0-1
9d7cd5
- New upstream release 1.75.0
9d7cd5
- update marginleft patch
9d7cd5
9d7cd5
* Wed Mar 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.3-1
9d7cd5
- New upstream release 1.74.3
9d7cd5
9d7cd5
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.74.2-3
9d7cd5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9d7cd5
9d7cd5
* Mon Feb 23 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.2-2
9d7cd5
- updated Makefile: do ship .svg images(#486849), xsl
9d7cd5
  stylesheets for website, xhtml-1_1, docbook -> epub
9d7cd5
  convertor
9d7cd5
9d7cd5
* Fri Feb 20 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.2-1
9d7cd5
- New upstream release 1.74.2
9d7cd5
9d7cd5
* Wed Feb 18 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.1-1
9d7cd5
- New upstream release, removed included patches
9d7cd5
9d7cd5
* Wed Feb 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-7
9d7cd5
- fix broken varlistentry (#479683)
9d7cd5
9d7cd5
* Mon Feb 02 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-6
9d7cd5
- fix improper localization for rtl languages, thanks
9d7cd5
  Muayyad Alsadi(#475077)
9d7cd5
9d7cd5
* Wed Jan 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-5
9d7cd5
- fix xsl stylesheets for rtl languages(#475077)
9d7cd5
9d7cd5
* Fri Dec 12 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-4
9d7cd5
- Author_Group "<orgname>" merged between "<surname>"
9d7cd5
  and "<surname>" (#473019)
9d7cd5
9d7cd5
* Wed Aug 06 2008 Kamil Dudka <kdudka@redhat.com> 1.74.0-3
9d7cd5
- Rediffed all patches to work with patch --fuzz=0
9d7cd5
9d7cd5
* Wed Aug 06 2008 Kamil Dudka <kdudka@redhat.com> 1.74.0-2
9d7cd5
- Tiny changes in docbook-xsl-newmethods.patch to work with xalan
9d7cd5
  (#452867)
9d7cd5
9d7cd5
* Tue Jun 03 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-1
9d7cd5
- New upstream release 1.74.0, adapted patches
9d7cd5
9d7cd5
* Fri Dec 14 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-9
9d7cd5
- added fixes for passivetex extension and list-item-body
9d7cd5
  (#161371)
9d7cd5
9d7cd5
* Tue Dec 11 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-8
9d7cd5
- remove entries from xmlcatalog only on removal of package
9d7cd5
  (required because of the change with droping release
9d7cd5
   -caused drop of catalog entries during update)
9d7cd5
9d7cd5
* Tue Dec 04 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-7
9d7cd5
- change a few non-constant expressions to constant that
9d7cd5
  could now be handled by passivetex(#366441)
9d7cd5
9d7cd5
* Mon Dec 03 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-6
9d7cd5
- fixed docbook-xsl-pagesetup.patch to follow Norman Walsh's
9d7cd5
  documentation for nonpassivetex processing(#307001)
9d7cd5
9d7cd5
* Tue Nov 27 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-5
9d7cd5
- convert all html files in doc to UTF-8 in prep
9d7cd5
  (latest rpmlint gives warnings)
9d7cd5
- no longer using release in style-xsl dir(#389231)
9d7cd5
9d7cd5
* Tue Nov 06 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-4
9d7cd5
- Merge review(#225704)
9d7cd5
- spec file modified to follow guidelines
9d7cd5
9d7cd5
* Wed Oct 24 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-3
9d7cd5
- rpmlint check
9d7cd5
- fixed License Tag, Requires and some cosmetic issues 
9d7cd5
9d7cd5
* Fri Sep  7 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-2
9d7cd5
- Added PreReq of libxml2(#253962)
9d7cd5
9d7cd5
* Wed Sep  5 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-1
9d7cd5
- new upstream version
9d7cd5
9d7cd5
* Thu Aug 30 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.1-2
9d7cd5
- removed patch for #249294(included in new version other way)
9d7cd5
9d7cd5
* Wed Aug 29 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.1-1
9d7cd5
- new upstream version(fixing some bugs)
9d7cd5
- small new-methods patch change
9d7cd5
9d7cd5
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.0-2
9d7cd5
- fixed manpages/docbook.xsl failure(Tim Waugh,#249294)
9d7cd5
9d7cd5
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.0-1
9d7cd5
- update to latest upstream version
9d7cd5
- patch changes because of rejects
9d7cd5
9d7cd5
* Mon Jun 18 2007 Ondrej Vasik <ovasik@redhat.com> 1.72.0-3
9d7cd5
- patch fixing #161619 taken from upstream
9d7cd5
9d7cd5
* Wed Jan 24 2007 Tomas Mraz <tmraz@redhat.com> 1.72.0-2
9d7cd5
- Install missing *.ent from common.
9d7cd5
9d7cd5
* Tue Jan 23 2007 Tim Waugh <twaugh@redhat.com> 1.72.0-1
9d7cd5
- 1.72.0.
9d7cd5
9d7cd5
* Fri Jan 19 2007 Tomas Mraz <tmraz@redhat.com> 1.71.1-2
9d7cd5
- Add new wordml and especially highlighting (which is referenced
9d7cd5
  from html) subdirs to Makefile.
9d7cd5
9d7cd5
* Fri Jan 19 2007 Tim Waugh <twaugh@redhat.com> 1.71.1-1
9d7cd5
- 1.71.1.  No longer seem to need lists patch.  Removed out of date sp
9d7cd5
  patch.
9d7cd5
9d7cd5
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.69.1-5.1
9d7cd5
- rebuild
9d7cd5
9d7cd5
* Tue Jan 24 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-5
9d7cd5
- Don't ship docsrc/* (bug #177256).
9d7cd5
- Don't ship the extensions (bug #177256).
9d7cd5
9d7cd5
* Thu Jan 19 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-4
9d7cd5
- Better 'lists' patch (bug #161371).
9d7cd5
9d7cd5
* Thu Jan 19 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-3
9d7cd5
- Apply patch to fix simpara manpage output, which asciidoc tends to use
9d7cd5
  (bug #175592).
9d7cd5
9d7cd5
* Tue Jan  3 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-2
9d7cd5
- Patches from W. Michael Petullo:
9d7cd5
  - Fix lists blocking (bug #161371).
9d7cd5
  - Avoid proportional-column-width for passivetex (bug #176766).
9d7cd5
9d7cd5
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
9d7cd5
- rebuilt
9d7cd5
9d7cd5
* Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 1.69.1-1
9d7cd5
- 1.69.1.
9d7cd5
9d7cd5
* Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 1.69.0-1
9d7cd5
- 1.69.0.
9d7cd5
9d7cd5
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1.68.1-1
9d7cd5
- 1.68.1.
9d7cd5
9d7cd5
* Wed Feb  9 2005 Tim Waugh <twaugh@redhat.com> 1.68.0-1
9d7cd5
- 1.68.0.
9d7cd5
9d7cd5
* Wed Dec  8 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-2
9d7cd5
- Prevent expressions in passivetex output from index.xsl (bug #142229).
9d7cd5
9d7cd5
* Thu Dec  2 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-1
9d7cd5
- 1.67.2.
9d7cd5
- No longer need nbsp or listblock patches.
9d7cd5
9d7cd5
* Mon Nov 22 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-3
9d7cd5
- Avoid non-ASCII in generated man pages.
9d7cd5
9d7cd5
* Wed Nov 10 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-1
9d7cd5
- 1.67.0.
9d7cd5
9d7cd5
* Tue Nov  2 2004 Tim Waugh <twaugh@redhat.com> 1.66.1-1
9d7cd5
- 1.66.1 (bug #133586).
9d7cd5
9d7cd5
* Fri Jun  4 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-2
9d7cd5
- Fix strange filenames (bug #125311).
9d7cd5
9d7cd5
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-1
9d7cd5
- 1.65.1.
9d7cd5
9d7cd5
* Mon Mar  1 2004 Tim Waugh <twaugh@redhat.com> 1.65.0-1
9d7cd5
- 1.65.0.
9d7cd5
9d7cd5
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
9d7cd5
- rebuilt
9d7cd5
9d7cd5
* Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-6
9d7cd5
- Fix last margin-left fix (bug #113456).
9d7cd5
- Reduce instances of itemized/ordered lists having misalignments.
9d7cd5
9d7cd5
* Sun Jan 18 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-5
9d7cd5
- And another (bug #113456).
9d7cd5
9d7cd5
* Thu Jan 15 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-4
9d7cd5
- Fixed another instance of bug #113456 in lists layout.
9d7cd5
9d7cd5
* Wed Jan 14 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-3
9d7cd5
- Hard-code the margin-left work around to expect passivetex (bug #113456).
9d7cd5
9d7cd5
* Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-2
9d7cd5
- Another manpage fix.
9d7cd5
9d7cd5
* Fri Dec 19 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-1
9d7cd5
- 1.64.1.
9d7cd5
9d7cd5
* Thu Dec 18 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-2
9d7cd5
- Another manpage fix.
9d7cd5
9d7cd5
* Tue Dec 16 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-1
9d7cd5
- 1.64.0.
9d7cd5
9d7cd5
* Fri Dec 12 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-3
9d7cd5
- Use the fr.xml from 1.62.1 (bug #111989).
9d7cd5
9d7cd5
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-2
9d7cd5
- Manpages fixes.
9d7cd5
9d7cd5
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-1
9d7cd5
- 1.62.4.
9d7cd5
- No longer need hyphens patch.
9d7cd5
- Avoid expressions in margin-left attributes, since passivetex does not
9d7cd5
  understand them.
9d7cd5
9d7cd5
* Fri Jul  4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2.1
9d7cd5
- Rebuilt.
9d7cd5
9d7cd5
* Fri Jul  4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2
9d7cd5
- Rebuilt.
9d7cd5
9d7cd5
* Fri May 23 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-1
9d7cd5
- 1.61.2.
9d7cd5
9d7cd5
* Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 1.61.1-1
9d7cd5
- 1.61.1.
9d7cd5
9d7cd5
* Fri May  9 2003 Tim Waugh <twaugh@redhat.com> 1.61.0-1
9d7cd5
- Prevent hyphenation-character confusing passivetex.
9d7cd5
- 1.61.0.
9d7cd5
9d7cd5
* Thu Mar  6 2003 Tim Waugh <twaugh@redhat.com> 1.60.1-1
9d7cd5
- 1.60.1.
9d7cd5
9d7cd5
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
9d7cd5
- rebuilt
9d7cd5
9d7cd5
* Mon Dec  2 2002 Tim Waugh <twaugh@redhat.com> 1.58.1-1
9d7cd5
- 1.58.1.
9d7cd5
- No longer need marker patch.
9d7cd5
9d7cd5
* Mon Nov  4 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-2
9d7cd5
- Ship profiling directory (bug #77191).
9d7cd5
9d7cd5
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-1
9d7cd5
- 1.57.0.
9d7cd5
9d7cd5
* Wed Oct 16 2002 Tim Waugh <twaugh@redhat.com> 1.56.1-1
9d7cd5
- 1.56.1.
9d7cd5
- Use value-of not copy-of for fo:marker content.
9d7cd5
- Conflict with passivetex < 1.21.
9d7cd5
9d7cd5
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
9d7cd5
- automated rebuild
9d7cd5
9d7cd5
* Thu May 23 2002 Tim Powers <timp@redhat.com>
9d7cd5
- automated rebuild
9d7cd5
9d7cd5
* Wed May  1 2002 Tim Waugh <twaugh@redhat.com> 1.50.0-1
9d7cd5
- 1.50.0.
9d7cd5
9d7cd5
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 1.49-1
9d7cd5
- 1.49.
9d7cd5
- Rebuild in new environment.
9d7cd5
9d7cd5
* Fri Feb  1 2002 Tim Waugh <twaugh@redhat.com> 1.48-4
9d7cd5
- Put URIs instead of pathnames in the XML catalog.
9d7cd5
9d7cd5
* Thu Jan 17 2002 Tim Waugh <twaugh@redhat.com> 1.48-3
9d7cd5
- Back to /usr/share/sgml.
9d7cd5
9d7cd5
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.48-2
9d7cd5
- automated rebuild
9d7cd5
9d7cd5
* Mon Jan  7 2002 Tim Waugh <twaugh@redhat.com> 1.48-1
9d7cd5
- 1.48.
9d7cd5
9d7cd5
* Sat Dec  8 2001 Tim Waugh <twaugh@redhat.com> 1.47-2
9d7cd5
- Conflict with PassiveTeX before 1.11.
9d7cd5
9d7cd5
* Tue Oct 16 2001 Tim Waugh <twaugh@redhat.com> 1.47-1
9d7cd5
- 1.47-experimental.
9d7cd5
9d7cd5
* Tue Oct  9 2001 Tim Waugh <twaugh@redhat.com> 1.45-2
9d7cd5
- Fix unversioned symlink.
9d7cd5
9d7cd5
* Mon Oct  8 2001 Tim Waugh <twaugh@redhat.com> 1.45-1
9d7cd5
- XML Catalog entries.
9d7cd5
- Move files to /usr/share/xml.
9d7cd5
9d7cd5
* Mon Oct  1 2001 Tim Waugh <twaugh@redhat.com> 1.45-0.1
9d7cd5
- 1.45.
9d7cd5
- Built for Red Hat Linux.
9d7cd5
9d7cd5
* Tue Jun 26 2001 Chris Runge <crunge@pobox.com>
9d7cd5
- 1.40
9d7cd5
9d7cd5
* Fri Jun 09 2001 Chris Runge <crunge@pobox.com>
9d7cd5
- added extensions and additional doc
9d7cd5
- bin added to doc; the Perl files are for Win32 Perl and so need some
9d7cd5
  conversion first
9d7cd5
9d7cd5
* Fri Jun 08 2001 Chris Runge <crunge@pobox.com>
9d7cd5
- Initial RPM (based on docbook-style-dsssl RPM)
9d7cd5
- note: no catalog right now (I don't know how to do it; and not sure why
9d7cd5
  it is necessary)