Blame SPECS/openjade.spec

4d9b7d
Summary: A DSSSL implementation
4d9b7d
Name: openjade
4d9b7d
Version: 1.3.2
4d9b7d
Release: 57%{?dist}
4d9b7d
Requires: sgml-common
4d9b7d
URL: http://openjade.sourceforge.net/
4d9b7d
Source: http://download.sourceforge.net/openjade/openjade-%{version}.tar.gz
4d9b7d
#config.sub and config.guess from upstream sources (Mar 25th 2013).
4d9b7d
#http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
4d9b7d
#http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
4d9b7d
#I can't get them from autoreconf, because of the very strange openjade structure of config files
4d9b7d
Source2:config.guess
4d9b7d
Source3:config.sub
4d9b7d
#fix build on ppc64
4d9b7d
Patch0: openjade-ppc64.patch
4d9b7d
#do not link against -lnsl
4d9b7d
Patch1: openjade-1.3.1-nsl.patch
4d9b7d
#Fix dependent libs for libogrove (bug #198232).
4d9b7d
Patch2: openjade-deplibs.patch
4d9b7d
#do not require OpenSP libosp.la file for build(#485114)
4d9b7d
Patch3: openjade-nola.patch
4d9b7d
#upstream bug tracker fix for build with gcc46
4d9b7d
Patch4: openjade-1.3.2-gcc46.patch
4d9b7d
#use Getopt:Std to prevent build failure
4d9b7d
Patch5: openjade-getoptperl.patch
4d9b7d
License: DMIT
4d9b7d
Group: Applications/Text
4d9b7d
4d9b7d
#Last jade version is from Red Hat 6.2
4d9b7d
Provides: jade = %{version}-%{release}
4d9b7d
4d9b7d
BuildRequires:  gcc
4d9b7d
BuildRequires: opensp-devel
4d9b7d
4d9b7d
BuildRequires: perl-interpreter
4d9b7d
4d9b7d
%description
4d9b7d
OpenJade is an implementation of the ISO/IEC 10179:1996 standard DSSSL
4d9b7d
(Document Style Semantics and Specification Language). OpenJade is
4d9b7d
based on James Clark's Jade implementation of DSSSL. OpenJade is a
4d9b7d
command-line application and a set of components. The DSSSL engine
4d9b7d
inputs an SGML or XML document and can output a variety of formats:
4d9b7d
XML, RTF, TeX, MIF (FrameMaker), SGML, or XML.
4d9b7d
4d9b7d
4d9b7d
%prep
4d9b7d
%setup -q
4d9b7d
%patch0 -p1
4d9b7d
%patch1 -p1
4d9b7d
%patch2 -p1 -b .deplibs
4d9b7d
%patch3 -p1 -b .nola
4d9b7d
%patch4 -p1 -b .gcc46
4d9b7d
%patch5 -p1 -b .getopt
4d9b7d
4d9b7d
4d9b7d
%build
4d9b7d
cp -p %{SOURCE2} %{SOURCE3} config/
4d9b7d
# more info: rhbz#1306162
4d9b7d
export CXXFLAGS="%optflags -fno-lifetime-dse"
4d9b7d
%configure --disable-static --datadir=%{_datadir}/sgml/%{name}-%{version} \
4d9b7d
	--enable-splibdir=%{_libdir}
