4fb3b7
Summary: A documentation system for C/C++
4fb3b7
Name:    doxygen
4fb3b7
Epoch:   1
4fb3b7
Version: 1.8.5
4fb3b7
Release: 4%{?dist}
4fb3b7
4fb3b7
# No version is specified.
4fb3b7
License: GPL+
4fb3b7
Url: http://www.stack.nl/~dimitri/doxygen/index.html
4fb3b7
Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz
4fb3b7
# this icon is part of kdesdk
4fb3b7
Source1: doxywizard.png
4fb3b7
Source2: doxywizard.desktop
4fb3b7
4fb3b7
Patch1: doxygen-1.8.5-config.patch
4fb3b7
Patch2: doxygen-1.8.5-html_timestamp_default_false.patch 
4fb3b7
Patch3: doxygen-1.8.3-multilib.patch
4fb3b7
Patch4: doxygen-1.8.5-bz#1483569.patch
4fb3b7
Patch5: doxygen-1.8.5-CVE-2016-10245-cross-site-scripting.patch
4fb3b7
4fb3b7
BuildRequires: perl
4fb3b7
BuildRequires: tex(dvips)
4fb3b7
BuildRequires: tex(latex)
4fb3b7
# arg, no safe/virtual provides for these
4fb3b7
BuildRequires: /usr/bin/epstopdf
4fb3b7
# Work around strange dependences in epstopdf packages (RHBZ#991699)
4fb3b7
BuildRequires: texlive-epstopdf
4fb3b7
BuildRequires: ghostscript
4fb3b7
BuildRequires: gettext
4fb3b7
BuildRequires: flex
4fb3b7
BuildRequires: bison
4fb3b7
BuildRequires: desktop-file-utils
4fb3b7
4fb3b7
%description
4fb3b7
Doxygen can generate an online class browser (in HTML) and/or a
4fb3b7
reference manual (in LaTeX) from a set of documented source files. The
4fb3b7
documentation is extracted directly from the sources. Doxygen can
4fb3b7
also be configured to extract the code structure from undocumented
4fb3b7
source files.
4fb3b7
4fb3b7
%package doxywizard
4fb3b7
Summary: A GUI for creating and editing configuration files
4fb3b7
Requires: %{name} = %{epoch}:%{version}-%{release}
4fb3b7
BuildRequires: qt4-devel
4fb3b7
%description doxywizard
4fb3b7
Doxywizard is a GUI for creating and editing configuration files that
4fb3b7
are used by doxygen.
4fb3b7
4fb3b7
%package latex
4fb3b7
Summary: Support for producing latex/pdf output from doxygen
4fb3b7
Requires: %{name} = %{epoch}:%{version}-%{release}
4fb3b7
Requires: tex(latex)
4fb3b7
%if 0%{?fedora} > 17 || 0%{?rhel} > 6
4fb3b7
Requires: tex(multirow.sty)
4fb3b7
Requires: tex(sectsty.sty)
4fb3b7
Requires: tex(tocloft.sty)
4fb3b7
Requires: tex(xtab.sty)
4fb3b7
%endif
4fb3b7
%description latex
4fb3b7
%{summary}.
4fb3b7
4fb3b7
4fb3b7
%prep
4fb3b7
%setup -q
4fb3b7
4fb3b7
%patch1 -p1 -b .config
4fb3b7
%patch2 -p1 -b .html_timestamp_default_false
4fb3b7
%patch3 -p1 -b .multilib
4fb3b7
%patch4 -p1 -b .bz#1483569-incorrect-processing-of-code-blocks
4fb3b7
%patch5 -p1 -b .CVE-2016-10245-cross-site-scripting 
4fb3b7
4fb3b7
# convert into utf-8
4fb3b7
iconv --from=ISO-8859-1 --to=UTF-8 LANGUAGE.HOWTO > LANGUAGE.HOWTO.new
4fb3b7
touch -r LANGUAGE.HOWTO LANGUAGE.HOWTO.new
4fb3b7
mv LANGUAGE.HOWTO.new LANGUAGE.HOWT
4fb3b7
4fb3b7
4fb3b7
%build
4fb3b7
unset QTDIR
4fb3b7
4fb3b7
# not autoconf-based, can't use %%configure macro
4fb3b7
./configure \
4fb3b7
   --prefix %{_prefix} \
