osloup / rpms / openjade

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