auto-import changelog data from docbook-utils-0.6.13-7.src.rpm
* Tue Jun 10 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-7 - Fix manpage output: escape dots in column 1 (bug #97087). * Tue May 27 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-6 - Rebuild. * Fri May 23 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-5 - Build requires openjade. * Thu May 22 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-4 - Require elinks (bug #91472). * Thu May 01 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-3 - Move docbook2pdf man pages to pdf subpackage (bug #90041). * Wed Apr 30 2003 Elliot Lee <sopwith@redhat.com> 0.6.13-2 - Add s/head -1/head -n 1/ patch to make ppc64 happy (among other things) * Mon Mar 17 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-1 - 0.6.13, fixing bug #86152. * Fri Feb 14 2003 Elliot Lee <sopwith@redhat.com> 0.6.12-6 - tetex-dvips requirement should go on main package (not just pdf subpackage) because docbook2ps requires dvips too.
This commit is contained in:
parent
b7f711c1ab
commit
b3d4c9278b
@ -1 +1 @@
|
|||||||
docbook-utils-0.6.12.tar.gz
|
docbook-utils-0.6.13.tar.gz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: docbook-utils
|
Name: docbook-utils
|
||||||
Version: 0.6.12
|
Version: 0.6.13
|
||||||
Release: 5
|
Release: 7
|
||||||
Group: Applications/Text
|
Group: Applications/Text
|
||||||
|
|
||||||
Summary: Shell scripts for managing DocBook documents.
|
Summary: Shell scripts for managing DocBook documents.
|
||||||
@ -12,15 +12,19 @@ Requires: docbook-style-dsssl >= 1.72
|
|||||||
Requires: docbook-dtds
|
Requires: docbook-dtds
|
||||||
Requires: perl-SGMLSpm >= 1.03ii
|
Requires: perl-SGMLSpm >= 1.03ii
|
||||||
Requires: which
|
Requires: which
|
||||||
|
Requires: tetex-dvips
|
||||||
|
Requires: elinks
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
||||||
BuildRequires: perl-SGMLSpm
|
BuildRequires: perl-SGMLSpm, openjade
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
Source1: db2html
|
Source1: db2html
|
||||||
Source2: gdp-both.dsl
|
Source2: gdp-both.dsl
|
||||||
Patch0: docbook-utils-fixes.patch
|
|
||||||
|
Patch0: docbook-utils-headusage.patch
|
||||||
|
Patch1: docbook-utils-dot.patch
|
||||||
|
|
||||||
Obsoletes: stylesheets
|
Obsoletes: stylesheets
|
||||||
Provides: stylesheets
|
Provides: stylesheets
|
||||||
@ -32,7 +36,7 @@ files to other formats (for example, HTML, RTF, and PostScript), and
|
|||||||
for comparing SGML files.
|
for comparing SGML files.
|
||||||
|
|
||||||
%package pdf
|
%package pdf
|
||||||
Requires: tetex-dvips jadetex >= 2.5
|
Requires: jadetex >= 2.5
|
||||||
Requires: docbook-utils = %{version}
|
Requires: docbook-utils = %{version}
|
||||||
Group: Applications/Text
|
Group: Applications/Text
|
||||||
Obsoletes: stylesheets-db2pdf
|
Obsoletes: stylesheets-db2pdf
|
||||||
@ -44,18 +48,16 @@ URL: ftp://sources.redhat.com/pub/docbook-tools/new-trials/
|
|||||||
This package contains a script for converting DocBook documents to
|
This package contains a script for converting DocBook documents to
|
||||||
PDF format.
|
PDF format.
|
||||||
|
|
||||||
%Prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1 -b .headusage
|
||||||
|
%patch1 -p1 -b .dot
|
||||||
|
|
||||||
# Fixes from CVS
|
%build
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
%Build
|
|
||||||
./configure --prefix=%{_prefix} --mandir=%{_mandir}
|
./configure --prefix=%{_prefix} --mandir=%{_mandir}
|
||||||
make
|
make
|
||||||
|
|
||||||
|
%install
|
||||||
%Install
|
|
||||||
export DESTDIR=$RPM_BUILD_ROOT
|
export DESTDIR=$RPM_BUILD_ROOT
|
||||||
rm -rf $DESTDIR
|
rm -rf $DESTDIR
|
||||||
make install prefix=%{_prefix} mandir=%{_mandir} docdir=/tmp
|
make install prefix=%{_prefix} mandir=%{_mandir} docdir=/tmp
|
||||||
@ -94,14 +96,54 @@ rm -rf $DESTDIR
|
|||||||
%{_bindir}/db2rtf
|
%{_bindir}/db2rtf
|
||||||
%{_bindir}/sgmldiff
|
%{_bindir}/sgmldiff
|
||||||
/usr/share/sgml/docbook/utils-%{version}
|
/usr/share/sgml/docbook/utils-%{version}
|
||||||
%{_mandir}/*/*
|
%{_mandir}/*/db2dvi.*
|
||||||
|
%{_mandir}/*/db2html.*
|
||||||
|
%{_mandir}/*/db2ps.*
|
||||||
|
%{_mandir}/*/db2rtf.*
|
||||||
|
%{_mandir}/*/docbook2dvi.*
|
||||||
|
%{_mandir}/*/docbook2html.*
|
||||||
|
%{_mandir}/*/docbook2ps.*
|
||||||
|
%{_mandir}/*/docbook2rtf.*
|
||||||
|
%{_mandir}/*/docbook2man.*
|
||||||
|
%{_mandir}/*/docbook2tex.*
|
||||||
|
%{_mandir}/*/docbook2texi.*
|
||||||
|
%{_mandir}/*/jw.*
|
||||||
|
%{_mandir}/*/sgmldiff.*
|
||||||
|
%{_mandir}/*/*-spec.*
|
||||||
|
|
||||||
%files pdf
|
%files pdf
|
||||||
%defattr (-,root,root)
|
%defattr (-,root,root)
|
||||||
%{_bindir}/docbook2pdf
|
%{_bindir}/docbook2pdf
|
||||||
%{_bindir}/db2pdf
|
%{_bindir}/db2pdf
|
||||||
|
%{_mandir}/*/db2pdf.*
|
||||||
|
%{_mandir}/*/docbook2pdf.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 10 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-7
|
||||||
|
- Fix manpage output: escape dots in column 1 (bug #97087).
|
||||||
|
|
||||||
|
* Tue May 27 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-6
|
||||||
|
- Rebuild.
|
||||||
|
|
||||||
|
* Fri May 23 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-5
|
||||||
|
- Build requires openjade.
|
||||||
|
|
||||||
|
* Thu May 22 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-4
|
||||||
|
- Require elinks (bug #91472).
|
||||||
|
|
||||||
|
* Thu May 1 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-3
|
||||||
|
- Move docbook2pdf man pages to pdf subpackage (bug #90041).
|
||||||
|
|
||||||
|
* Wed Apr 30 2003 Elliot Lee <sopwith@redhat.com> 0.6.13-2
|
||||||
|
- Add s/head -1/head -n 1/ patch to make ppc64 happy (among other things)
|
||||||
|
|
||||||
|
* Mon Mar 17 2003 Tim Waugh <twaugh@redhat.com> 0.6.13-1
|
||||||
|
- 0.6.13, fixing bug #86152.
|
||||||
|
|
||||||
|
* Fri Feb 14 2003 Elliot Lee <sopwith@redhat.com> 0.6.12-6
|
||||||
|
- tetex-dvips requirement should go on main package (not just pdf
|
||||||
|
subpackage) because docbook2ps requires dvips too.
|
||||||
|
|
||||||
* Wed Feb 5 2003 Tim Waugh <twaugh@redhat.com> 0.6.12-5
|
* Wed Feb 5 2003 Tim Waugh <twaugh@redhat.com> 0.6.12-5
|
||||||
- Build requires perl-SGMLSpm (bug #83474).
|
- Build requires perl-SGMLSpm (bug #83474).
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user