4d9b7d
make
4d9b7d
4d9b7d
4d9b7d
%install
4d9b7d
rm -rf $RPM_BUILD_ROOT
4d9b7d
4d9b7d
make install install-man DESTDIR=$RPM_BUILD_ROOT
4d9b7d
4d9b7d
# oMy, othis ois osilly.
4d9b7d
ln -s openjade $RPM_BUILD_ROOT/%{_bindir}/jade
4d9b7d
echo ".so man1/openjade.1" > $RPM_BUILD_ROOT/%{_mandir}/man1/jade.1
4d9b7d
4d9b7d
# install jade/jade $RPM_BUILD_ROOT/%{prefix}/bin/jade
4d9b7d
cp dsssl/catalog $RPM_BUILD_ROOT/%{_datadir}/sgml/%{name}-%{version}/
4d9b7d
cp dsssl/{dsssl,style-sheet,fot}.dtd $RPM_BUILD_ROOT/%{_datadir}/sgml/%{name}-%{version}/
4d9b7d
4d9b7d
# add unversioned/versioned catalog and symlink
4d9b7d
mkdir -p $RPM_BUILD_ROOT/etc/sgml
4d9b7d
cd $RPM_BUILD_ROOT/etc/sgml
4d9b7d
touch %{name}-%{version}-%{release}.soc
4d9b7d
ln -s %{name}-%{version}-%{release}.soc %{name}.soc
4d9b7d
cd -
4d9b7d
4d9b7d
rm -f $RPM_BUILD_ROOT%{_libdir}/*.so $RPM_BUILD_ROOT%{_libdir}/*.la
4d9b7d
4d9b7d
%post
4d9b7d
/sbin/ldconfig
4d9b7d
/usr/bin/install-catalog --add /etc/sgml/%{name}-%{version}-%{release}.soc \
4d9b7d
    %{_datadir}/sgml/%{name}-%{version}/catalog >/dev/null 2>/dev/null || :
4d9b7d
4d9b7d
%preun
4d9b7d
/usr/bin/install-catalog --remove /etc/sgml/%{name}-%{version}-%{release}.soc \
4d9b7d
    %{_datadir}/sgml/%{name}-%{version}/catalog >/dev/null 2>/dev/null || :
4d9b7d
4d9b7d
%postun -p /sbin/ldconfig
4d9b7d
4d9b7d
%files
4d9b7d
%doc jadedoc/* dsssl/README.jadetex
4d9b7d
%doc README COPYING VERSION
4d9b7d
%ghost /etc/sgml/%{name}-%{version}-%{release}.soc
4d9b7d
/etc/sgml/%{name}.soc
4d9b7d
%{_bindir}/*
4d9b7d
%{_libdir}/*.so.*
4d9b7d
%{_mandir}/*/*
4d9b7d
%{_datadir}/sgml/%{name}-%{version}
4d9b7d
4d9b7d
%changelog
4d9b7d
* Wed Jul 11 2018 Ondrej Vasik <ovasik@redhat.com> - 1.3.2-57
4d9b7d
- License should be DMIT actually
4d9b7d
4d9b7d
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-56
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
4d9b7d
4d9b7d
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-55
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
4d9b7d
4d9b7d
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-54
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4d9b7d
4d9b7d
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-53
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4d9b7d
4d9b7d
* Tue Dec 20 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.3.2-52
4d9b7d
- Add BuildRequires: perl
4d9b7d
4d9b7d
* Mon Feb 15 2016 Pavel Raiskup <praiskup@redhat.com> - 1.3.2-51
4d9b7d
- using -fno-lifetime-dse instead of -ftree-dse (rhbz#1306162)
4d9b7d
4d9b7d
* Thu Feb 11 2016 Pavel Raiskup <praiskup@redhat.com> - 1.3.2-50
4d9b7d
- temporarily disable -ftree-dse optimization (rhbz#1306162)
4d9b7d
4d9b7d
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-49
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
4d9b7d
4d9b7d
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-48
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
4d9b7d
4d9b7d
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.3.2-47
4d9b7d
- Rebuilt for GCC 5 C++11 ABI change
4d9b7d
4d9b7d
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-46
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4d9b7d
4d9b7d
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-45
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
4d9b7d
4d9b7d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-44
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4d9b7d
4d9b7d
* Mon Mar 25 2013 Ondrej Vasik <ovasik@redhat.com> 1.3.2-43
4d9b7d
- Use upstream config.sub and config.guess to support aarch64(#926278)
4d9b7d
4d9b7d
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-42
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
4d9b7d
4d9b7d
* Fri Aug 10 2012 Ondrej Vasik <ovasik@redhat.com> 1.3.2-41
4d9b7d
- avoid build failure with using Getopt::Std;
4d9b7d
4d9b7d
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-40
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4d9b7d
4d9b7d
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-39
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4d9b7d
4d9b7d
* Wed Jun 08 2011 Ondrej Vasik <ovasik@redhat.com> 1.3.2-38
4d9b7d
- fix build with gcc46 (upstream bug tracker)
4d9b7d
4d9b7d
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-37
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4d9b7d
4d9b7d
* Thu Dec 10 2009 Ondrej Vasik <ovasik@redhat.com> 1.3.2-36
4d9b7d
- Merge Review (#226213) - added url, fixed rpmlint warnings,
4d9b7d
  no macros in changelog
4d9b7d
4d9b7d
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-35
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4d9b7d
4d9b7d
* Fri Feb 27 2009 Ondrej Vasik <ovasik@redhat.com> 1.3.2-34
4d9b7d
- disable parallel build (culprit of build failure)
4d9b7d
  - http://bugs.gentoo.org/181651
4d9b7d
4d9b7d
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-33
4d9b7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4d9b7d
4d9b7d
* Thu Sep 25 2008 Ondrej Vasik <ovasik@redhat.com> 1.3.2-32
4d9b7d
- do not require OpenSP libosp.la file for build(#485114)
4d9b7d
4d9b7d
* Mon Feb 11 2008 Ondrej Vasik <ovasik@redhat.com> 1.3.2-31
4d9b7d
- gcc43 rebuild
4d9b7d
4d9b7d
* Mon Aug 27 2007 Ondrej Vasik <ovasik@redhat.com> 1.3.2-30
4d9b7d
- changed license tag to BSD
4d9b7d
- rebuilt for F8
4d9b7d
4d9b7d
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.3.2-29
4d9b7d
- improved dependent libs patch (bug #237500)
4d9b7d
- same done for libospgrove.so
4d9b7d
4d9b7d
* Fri Feb  9 2007 Tim Waugh <twaugh@redhat.com> 1.3.2-28
4d9b7d
- Don't ship .so or .la files (bug #203635).
4d9b7d
- Added dist tag to release.
4d9b7d
- Fixed summary.
4d9b7d
- Fixed build root.
4d9b7d
- Removed prefix tag.
4d9b7d
4d9b7d
* Mon Jul 17 2006 Tim Waugh <twaugh@redhat.com> 1.3.2-27
4d9b7d
- Rebuilt.
4d9b7d
4d9b7d
* Mon Jul 10 2006 Tim Waugh <twaugh@redhat.com> 1.3.2-26
4d9b7d
- Fix dependent libs for libogrove (bug #198232).
4d9b7d
4d9b7d
* Mon Jun 26 2006 Florian La Roche <laroche@redhat.com> 1.3.2-25
4d9b7d
- add redirection to /dev/null for preun
4d9b7d
4d9b7d
* Tue Jun 13 2006 Tim Waugh <twaugh@redhat.com> 1.3.2-24
4d9b7d
- Rebuild against opensp.
4d9b7d
4d9b7d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.2-23.2
4d9b7d
- bump again for double-long bug on ppc(64)
4d9b7d
4d9b7d
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.3.2-23.1
4d9b7d
- rebuilt for new gcc4.1 snapshot and glibc changes
4d9b7d
4d9b7d
* Fri Jan  6 2006 Tim Waugh <twaugh@redhat.com> 1.3.2-23
4d9b7d
- Rebuild against new opensp.
4d9b7d
4d9b7d
* Mon Dec 19 2005 Tim Waugh <twaugh@redhat.com> 1.3.2-22
4d9b7d
- Fix SOC files.
4d9b7d
- Quieten scriptlets.
4d9b7d
4d9b7d
* Mon Dec 19 2005 Tim Waugh <twaugh@redhat.com> 1.3.2-21
4d9b7d
- Fix location of catalog.
4d9b7d
4d9b7d
* Tue Dec 13 2005 Tim Waugh <twaugh@redhat.com> 1.3.2-20
4d9b7d
- Use --enable-splibdir to prevent ambiguity.
4d9b7d
- Move 'install-catalog --remove' to %%preun section (bug #60409).
4d9b7d
4d9b7d
* Thu Dec  8 2005 Terje Bless <link@pobox.com> - 1.3.2-19
4d9b7d
- Drop -devel subpackage.
4d9b7d
4d9b7d
* Sun Dec  4 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.3.2-18
4d9b7d
- Really BuildRequire opensp-devel.
4d9b7d
- Clean up unneeded build dependencies and configure options.
4d9b7d
- Drop dependency on docbook-dtds.
4d9b7d
- Fix %%post(un) syntax and catalog installation.
4d9b7d
4d9b7d
* Wed Nov 30 2005 Terje Bless <link@pobox.com> 1.3.2-17
4d9b7d
- Split opensp out into its own package.
4d9b7d
- BuildRequire OpenSP-devel, Require OpenSP.
4d9b7d
- Drop openjade-1.3.1-manpage.patch (it patches opensp, not openjade, and is
4d9b7d
  obsolete with external opensp).
4d9b7d
4d9b7d
* Tue Mar  1 2005 Tim Waugh <twaugh@redhat.com> 1.3.2-16
4d9b7d
- Rebuilt for new GCC.
4d9b7d
4d9b7d
* Wed Feb  9 2005 Tim Waugh <twaugh@redhat.com> 1.3.2-15
4d9b7d
- Rebuilt.
4d9b7d
4d9b7d
* Tue Oct  5 2004 Tim Waugh <twaugh@redhat.com> 1.3.2-14
4d9b7d
- Build requires gettext-devel (bug #134672).
4d9b7d
4d9b7d
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
4d9b7d
- rebuilt
4d9b7d
4d9b7d
* Fri Mar 19 2004 Tim Waugh <twaugh@redhat.com> 1.3.2-11.2
4d9b7d
- Rebuilt.
4d9b7d
4d9b7d
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
4d9b7d
- rebuilt
4d9b7d
4d9b7d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
4d9b7d
- rebuilt
4d9b7d
4d9b7d
* Sat Jan 31 2004 Tim Waugh <twaugh@redhat.com> 1.3.2-10
4d9b7d
- More C++ fixes (for GCC 3.4).
4d9b7d
4d9b7d
* Thu Dec  4 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-9
4d9b7d
- No longer need httphost patch.
4d9b7d
4d9b7d
* Mon Oct 20 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-8
4d9b7d
- Rebuilt.
4d9b7d
4d9b7d
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de> 1.3.2-7
4d9b7d
- do not link against -lnsl
4d9b7d
4d9b7d
* Thu Aug  7 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-6
4d9b7d
- Rebootstrap to create a libtool that actually works.
4d9b7d
4d9b7d
* Wed Aug  6 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-5
4d9b7d
- Rebuilt.
4d9b7d
4d9b7d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 1.3.2-4
4d9b7d
- rebuilt
4d9b7d
4d9b7d
* Thu May 22 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-3
4d9b7d
- Fixes for GCC 3.3.
4d9b7d
- Use --parents for %%doc.
4d9b7d
4d9b7d
* Tue Mar 18 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-2
4d9b7d
- Provide sgml2xml man page (bug #83759).
4d9b7d
- Add devel subpackage.
4d9b7d
4d9b7d
* Fri Mar 14 2003 Tim Waugh <twaugh@redhat.com> 1.3.2-1
4d9b7d
- OpenSP 1.5, openjade 1.3.2.
4d9b7d
- Renumber patches.
4d9b7d
4d9b7d
* Thu Feb 13 2003 Elliot Lee <sopwith@redhat.com> 1.3.1-13
4d9b7d
- Add openjade-ppc64.patch
4d9b7d
4d9b7d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
4d9b7d
- rebuilt
4d9b7d
4d9b7d
* Tue Jan  7 2003 Jeff Johnson <jbj@redhat.com> 1.3.1-11
4d9b7d
- don't include -debuginfo files in package.
4d9b7d
4d9b7d
* Thu Dec 12 2002 Tim Waugh <twaugh@redhat.com>
4d9b7d
- Fix typo in description (bug #79395).
4d9b7d
4d9b7d
* Mon Nov  4 2002 Tim Waugh <twaugh@redhat.com> 1.3.1-10
4d9b7d
- Fix DTD retrieval from virtual hosts (bug #77137).
4d9b7d
4d9b7d
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
4d9b7d
- rebuilt with gcc-3.2 (we hope)
4d9b7d
4d9b7d
* Mon Jul 22 2002 Tim Powers <timp@redhat.com> 1.3.1-8
4d9b7d
- rebuild using gcc-3.2-0.1
4d9b7d
4d9b7d
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.3.1-7
4d9b7d
- automated rebuild
4d9b7d
4d9b7d
* Thu Jun 13 2002 Tim Waugh <twaugh@redhat.com> 1.3.1-6
4d9b7d
- Fix sgmlnorm(1) man page (bug #64136).
4d9b7d
- Fix %%files list (bug #64323).
4d9b7d
4d9b7d
* Thu May 23 2002 Tim Powers <timp@redhat.com> 1.3.1-5
4d9b7d
- automated rebuild
4d9b7d
4d9b7d
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 1.3.1-4
4d9b7d
- Avoid bad triggers.
4d9b7d
4d9b7d
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 1.3.1-3
4d9b7d
- Rebuild in new environment.
4d9b7d
4d9b7d
* Mon Jan 28 2002 Tim Waugh <twaugh@redhat.com> 1.3.1-2
4d9b7d
- Ship man pages.
4d9b7d
4d9b7d
* Mon Jan 28 2002 Tim Waugh <twaugh@redhat.com> 1.3.1-1
4d9b7d
- 1.3.1.
4d9b7d
- Patches no longer needed: decl, strdup, foo, size_t, 31525, indev,
4d9b7d
  ligature, twosidestartonright.
4d9b7d
- Updated lt patch.
4d9b7d
4d9b7d
* Mon Jan 14 2002 Tim Waugh <twaugh@redhat.com> 1.3-22
4d9b7d
- Enable build on GCC 3.0 onwards.
4d9b7d
- Run libtoolize.
4d9b7d
4d9b7d
* Fri Nov  2 2001 Tim Waugh <twaugh@redhat.com> 1.3-21
4d9b7d
- Enable HTTP support.  Now a DocBook XML document can be processed by
4d9b7d
  either xsltproc or openjade.
4d9b7d
4d9b7d
* Tue Oct 30 2001 Tim Waugh <twaugh@redhat.com> 1.3-20
4d9b7d
- Apply twosidestartonright patch from Ian Castle.
4d9b7d
4d9b7d
* Thu Oct 11 2001 Tim Waugh <twaugh@redhat.com> 1.3-19
4d9b7d
- s/Copyright:/License:/
4d9b7d
- Use %%{_tmppath}.
4d9b7d
- Fix up libtool libraries (bug #46212).
4d9b7d
4d9b7d
* Wed Sep 12 2001 Tim Powers <timp@redhat.com> 1.3-18
4d9b7d
- rebuild with new gcc and binutils
4d9b7d
4d9b7d
* Fri Jun 15 2001 Tim Waugh <twaugh@redhat.com> 1.3-17
4d9b7d
- Apply patch from CVS to break up unintentional ligatures (bugs #11497,
4d9b7d
  #11779)
4d9b7d
4d9b7d
* Mon Jun  4 2001 Tim Waugh <twaugh@redhat.com> 1.3-16
4d9b7d
- Apply the iNdev openjade-1.3.patch patch.
4d9b7d
4d9b7d
* Tue May 29 2001 Tim Waugh <twaugh@redhat.com> 1.3-15
4d9b7d
- ldconfig (bug #32824).
4d9b7d
- Fix up some libtool problems.
4d9b7d
4d9b7d
* Fri Apr 27 2001 Bill Nottingham <notting@redhat.com> 1.3-14
4d9b7d
- rebuild for C++ exception handling on ia64
4d9b7d
- build with optimization on ia64
4d9b7d
4d9b7d
* Tue Mar 13 2001 Tim Waugh <twaugh@redhat.com>
4d9b7d
- Avoid creating bogus TeX output for section headings containing
4d9b7d
  special characters (#bug 31525).
4d9b7d
4d9b7d
* Mon Jan 22 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4d9b7d
- Apply original autoconf patch to s390 s390x only. This patch can
4d9b7d
  be deleted once s390* uses a current compiler.
4d9b7d
4d9b7d
* Thu Jan 19 2001 Tim Waugh <twaugh@redhat.com>
4d9b7d
- Don't conflict with stylesheets; require sgml-common >= 0.5 instead.
4d9b7d
- Revert autoconf change, as it's still broken.
4d9b7d
4d9b7d
* Wed Jan 17 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4d9b7d
- fix this autoconf macro to work on all archs :-)
4d9b7d
4d9b7d
* Wed Jan 17 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4d9b7d
- apply patch from Fritz Elfert <felfert@to.com>
4d9b7d
	- removed explicit stripping
4d9b7d
	- Added autoconf macro for correctly recognizing if size_t
4d9b7d
	  is unsigned int
4d9b7d
4d9b7d
* Tue Jan 16 2001 Tim Waugh <twaugh@redhat.com>
4d9b7d
- Default catalog file is /etc/sgml/catalog.
4d9b7d
4d9b7d
* Mon Jan 08 2001 Tim Waugh <twaugh@redhat.com>
4d9b7d
- Conflict with stylesheets (new-trials location changes).
4d9b7d
- /usr/lib/sgml -> /usr/share/sgml/%%{name}-%%{version}.
4d9b7d
- Remove %%post and %%postun.
4d9b7d
4d9b7d
* Wed Oct 18 2000 Matt Wilson <msw@redhat.com>
4d9b7d
- rebuilt against g++-2.96-60, fixes jade on alpha
4d9b7d
4d9b7d
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
4d9b7d
- automatic rebuild
4d9b7d
4d9b7d
* Tue Jul  4 2000 Jakub Jelinek <jakub@redhat.com>
4d9b7d
- Rebuild with new C++
4d9b7d
4d9b7d
* Wed May 31 2000 Matt Wilson <msw@redhat.com>
4d9b7d
- fix several C++ build problems (declarations)
4d9b7d
- build against new libstdc++
4d9b7d
4d9b7d
* Wed May 17 2000 Matt Wilson <msw@redhat.com>
4d9b7d
- build with -O0 on alpha
4d9b7d
- fix -j testing
4d9b7d
4d9b7d
* Thu May  5 2000 Bill Nottingham <notting@redhat.com>
4d9b7d
- openjade is maintained, and actually builds. Let's try that.
4d9b7d
4d9b7d
* Thu Mar  9 2000 Bill Nottingham <notting@redhat.com>
4d9b7d
- this package is way too huge. strip *everything*
4d9b7d
4d9b7d
* Mon Feb 21 2000 Matt Wilson <msw@redhat.com>
4d9b7d
- build with CXXFLAGS="-O2 -ggdb" to work around segfault on alpha
4d9b7d
4d9b7d
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
4d9b7d
- strip binaries
4d9b7d
4d9b7d
* Wed Jan  5 2000 Bill Nottingham <notting@redhat.com>
4d9b7d
- sanitize spec file some
4d9b7d
4d9b7d
* Tue Aug 17 1999 Tim Powers <timp@redhat.com>
4d9b7d
- fixed conflict problem with sgml-tools
4d9b7d
4d9b7d
* Sat Jul 17 1999 Tim Powers <timp@redhat.com>
4d9b7d
- changed buildroot path to /var/tmp
4d9b7d
- rebuilt for 6.1
4d9b7d
4d9b7d
* Fri Apr 23 1999 Michael K. Johnson <johnsonm@redhat.com>
4d9b7d
- quiet scripts
4d9b7d
4d9b7d
* Thu Apr 23 1999 Owen Taylor <otaylor@redhat.com>
4d9b7d
- Made requires for sgml-common into prereq