4fb3b7
   --shared \
4fb3b7
   --with-doxywizard \
4fb3b7
   --release
4fb3b7
4fb3b7
# workaround for "Error: operand out of range", language.cpp needs to be splitted
4fb3b7
%ifarch ppc64
4fb3b7
make -C src Makefile.libdoxygen
4fb3b7
sed -i -e "s|-o ../objects/language.o|-fno-merge-constants -fsection-anchors -o ../objects/language.o|" src/Makefile.libdoxygen
4fb3b7
%endif
4fb3b7
4fb3b7
make %{?_smp_mflags} all
4fb3b7
make docs
4fb3b7
4fb3b7
4fb3b7
%install
4fb3b7
make install DESTDIR=%{buildroot}
4fb3b7
make doxywizard_install DESTDIR=%{buildroot}
4fb3b7
4fb3b7
install -m644 -p -D %{SOURCE1} %{buildroot}%{_datadir}/pixmaps/doxywizard.png
4fb3b7
install -m644 -p doc/doxywizard.1 %{buildroot}%{_mandir}/man1/
4fb3b7
4fb3b7
desktop-file-install \
4fb3b7
   --dir=%{buildroot}%{_datadir}/applications %{SOURCE2}
4fb3b7
4fb3b7
4fb3b7
%files
4fb3b7
%doc LANGUAGE.HOWTO README.md examples
4fb3b7
%doc html
4fb3b7
%{_bindir}/doxygen
4fb3b7
%{_mandir}/man1/doxygen.1*
4fb3b7
4fb3b7
%files doxywizard
4fb3b7
%{_bindir}/doxywizard
4fb3b7
%{_mandir}/man1/doxywizard*
4fb3b7
%{_datadir}/applications/doxywizard.desktop
4fb3b7
%{_datadir}/pixmaps/doxywizard.png
4fb3b7
4fb3b7
%files latex
4fb3b7
# intentionally left blank
4fb3b7
4fb3b7
4fb3b7
%changelog
4fb3b7
* Mon Jul 29 2019 Than Ngo <than@redhat.com> - 1:1.8.5-4
4fb3b7
- Resolves: #1483569, incorrect processing of code blocks
4fb3b7
- Resolves: #1724173 - CVE-2016-10245, cross-site scripting
4fb3b7
4fb3b7
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:1.8.5-3
4fb3b7
- Mass rebuild 2014-01-24
4fb3b7
4fb3b7
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:1.8.5-2
4fb3b7
- Mass rebuild 2013-12-27
4fb3b7
4fb3b7
* Wed Aug 28 2013 Than Ngo <than@redhat.com> - 1:1.8.5-1
4fb3b7
- 1.8.5
4fb3b7
4fb3b7
* Thu Aug 01 2013 Than Ngo <than@redhat.com> - 1:1.8.4-3
4fb3b7
- backport upstream patches to fix issues:
4fb3b7
   * Generated XML is malformed
4fb3b7
   * Missing space before optional option in method argument list
4fb3b7
   * Closing ) of function in function documentation is in wrong color
4fb3b7
   * Segmentation fault parsing a fortran file
