2004-09-09 04:18:39 +00:00
|
|
|
Name: docbook-style-xsl
|
2005-08-12 09:13:36 +00:00
|
|
|
Version: 1.69.1
|
2005-02-09 14:56:45 +00:00
|
|
|
Release: 1
|
2004-09-09 04:18:39 +00:00
|
|
|
Group: Applications/Text
|
|
|
|
|
|
|
|
Summary: Norman Walsh's XSL stylesheets for DocBook XML.
|
|
|
|
|
|
|
|
License: Distributable
|
|
|
|
URL: http://docbook.sourceforge.net/projects/xsl/
|
|
|
|
|
|
|
|
Provides: docbook-xsl = %{version}
|
|
|
|
PreReq: docbook-dtd-xml
|
|
|
|
# xml-common was using /usr/share/xml until 0.6.3-8.
|
|
|
|
PreReq: xml-common >= 0.6.3-8
|
2004-09-09 04:20:18 +00:00
|
|
|
# PassiveTeX before 1.21 can't handle the newer stylesheets.
|
|
|
|
Conflicts: passivetex < 1.21
|
2004-09-09 04:18:39 +00:00
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2004-12-02 23:04:01 +00:00
|
|
|
Source0: http://prdownloads.sourceforge.net/docbook/docbook-xsl-%{version}.tar.bz2
|
2004-09-09 04:20:18 +00:00
|
|
|
Source1: %{name}.Makefile
|
2005-07-18 11:58:26 +00:00
|
|
|
Source2: http://prdownloads.sourceforge.net/docbook/docbook-xsl-doc-%{version}.tar.bz2
|
2004-09-09 04:18:39 +00:00
|
|
|
|
2004-09-09 04:21:07 +00:00
|
|
|
Patch2: docbook-xsl-marginleft.patch
|
2004-09-09 04:20:45 +00:00
|
|
|
|
2004-09-09 04:18:39 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
These XSL stylesheets allow you to transform any DocBook XML document to
|
|
|
|
other formats, such as HTML, FO, and XHMTL. They are highly customizable.
|
|
|
|
|
2004-09-09 04:18:58 +00:00
|
|
|
|
2004-09-09 04:18:39 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n docbook-xsl-%{version}
|
2005-07-18 11:58:26 +00:00
|
|
|
pushd ..
|
|
|
|
tar jxf %{SOURCE2}
|
|
|
|
popd
|
2004-09-09 04:21:07 +00:00
|
|
|
%patch2 -p1 -b .marginleft
|
2004-09-09 04:18:39 +00:00
|
|
|
cp %{SOURCE1} Makefile
|
2004-09-09 04:22:14 +00:00
|
|
|
for f in $(find -name "*'*")
|
|
|
|
do
|
|
|
|
mv -v "$f" $(echo "$f" | tr -d "'")
|
|
|
|
done
|
2004-09-09 04:18:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
rm -rf $DESTDIR
|
|
|
|
make install BINDIR=$DESTDIR/usr/bin DESTDIR=$DESTDIR/usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}
|
|
|
|
ln -s xsl-stylesheets-%{version}-%{release} \
|
|
|
|
$DESTDIR/usr/share/sgml/docbook/xsl-stylesheets
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
rm -rf $DESTDIR
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr (-,root,root)
|
|
|
|
%doc BUGS
|
|
|
|
%doc ChangeLog
|
|
|
|
%doc README
|
|
|
|
%doc TODO
|
|
|
|
%doc doc
|
|
|
|
%doc docsrc
|
|
|
|
/usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}
|
|
|
|
/usr/share/sgml/docbook/xsl-stylesheets
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
CATALOG=/etc/xml/catalog
|
|
|
|
/usr/bin/xmlcatalog --noout --add "rewriteSystem" \
|
|
|
|
"http://docbook.sourceforge.net/release/xsl/%{version}" \
|
|
|
|
"file:///usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}" $CATALOG
|
|
|
|
/usr/bin/xmlcatalog --noout --add "rewriteURI" \
|
|
|
|
"http://docbook.sourceforge.net/release/xsl/%{version}" \
|
|
|
|
"file:///usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}" $CATALOG
|
|
|
|
/usr/bin/xmlcatalog --noout --add "rewriteSystem" \
|
|
|
|
"http://docbook.sourceforge.net/release/xsl/current" \
|
|
|
|
"file:///usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}" $CATALOG
|
|
|
|
/usr/bin/xmlcatalog --noout --add "rewriteURI" \
|
|
|
|
"http://docbook.sourceforge.net/release/xsl/current" \
|
|
|
|
"file:///usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}" $CATALOG
|
|
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
CATALOG=/etc/xml/catalog
|
|
|
|
/usr/bin/xmlcatalog --noout --del \
|
|
|
|
"file:///usr/share/sgml/docbook/xsl-stylesheets-%{version}-%{release}" $CATALOG
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2005-08-12 09:13:36 +00:00
|
|
|
* Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 1.69.1-1
|
|
|
|
- 1.69.1.
|
|
|
|
|
2005-07-18 11:58:26 +00:00
|
|
|
* Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 1.69.0-1
|
|
|
|
- 1.69.0.
|
|
|
|
|
2005-02-14 15:24:11 +00:00
|
|
|
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1.68.1-1
|
|
|
|
- 1.68.1.
|
|
|
|
|
2005-02-09 14:56:45 +00:00
|
|
|
* Wed Feb 9 2005 Tim Waugh <twaugh@redhat.com> 1.68.0-1
|
|
|
|
- 1.68.0.
|
|
|
|
|
2004-12-08 12:45:19 +00:00
|
|
|
* Wed Dec 8 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-2
|
|
|
|
- Prevent expressions in passivetex output from index.xsl (bug #142229).
|
|
|
|
|
2004-12-02 23:04:01 +00:00
|
|
|
* Thu Dec 2 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-1
|
|
|
|
- 1.67.2.
|
|
|
|
- No longer need nbsp or listblock patches.
|
|
|
|
|
2004-11-22 12:53:13 +00:00
|
|
|
* Mon Nov 22 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-3
|
2004-11-22 12:04:32 +00:00
|
|
|
- Avoid non-ASCII in generated man pages.
|
|
|
|
|
2004-11-10 10:51:32 +00:00
|
|
|
* Wed Nov 10 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-1
|
|
|
|
- 1.67.0.
|
|
|
|
|
2004-11-02 17:14:17 +00:00
|
|
|
* Tue Nov 2 2004 Tim Waugh <twaugh@redhat.com> 1.66.1-1
|
|
|
|
- 1.66.1 (bug #133586).
|
|
|
|
|
2004-09-09 04:22:14 +00:00
|
|
|
* Fri Jun 4 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-2
|
|
|
|
- Fix strange filenames (bug #125311).
|
|
|
|
|
2004-09-09 04:22:01 +00:00
|
|
|
* Tue Mar 9 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-1
|
|
|
|
- 1.65.1.
|
|
|
|
|
|
|
|
* Mon Mar 1 2004 Tim Waugh <twaugh@redhat.com> 1.65.0-1
|
|
|
|
- 1.65.0.
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:21:07 +00:00
|
|
|
* Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-6
|
|
|
|
- Fix last margin-left fix (bug #113456).
|
|
|
|
- Reduce instances of itemized/ordered lists having misalignments.
|
|
|
|
|
|
|
|
* Sun Jan 18 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-5
|
|
|
|
- And another (bug #113456).
|
|
|
|
|
|
|
|
* Thu Jan 15 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-4
|
|
|
|
- Fixed another instance of bug #113456 in lists layout.
|
|
|
|
|
|
|
|
* Wed Jan 14 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-3
|
|
|
|
- Hard-code the margin-left work around to expect passivetex (bug #113456).
|
|
|
|
|
|
|
|
* Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-2
|
|
|
|
- Another manpage fix.
|
|
|
|
|
|
|
|
* Fri Dec 19 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-1
|
|
|
|
- 1.64.1.
|
|
|
|
|
|
|
|
* Thu Dec 18 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-2
|
|
|
|
- Another manpage fix.
|
|
|
|
|
|
|
|
* Tue Dec 16 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-1
|
|
|
|
- 1.64.0.
|
|
|
|
|
|
|
|
* Fri Dec 12 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-3
|
|
|
|
- Use the fr.xml from 1.62.1 (bug #111989).
|
|
|
|
|
|
|
|
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-2
|
|
|
|
- Manpages fixes.
|
|
|
|
|
|
|
|
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-1
|
|
|
|
- 1.62.4.
|
|
|
|
- No longer need hyphens patch.
|
|
|
|
- Avoid expressions in margin-left attributes, since passivetex does not
|
|
|
|
understand them.
|
|
|
|
|
2004-09-09 04:20:45 +00:00
|
|
|
* Fri Jul 4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2.1
|
|
|
|
- Rebuilt.
|
|
|
|
|
|
|
|
* Fri Jul 4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2
|
|
|
|
- Rebuilt.
|
|
|
|
|
|
|
|
* Fri May 23 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-1
|
|
|
|
- 1.61.2.
|
|
|
|
|
|
|
|
* Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 1.61.1-1
|
|
|
|
- 1.61.1.
|
|
|
|
|
|
|
|
* Fri May 9 2003 Tim Waugh <twaugh@redhat.com> 1.61.0-1
|
|
|
|
- Prevent hyphenation-character confusing passivetex.
|
|
|
|
- 1.61.0.
|
|
|
|
|
|
|
|
* Thu Mar 6 2003 Tim Waugh <twaugh@redhat.com> 1.60.1-1
|
|
|
|
- 1.60.1.
|
|
|
|
|
2004-09-09 04:20:18 +00:00
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Dec 2 2002 Tim Waugh <twaugh@redhat.com> 1.58.1-1
|
|
|
|
- 1.58.1.
|
|
|
|
- No longer need marker patch.
|
|
|
|
|
|
|
|
* Mon Nov 4 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-2
|
|
|
|
- Ship profiling directory (bug #77191).
|
|
|
|
|
|
|
|
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-1
|
|
|
|
- 1.57.0.
|
|
|
|
|
|
|
|
* Wed Oct 16 2002 Tim Waugh <twaugh@redhat.com> 1.56.1-1
|
|
|
|
- 1.56.1.
|
|
|
|
- Use value-of not copy-of for fo:marker content.
|
|
|
|
- Conflict with passivetex < 1.21.
|
|
|
|
|
2004-09-09 04:19:07 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 04:19:04 +00:00
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Wed May 1 2002 Tim Waugh <twaugh@redhat.com> 1.50.0-1
|
|
|
|
- 1.50.0.
|
|
|
|
|
2004-09-09 04:18:58 +00:00
|
|
|
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 1.49-1
|
|
|
|
- 1.49.
|
|
|
|
- Rebuild in new environment.
|
|
|
|
|
2004-09-09 04:18:39 +00:00
|
|
|
* Fri Feb 1 2002 Tim Waugh <twaugh@redhat.com> 1.48-4
|
|
|
|
- Put URIs instead of pathnames in the XML catalog.
|
|
|
|
|
|
|
|
* Thu Jan 17 2002 Tim Waugh <twaugh@redhat.com> 1.48-3
|
|
|
|
- Back to /usr/share/sgml.
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.48-2
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Mon Jan 7 2002 Tim Waugh <twaugh@redhat.com> 1.48-1
|
|
|
|
- 1.48.
|
|
|
|
|
|
|
|
* Sat Dec 8 2001 Tim Waugh <twaugh@redhat.com> 1.47-2
|
|
|
|
- Conflict with PassiveTeX before 1.11.
|
|
|
|
|
|
|
|
* Tue Oct 16 2001 Tim Waugh <twaugh@redhat.com> 1.47-1
|
|
|
|
- 1.47-experimental.
|
|
|
|
|
|
|
|
* Tue Oct 9 2001 Tim Waugh <twaugh@redhat.com> 1.45-2
|
|
|
|
- Fix unversioned symlink.
|
|
|
|
|
|
|
|
* Mon Oct 8 2001 Tim Waugh <twaugh@redhat.com> 1.45-1
|
|
|
|
- XML Catalog entries.
|
|
|
|
- Move files to /usr/share/xml.
|
|
|
|
|
|
|
|
* Mon Oct 1 2001 Tim Waugh <twaugh@redhat.com> 1.45-0.1
|
|
|
|
- 1.45.
|
|
|
|
- Built for Red Hat Linux.
|
|
|
|
|
|
|
|
* Tue Jun 26 2001 Chris Runge <crunge@pobox.com>
|
|
|
|
- 1.40
|
|
|
|
|
|
|
|
* Fri Jun 09 2001 Chris Runge <crunge@pobox.com>
|
|
|
|
- added extensions and additional doc
|
|
|
|
- bin added to doc; the Perl files are for Win32 Perl and so need some
|
|
|
|
conversion first
|
|
|
|
|
|
|
|
* Fri Jun 08 2001 Chris Runge <crunge@pobox.com>
|
|
|
|
- Initial RPM (based on docbook-style-dsssl RPM)
|
|
|
|
- note: no catalog right now (I don't know how to do it; and not sure why
|
|
|
|
it is necessary)
|