4fb3b7
4fb3b7
* Mon Jun 24 2013 Than Ngo <than@redhat.com> - 1:1.8.4-2
4fb3b7
- backport upstream patch to fix endless loop
4fb3b7
4fb3b7
* Tue May 21 2013 Than Ngo <than@redhat.com> - 1:1.8.4-1
4fb3b7
- 1.8.4
4fb3b7
4fb3b7
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.3.1-2
4fb3b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
4fb3b7
4fb3b7
* Tue Jan 22 2013 Than Ngo <than@redhat.com> - 1.8.3.1-1
4fb3b7
- 1.8.3.1
4fb3b7
- fedora/rhel condition
4fb3b7
4fb3b7
* Tue Jan 08 2013 Rex Dieter <rdieter@fedoraproject.org> - 1:1.8.3-3
4fb3b7
- -latex subpkg (#892288)
4fb3b7
- .spec cleanup
4fb3b7
4fb3b7
* Thu Jan 03 2013 Rex Dieter <rdieter@fedoraproject.org> - 1:1.8.3-2
4fb3b7
- doxygen is missing dependencies for texlive update (#891452)
4fb3b7
- doxywizard: tighten dep on main pkg
4fb3b7
4fb3b7
* Wed Jan 02 2013 Than Ngo <than@redhat.com> - 1:1.8.3-1
4fb3b7
- 1.8.3
4fb3b7
4fb3b7
* Mon Aug 13 2012 Than Ngo <than@redhat.com> - 1:1.8.2-1
4fb3b7
- 1.8.2
4fb3b7
4fb3b7
* Mon Jul 30 2012 Than Ngo <than@redhat.com> - 1:1.8.1.2-1
4fb3b7
- 1.8.1.2
4fb3b7
4fb3b7
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1.1-4
4fb3b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4fb3b7
4fb3b7
* Wed Jun 20 2012 Than Ngo <than@redhat.com> - 1:1.8.1.1-3
4fb3b7
- bz#832525, fix multilib issue
4fb3b7
4fb3b7
* Wed Jun 13 2012 Rex Dieter <rdieter@fedoraproject.org> 1:1.8.1.1-2
4fb3b7
- make HTML_TIMESTAMP default FALSE
4fb3b7
4fb3b7
* Mon Jun 11 2012 Than Ngo <than@redhat.com> - 1:1.8.1.1-1
4fb3b7
- 1.8.1.1
4fb3b7
4fb3b7
* Wed Jun 06 2012 Than Ngo <than@redhat.com> - 1:1.8.1-1
4fb3b7
- 1.8.1
4fb3b7
4fb3b7
* Mon Feb 27 2012 Than Ngo <than@redhat.com> - 1:1.8.0-1
4fb3b7
- 1.8.0
4fb3b7
4fb3b7
* Wed Jan 18 2012 Than Ngo <than@redhat.com> - 1:1.7.6.1-2
4fb3b7
- bz#772523, add desktop file
4fb3b7
4fb3b7
* Fri Dec 16 2011 Than Ngo <than@redhat.com> - 1:1.7.6.1-1
4fb3b7
- 1.7.6.1
4fb3b7
4fb3b7
* Tue Dec 06 2011 Than Ngo <than@redhat.com> - 1:1.7.6-1
4fb3b7
- 1.7.6
4fb3b7
4fb3b7
* Tue Nov 08 2011 Than Ngo <than@redhat.com> - 1:1.7.5.1-1
4fb3b7
- 1.7.5.1
4fb3b7
4fb3b7
* Tue Aug 23 2011 Than Ngo <than@redhat.com> - 1:1.7.5-1
4fb3b7
- 1.7.5
4fb3b7
4fb3b7
* Mon Jun 27 2011 Than Ngo <than@redhat.com> - 1:1.7.4-2
4fb3b7
- bz#688684, apply patch to fix crash when not generating man format
4fb3b7
4fb3b7
* Tue Mar 29 2011 Than Ngo <than@redhat.com> - 1.7.4-1
4fb3b7
- 1.7.4
4fb3b7
4fb3b7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.3-2
4fb3b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4fb3b7
4fb3b7
* Mon Jan 17 2011 Than Ngo <than@redhat.com> - 1.7.3-1
4fb3b7
- 1.7.3
4fb3b7
- bz#661107
4fb3b7
4fb3b7
* Fri Nov 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.7.2-2
4fb3b7
- Wrong Buildrequire to qt-devel (#651064)
4fb3b7
4fb3b7
* Mon Oct 11 2010 Than Ngo <than@redhat.com> - 1.7.2-1
4fb3b7
- 1.7.2
4fb3b7
4fb3b7
* Wed Sep 08 2010 Than Ngo <than@redhat.com> - 1:1.7.1-2
4fb3b7
- bz#629286, apply patch to fix broken thread handling
4fb3b7
- bz#627553, #define in included file in different directory not handled properly
4fb3b7
- Inherited documentation doesn't work in case of multiple inheritance
4fb3b7
4fb3b7
* Mon Jul 19 2010 Than Ngo <than@redhat.com> - 1.7.1-1
4fb3b7
- 1.7.1
4fb3b7
4fb3b7
* Fri Feb 12 2010 Than Ngo <than@redhat.com> - 1.6.2-1.svn20100208
4fb3b7
- fix #555526, snapshot 1.6.2-20100208
4fb3b7
4fb3b7
* Mon Jan 04 2010 Than Ngo <than@redhat.com> - 1:1.6.2-1
4fb3b7
- 1.6.2
4fb3b7
4fb3b7
* Fri Dec 18 2009 Than Ngo <than@redhat.com> - 1:1.6.1-4
4fb3b7
- drop _default_patch_fuzz
4fb3b7
4fb3b7
* Fri Dec 18 2009 Than Ngo <than@redhat.com> - 1:1.6.1-3
4fb3b7
- bz#225709, merged review
4fb3b7
4fb3b7
* Fri Dec 11 2009 Than Ngo <than@redhat.com> - 1:1.6.1-2
4fb3b7
- bz#225709, merged review 
4fb3b7
4fb3b7
* Tue Aug 25 2009 Than Ngo <than@redhat.com> - 1.6.1-1
4fb3b7
- 1.6.1
4fb3b7
4fb3b7
* Mon Aug 24 2009 Than Ngo <than@redhat.com> - 1.6.0-2
4fb3b7
- fix #516339, allow to enable/disable timstamp to avoid the multilib issue
4fb3b7
  HTMP_TIMESTAMP is disable by default
4fb3b7
4fb3b7
* Fri Aug 21 2009 Than Ngo <than@redhat.com> - 1.6.0-1
4fb3b7
- 1.6.0
4fb3b7
4fb3b7
* Mon Aug 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 1:1.5.9-3
4fb3b7
- Convert specfile to UTF-8.
4fb3b7
4fb3b7
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.9-2
4fb3b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4fb3b7
4fb3b7
* Fri Jul 03 2009 Than Ngo <than@redhat.com> - 1.5.9-1
4fb3b7
- 1.5.9
4fb3b7
4fb3b7
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.8-2
4fb3b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4fb3b7
4fb3b7
* Thu Feb 05 2009 Than Ngo <than@redhat.com> 1.5.8-1
4fb3b7
- 1.5.8
4fb3b7
4fb3b7
* Mon Oct 06 2008 Than Ngo <than@redhat.com> 1.5.7.1-1
4fb3b7
- 1.5.7.1
4fb3b7
4fb3b7
* Wed Jul 16 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.6-3
4fb3b7
- fix license tag
4fb3b7
4fb3b7
* Wed May 21 2008 Than Ngo <than@redhat.com> 1.5.6-2
4fb3b7
- rebuild
4fb3b7
4fb3b7
* Mon May 19 2008 Than Ngo <than@redhat.com> 1.5.6-1
4fb3b7
- 1.5.6
4fb3b7
4fb3b7
* Fri Mar 14 2008 Than Ngo <than@redhat.com> 1.5.5-3
4fb3b7
- apply patch to not break partial include paths, thanks to Tim Niemueller
4fb3b7
4fb3b7
* Wed Feb 20 2008 Than Ngo <than@redhat.com> 1.5.5-2
4fb3b7
- apply patch to make doxygen using system libpng/zlib
4fb3b7
4fb3b7
* Fri Feb 15 2008 Than Ngo <than@redhat.com> 1.5.5-1
4fb3b7
- 1.5.5
4fb3b7
4fb3b7
* Wed Nov 28 2007 Than Ngo <than@redhat.com> 1.5.4-1
4fb3b7
- 1.5.4
4fb3b7
4fb3b7
* Fri Aug 10 2007 Than Ngo <than@redhat.com> - 1:1.5.3-1
4fb3b7
- 1.5.3
4fb3b7
4fb3b7
* Thu Apr 12 2007 Than Ngo <than@redhat.com> - 1:1.5.2-1
4fb3b7
- 1.5.2
4fb3b7
4fb3b7
* Fri Nov 03 2006 Than Ngo <than@redhat.com> 1:1.5.1-2
4fb3b7
- 1.5.1
4fb3b7
4fb3b7
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.7-1.1
4fb3b7
- rebuild
4fb3b7
4fb3b7
* Mon Jun 12 2006 Than Ngo <than@redhat.com> 1:1.4.7-1
4fb3b7
- update to 1.4.7
4fb3b7
4fb3b7
* Thu Jun 08 2006 Than Ngo <than@redhat.com> 1:1.4.6-5
4fb3b7
- fix build problem in mock #193358 
4fb3b7
4fb3b7
* Fri May 12 2006 Than Ngo <than@redhat.com> 1:1.4.6-4
4fb3b7
- apply patch to fix Doxygen crash on empty file #191392 
4fb3b7
- html docs #187177 
4fb3b7
4fb3b7
* Wed Mar 08 2006 Than Ngo <than@redhat.com> 1:1.4.6-3
4fb3b7
- fix typo bug #184400
4fb3b7
4fb3b7
* Mon Mar 06 2006 Than Ngo <than@redhat.com> 1:1.4.6-2
4fb3b7
- fix build problem #184042
4fb3b7
4fb3b7
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.6-1.2
4fb3b7
- bump again for double-long bug on ppc(64)
4fb3b7
4fb3b7
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.6-1.1
4fb3b7
- rebuilt for new gcc4.1 snapshot and glibc changes
4fb3b7
4fb3b7
* Tue Jan 31 2006 Than Ngo <than@redhat.com> 1.4.6-1
4fb3b7
- 1.4.6
4fb3b7
4fb3b7
* Mon Dec 19 2005 Than Ngo <than@redhat.com> 1.4.5-3
4fb3b7
- apply patch to fix build problem with gcc-4.1
4fb3b7
4fb3b7
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
4fb3b7
- rebuilt
4fb3b7
4fb3b7
* Fri Nov 18 2005 Bill Nottingham <notting@redhat.com>
4fb3b7
- fix references to /usr/X11R6
4fb3b7
4fb3b7
* Sat Oct 15 2005 Florian La Roche <laroche@redhat.com>
4fb3b7
- 1.4.5
4fb3b7
4fb3b7
* Mon Sep 19 2005 Than Ngo <than@redhat.com> 1:1.4.4-2
4fb3b7
- move doxywizard man page to subpackge doxywizard
4fb3b7
4fb3b7
* Thu Jul 21 2005 Than Ngo <than@redhat.com> 1:1.4.4-1
4fb3b7
- update to 1.4.4
4fb3b7
4fb3b7
* Tue Jun 14 2005 Than Ngo <than@redhat.com> 1.4.3-1
4fb3b7
- 1.4.3
4fb3b7
4fb3b7
* Thu Mar 31 2005 Than Ngo <than@redhat.com> 1:1.4.2-1
4fb3b7
- 1.4.2
4fb3b7
4fb3b7
* Fri Mar 04 2005 Than Ngo <than@redhat.com> 1:1.4.1-2
4fb3b7
- rebuilt against gcc-4
4fb3b7
4fb3b7
* Wed Jan 19 2005 Than Ngo <than@redhat.com> 1:1.4.1-1
4fb3b7
- update to 1.4.1
4fb3b7
4fb3b7
* Sun Oct 10 2004 Than Ngo <than@redhat.com> 1:1.3.9.1-1
4fb3b7
- update to 1.3.9.1
4fb3b7
4fb3b7
* Wed Oct 06 2004 Than Ngo <than@redhat.com> 1:1.3.9-1
4fb3b7
- update to 1.3.9
4fb3b7
4fb3b7
* Sun Jul 25 2004 Than Ngo <than@redhat.com> 1:1.3.8-1
4fb3b7
- update to 1.3.8
4fb3b7
4fb3b7
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
4fb3b7
- rebuilt
4fb3b7
4fb3b7
* Tue May 11 2004 Than Ngo <than@redhat.com> 1.3.7-1
4fb3b7
- update to 1.3.7, bug #119340
4fb3b7
4fb3b7
* Sun Apr 04 2004 Than Ngo <than@redhat.com> 1:1.3.6-2
4fb3b7
- fix qt-mt linking problem
4fb3b7
4fb3b7
* Thu Feb 26 2004 Than Ngo <than@redhat.com> 1:1.3.6-1
4fb3b7
- update to 1.3.6
4fb3b7
- added more buildrequires, #110752
4fb3b7
4fb3b7
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
4fb3b7
- rebuilt
4fb3b7
4fb3b7
* Wed Dec 17 2003 Than Ngo <than@redhat.com> 1:1.3.5-1
4fb3b7
- 1.3.5 release
4fb3b7
4fb3b7
* Fri Sep 26 2003 Harald Hoyer <harald@redhat.de> 1:1.3.4-1
4fb3b7
- update to 1.3.4
4fb3b7
- doxsearch was removed
4fb3b7
4fb3b7
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
4fb3b7
- allow compiling without qt/doxywizard
4fb3b7
4fb3b7
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
4fb3b7
- rebuilt
4fb3b7
4fb3b7
* Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
4fb3b7
- add explicit epoch's where needed.
4fb3b7
4fb3b7
* Tue May  6 2003 Than Ngo <than@redhat.com> 1.3-1
4fb3b7
- 1.3
4fb3b7
4fb3b7
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
4fb3b7
- rebuilt
4fb3b7
4fb3b7
* Fri Dec 27 2002 Than Ngo <than@redhat.com> 1.2.18-2
4fb3b7
- use gnu install
4fb3b7
4fb3b7
* Sat Nov  9 2002 Than Ngo <than@redhat.com> 1.2.18-1.2
4fb3b7
- fix some build problem
4fb3b7
4fb3b7
* Tue Oct 15 2002 Than Ngo <than@redhat.com> 1.2.18-1
4fb3b7
- 1.2.18
4fb3b7
4fb3b7
* Wed Aug 28 2002 Than Ngo <than@redhat.com> 1.2.17-1
4fb3b7
- 1.2.17 fixes many major bugs
4fb3b7
4fb3b7
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
4fb3b7
- rebuilt with gcc-3.2 (we hope)
4fb3b7
4fb3b7
* Mon Jul 22 2002 Tim Powers <timp@redhat.com>
4fb3b7
- rebuild using gcc-3.2-0.1
4fb3b7
4fb3b7
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
4fb3b7
- automated rebuild
4fb3b7
4fb3b7
* Thu May 23 2002 Tim Powers <timp@redhat.com>
4fb3b7
- automated rebuild
4fb3b7
4fb3b7
* Tue Apr 16 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.13-5
4fb3b7
- rebuild against qt 3.0.3-10
4fb3b7
4fb3b7
* Fri Mar  8 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.13-4
4fb3b7
- rebuild against qt 3.0.2
4fb3b7
4fb3b7
* Tue Feb 26 2002 Than Ngo <than@redhat.com> 1.2.14-2
4fb3b7
- rebuild against qt 2.3.2
4fb3b7
4fb3b7
* Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.14-1
4fb3b7
- 1.2.14
4fb3b7
4fb3b7
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
4fb3b7
- automated rebuild
4fb3b7
4fb3b7
* Sun Jan 06 2002 Than Ngo <than@redhat.com> 1.2.13.1-1
4fb3b7
- update to 1.2.13.1
4fb3b7
- fixed build doxywizard with qt3
4fb3b7
4fb3b7
* Sun Dec 30 2001 Jeff Johnson <jbj@redhat.com> 1.2.13-1
4fb3b7
- update to 1.2.13
4fb3b7
4fb3b7
* Sun Nov 18 2001 Than Ngo <than@redhat.com> 1.2.12-1
4fb3b7
- update to 1.2.12
4fb3b7
- s/Copyright/License
4fb3b7
4fb3b7
* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
4fb3b7
- rebuild with new gcc and binutils
4fb3b7
4fb3b7
* Wed Jun 13 2001 Than Ngo <than@redhat.com>
4fb3b7
- update tp 1.2.8.1
4fb3b7
- make doxywizard as separat package
4fb3b7
- fix to use install as default
4fb3b7
4fb3b7
* Tue Jun 05 2001 Than Ngo <than@redhat.com>
4fb3b7
- update to 1.2.8
4fb3b7
4fb3b7
* Tue May 01 2001 Than Ngo <than@redhat.com>
4fb3b7
- update to 1.2.7
4fb3b7
- clean up specfile
4fb3b7
- patch to use RPM_OPT_FLAG
4fb3b7
4fb3b7
* Wed Mar 14 2001 Jeff Johnson <jbj@redhat.com>
4fb3b7
- update to 1.2.6
4fb3b7
4fb3b7
* Wed Feb 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
4fb3b7
- rebuild
4fb3b7
4fb3b7
* Tue Dec 26 2000 Than Ngo <than@redhat.com>
4fb3b7
- update to 1.2.4
4fb3b7
- remove excludearch ia64
4fb3b7
- bzip2 sources
4fb3b7
4fb3b7
* Mon Dec 11 2000 Than Ngo <than@redhat.com>
4fb3b7
- rebuild with the fixed fileutils
4fb3b7
4fb3b7
* Mon Oct 30 2000 Jeff Johnson <jbj@redhat.com>
4fb3b7
- update to 1.2.3.
4fb3b7
4fb3b7
* Sun Oct  8 2000 Jeff Johnson <jbj@redhat.com>
4fb3b7
- update to 1.2.2.
4fb3b7
- enable doxywizard.
4fb3b7
4fb3b7
* Sat Aug 19 2000 Preston Brown <pbrown@redhat.com>
4fb3b7
- 1.2.1 is latest stable, so we upgrade before Winston is released.
4fb3b7
4fb3b7
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
4fb3b7
- automatic rebuild
4fb3b7
4fb3b7
* Tue Jul  4 2000 Jakub Jelinek <jakub@redhat.com>
4fb3b7
- Rebuild with new C++
4fb3b7
4fb3b7
* Fri Jun 30 2000 Florian La Roche <laroche@redhat.de>
4fb3b7
- fix QTDIR detection
4fb3b7
4fb3b7
* Fri Jun 09 2000 Preston Brown <pbrown@redhat.com>
4fb3b7
- compile on x86 w/o optimization, revert when compiler fixed!!
4fb3b7
4fb3b7
* Wed Jun 07 2000 Preston Brown <pbrown@redhat.com>
4fb3b7
- use newer RPM macros
4fb3b7
4fb3b7
* Tue Jun  6 2000 Jeff Johnson <jbj@redhat.com>
4fb3b7
- add to distro.
4fb3b7
4fb3b7
* Tue May  9 2000 Tim Powers <timp@redhat.com>
4fb3b7
- rebuilt for 7.0
4fb3b7
4fb3b7
* Wed Feb  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4fb3b7
- recompile with current Qt (2.1.0/1.45)
4fb3b7
4fb3b7
* Wed Jan  5 2000 Jeff Johnson <jbj@redhat.com>
4fb3b7
- update to 1.0.0.
4fb3b7
- recompile with qt-2.0.1 if available.
4fb3b7
- relocatable package.
4fb3b7
4fb3b7
* Mon Nov  8 1999 Tim Powers <timp@redhat.com>
4fb3b7
-updated to 0.49-991106
4fb3b7
4fb3b7
* Tue Jul 13 1999 Tim Powers <timp@redhat.com>
4fb3b7
- updated source
4fb3b7
- cleaned up some stuff in the spec file
4fb3b7
4fb3b7
* Thu Apr 22 1999 Jeff Johnson <jbj@redhat.com>
4fb3b7
- Create Power Tools 6.0 package.