Blame SPECS/tk.spec

785688
%define majorver 8.5
785688
%define vers %{majorver}.13
785688
785688
Summary: The graphical toolkit for the Tcl scripting language
785688
Name: tk
785688
Version: %{vers}
64e46f
Release: 4%{?dist}
785688
Epoch:   1
785688
License: TCL
785688
Group: Development/Languages
785688
URL: http://tcl.sourceforge.net
785688
Source0: http://download.sourceforge.net/sourceforge/tcl/%{name}%{version}-src.tar.gz
785688
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
785688
Requires: tcl = %{epoch}:%{version}
785688
Requires(post): /sbin/ldconfig
785688
Requires(postun): /sbin/ldconfig
785688
BuildRequires: tcl-devel = %{epoch}:%{version}, autoconf
785688
BuildRequires: libX11-devel
785688
BuildRequires: libXft-devel
785688
# panedwindow.n from itcl conflicts
785688
Conflicts: itcl <= 3.2
785688
Obsoletes: tile <= 0.8.2
785688
Provides: tile = 0.8.2
785688
Patch1: tk8.5-make.patch
785688
Patch2: tk-8.5.10-conf.patch
785688
# this patch isn't needed since tk8.6b1
785688
Patch3: tk-seg_input.patch
785688
# fix implicit linkage of freetype that breaks xft detection (#677692)
785688
Patch4: tk-8.5.9-fix-xft.patch
785688
785688
%description
785688
When paired with the Tcl scripting language, Tk provides a fast and powerful
785688
way to create cross-platform GUI applications.
785688
785688
%package devel
785688
Summary: Tk graphical toolkit development files
785688
Group: Development/Languages
785688
Requires: %{name} = %{epoch}:%{version}-%{release}
785688
Requires: tcl-devel = %{epoch}:%{version}
785688
Requires: libX11-devel libXft-devel
785688
785688
%description devel
785688
When paired with the Tcl scripting language, Tk provides a fast and powerful
785688
way to create cross-platform GUI applications.
785688
785688
The package contains the development files and man pages for tk.
785688
785688
%prep
785688
%setup -n %{name}%{version} -q
785688
785688
%patch1 -p1 -b .make
785688
%patch2 -p1 -b .conf
785688
%patch3 -p1 -b .seg
785688
%patch4 -p1 -b .fix-xft
785688
785688
%build
785688
cd unix
785688
autoconf
785688
%configure
785688
make %{?_smp_mflags} TK_LIBRARY=%{_datadir}/%{name}%{majorver}
785688
785688
%check
785688
# do not run "make test" by default since it requires an X display
785688
%{?_with_check: %define _with_check 1}
785688
%{!?_with_check: %define _with_check 0}
785688
785688
%if %{_with_check}
785688
#  make test
785688
%endif
785688
785688
%install
785688
rm -rf $RPM_BUILD_ROOT
785688
make install -C unix INSTALL_ROOT=$RPM_BUILD_ROOT TK_LIBRARY=%{_datadir}/%{name}%{majorver}
785688
785688
ln -s wish%{majorver} $RPM_BUILD_ROOT%{_bindir}/wish
785688
785688
# for linking with -l%%{name}
785688
ln -s lib%{name}%{majorver}.so $RPM_BUILD_ROOT%{_libdir}/lib%{name}.so
785688
785688
mkdir -p $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/{generic/ttk,unix}
785688
find generic unix -name "*.h" -exec cp -p '{}' $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/'{}' ';'
785688
( cd $RPM_BUILD_ROOT/%{_includedir}
785688
  for i in *.h ; do
785688
    [ -f $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/generic/$i ] && ln -sf ../../$i $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/generic ;
785688
  done
785688
)
785688
785688
# remove buildroot traces
785688
sed -i -e "s|$PWD/unix|%{_libdir}|; s|$PWD|%{_includedir}/%{name}-private|" $RPM_BUILD_ROOT/%{_libdir}/%{name}Config.sh
785688
785688
%clean
785688
rm -rf $RPM_BUILD_ROOT
785688
785688
%pre
785688
[ ! -h %{_prefix}/%{_lib}/%{name}%{majorver} ] || rm %{_prefix}/%{_lib}/%{name}%{majorver}
785688
785688
%post -p /sbin/ldconfig
785688
785688
%postun -p /sbin/ldconfig
785688
785688
%files
785688
%defattr(-,root,root,-)
785688
%{_bindir}/wish*
785688
%{_datadir}/%{name}%{majorver}
785688
%exclude %{_datadir}/%{name}%{majorver}/tkAppInit.c
785688
%{_libdir}/lib%{name}%{majorver}.so
785688
%{_libdir}/%{name}%{majorver}
785688
%{_mandir}/man1/*
785688
%{_mandir}/mann/*
785688
%doc README changes license.terms
785688
785688
%files devel
785688
%defattr(-,root,root)
785688
%{_includedir}/*
785688
%{_libdir}/lib%{name}.so
785688
%{_libdir}/lib%{name}stub%{majorver}.a
785688
%{_libdir}/%{name}Config.sh
785688
%{_mandir}/man3/*
785688
%{_datadir}/%{name}%{majorver}/tkAppInit.c
785688
785688
%changelog
64e46f
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:8.5.13-4
64e46f
- Mass rebuild 2014-01-24
64e46f
64e46f
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:8.5.13-3
64e46f
- Mass rebuild 2013-12-27
64e46f
785688
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.13-2
785688
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
785688
785688
* Mon Nov 12 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.13-1
785688
- New version
785688
  Resolves: rhbz#875830
785688
785688
* Mon Jul 30 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.12-1
785688
- New version
785688
  Resolves: rhbz#843902
785688
785688
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.11-3
785688
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
785688
785688
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.11-2
785688
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
785688
785688
* Tue Nov  8 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.11-1
785688
- New version
785688
785688
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.10-2
785688
- Rebuilt for glibc bug#747377
785688
785688
* Mon Jun 27 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.10-1
785688
- New version
785688
785688
* Thu May 05 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.9-4
785688
- Packaged tkAppInit.c into devel subpackage (#702088)
785688
- Removed spec code for deprecated prolog.ps file (#702088)
785688
- Removed rpmlint warning - macro in comment
785688
785688
* Thu Feb 17 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.9-3
785688
- Fix xft detection (#677692)
785688
785688
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.9-2
785688
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
785688
785688
* Mon Oct 11 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.9-1
785688
- New version 8.5.9
785688
- Updated make patch
785688
- Removed color patch (integrated upstream)
785688
- Removed wmiconphoto-fix patch (integrated upstream)
785688
785688
* Sun Jul 25 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.8-2
785688
- Fixed wm iconphoto #615750
785688
785688
* Thu Mar 18 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.8-1
785688
- Update to 8.5.8
785688
785688
* Fri Feb 26 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.7-4
785688
- Fixed macro/variable conflict in spec
785688
785688
* Wed Dec 9 2009 Nikola Pajkovsky <npajkovs@redhat.com> - 1:8.5.7-3
785688
- Resolves: #545807 - Color hash problem on x86_64
785688
785688
* Tue Aug 11 2009 Nikola Pajkovsky <npajkovs@redhat.com> - 1:8.5.7-2
785688
- Fix Source0 url
785688
785688
* Wed Jul 22 2009 Nikola Pajkovsky <npajkovs@redhat.com> - 1:8.5.7-1
785688
- update to 8.5.7
785688
785688
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.6-4
785688
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
785688
785688
* Mon Feb 23 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-3
785688
- 480742 patch fixes the input method. The reason for this behaviour
785688
 is still unknown.
785688
785688
* Thu Feb 19 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-2
785688
- 486132 add missing requires in tk-devel
785688
785688
* Tue Feb 10 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-1
785688
- update to 8.5.6
785688
785688
* Wed Nov 19 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.5-1
785688
- update to 8.5.5
785688
785688
* Wed Aug  6 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.3-4
785688
- rewrite patch once more - the same way how upstream fix it
785688
785688
* Mon Aug  4 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.3-3
785688
- previous bug - remove my patch, add upstream patch
785688
- Problem is updated xorg, which changed behaviour of GenericEvent
785688
785688
* Tue Jul 29 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.3-2
785688
- fix 456922 - crash gitk resolved
785688
785688
* Fri Jul 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.3-1
785688
- update to 8.5.3
785688
785688
* Mon May 19 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.2-1
785688
- new version tk8.5.2
785688
785688
* Fri May  9 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.1-4
785688
- 445836 added BR (thanks to jamatos)
785688
785688
* Wed Feb 20 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.1-3
785688
- rebuilt without useless patches
785688
785688
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:8.5.1-2
785688
- Autorebuild for GCC 4.3
785688
785688
* Mon Feb 18 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.1-1
785688
- new version tk8.5.1
785688
785688
* Fri Jan 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-4
785688
- attached upstream patch
785688
- similar to CVE-2006-4484, problem with GIF again #430100
785688
785688
* Tue Jan 15 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-3
785688
- wish8.5 is here again for back compatibility
785688
785688
* Sat Jan  5 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-2
785688
- Obsolete the tile package that has been incorporated into the core
785688
  tk source.
785688
785688
* Wed Jan  2 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-1
785688
- upgrade on the 8.5.0
785688
785688
* Mon Sep 17 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-5
785688
- CVE-2007-4851 Tk GIF processing buffer overflow
785688
- Resolves: rhbz#290991
785688
785688
* Fri Aug 31 2007 Jeremy Katz <katzj@redhat.com> - 1:8.4.15-4
785688
- BR gawk to unbreak things
785688
785688
* Thu Aug  9 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-3
785688
- check licence, build for mass rebuild
785688
785688
* Thu Aug  9 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-2
785688
- Resolves: rhbz#251411
785688
785688
* Tue Jul 31 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-1
785688
- Update tk8.4.15
785688
785688
* Thu Feb 20 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-5
785688
- rhbz#226494 review again
785688
785688
* Thu Feb 14 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-4
785688
- rhbz#226494 review
785688
785688
* Sat Feb 10 2007 David Cantrell <dcantrell@redhat.com> - 1:8.4.13-3
785688
- Require correct tcl package on tk
785688
785688
* Sat Feb 10 2007 David Cantrell <dcantrell@redhat.com> - 1:8.4.13-2
785688
- Require correct tk package on tk-devel
785688
785688
* Fri Feb 09 2007 David Cantrell <dcantrell@redhat.com> - 1:8.4.13-1
785688
- Revert to tk-8.4.13 since tcl has been reverted
785688
785688
* Thu Jan 25 2007 Marcela Maslanova <mmaslano@redhat.com> - 8.5a5-1
785688
- update: version 8.5a5
785688
- Resolves: rhbz#160442
785688
785688
* Thu Jul 20 2006 David Cantrell <dcantrell@redhat.com> - 8.4.13-3
785688
- Patch from Dennis Gilmore <dennis@ausil.us> for sparc64 (#199378)
785688
785688
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 8.4.13-2
785688
- rebuild
785688
785688
* Thu Apr 20 2006 David Cantrell <dcantrell@redhat.com> - 8.4.13-1
785688
- Upgraded to Tk 8.4.13
785688
785688
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 8.4.12-1.2
785688
- bump again for double-long bug on ppc(64)
785688
785688
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 8.4.12-1.1
785688
- rebuilt for new gcc4.1 snapshot and glibc changes
785688
785688
* Thu Feb 02 2006 David Cantrell <dcantrell@redhat.com> - 8.4.12-1
785688
- Upgraded to tk-8.4.12
785688
785688
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
785688
- rebuilt
785688
785688
* Tue Nov 15 2005 Warren Togami <wtogami@redhat.com> - 8.4.11-2
785688
- xorg-x11-devel -> libX11-devel
785688
785688
* Fri Jul  1 2005 Jens Petersen <petersen@redhat.com> - 8.4.11-1
785688
- update to 8.4.11 stable release
785688
  - update tk-8.4.4-lib-perm.patch
785688
785688
* Wed Mar  9 2005 Jens Petersen <petersen@redhat.com> - 8.4.9-3
785688
- tk-devel requires tcl-devel and xorg-x11-devel instead of XFree86-devel
785688
- use sed instead of perl for fixing tkConfig.sh
785688
  - buildrequire sed instead of perl
785688
- buildrequire xorg-x11-devel instead of XFree86-devel
785688
- rebuild with gcc 4
785688
785688
* Tue Dec 14 2004 Jens Petersen <petersen@redhat.com> - 8.4.9-2
785688
- move tkConfig.sh into -devel (Axel Thimm, 142724)
785688
785688
* Thu Dec  9 2004 Jens Petersen <petersen@redhat.com> - 8.4.9-1
785688
- latest stable release
785688
785688
* Wed Nov 24 2004 Jens Petersen <petersen@redhat.com> - 8.4.8-1
785688
- update to latest release
785688
785688
* Fri Oct 15 2004 Jens Petersen <petersen@redhat.com> - 8.4.7-2
785688
- move pkgIndex.tcl back into {_libdir}/{name}{majorver} so that multilib
785688
  parallel installs works (135310)
785688
  - drop tk-8.4.5-pkgIndex-loc.patch
785688
  - remove any compat symlink present before installing
785688
  - do not generate compat symlink after installing
785688
785688
* Fri Jul 30 2004 Jens Petersen <petersen@redhat.com> - 8.4.7-1
785688
- update to 8.4.7
785688
  - replace tk-8.4.5-no_rpath.patch with tk-8.4-no_rpath.patch
785688
  - replace tk-8.4.5-autoconf.patch with tk-8.4-autoconf.patch
785688
785688
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
785688
- rebuilt
785688
785688
* Tue May 18 2004 Jeremy Katz <katzj@redhat.com> 8.4.6-2
785688
- rebuild
785688
785688
* Thu May 13 2004 Jens Petersen <petersen@redhat.com> - 8.4.6-1
785688
- update to 8.4.6
785688
785688
* Wed Apr 21 2004 Jens Petersen <petersen@redhat.com> - 8.4.5-8
785688
- obsolete itcl since it also provided panedwindow.n (Warren Togami, 121414)
785688
785688
* Tue Mar 16 2004 Mike A. Harris <mharris@redhat.com> - 8.4.5-7
785688
- Removed Requires: XFree86-libs and replaced with Buildrequires: XFree86-devel
785688
  so that the package is X11 implementation agnostic for the inclusion of
785688
  xorg-x11 (#118482)
785688
- Added Requires(post,postun): /sbin/ldconfig
785688
- Added BuildRequires: perl, as perl is used during install
785688
785688
* Thu Mar 11 2004 Jens Petersen <petersen@redhat.com> - 8.4.5-6
785688
- generate compat symlink instead in post if /usr/lib/tk{majorver}
785688
  does not exist
785688
785688
* Wed Mar 10 2004 Jens Petersen <petersen@redhat.com> - 8.4.5-5
785688
- add tk-8.4.5-autoconf.patch and build with autoconf 2.5x
785688
  (Robert Scheck, #116776)
785688
- add tk-8.4.5-pkgIndex-loc.patch to install pkgIndex.tcl in the script dir
785688
- use {name} throughout for greater portability
785688
- add a "--with check" rpmbuild option
785688
- use "mkdir -p" instead of "mkdirhier" (Robert Scheck, #116774)
785688
- /usr/lib/tk8.4 is now a compat symlink to {_datadir}/tk8.4
785688
- include all the private header files under /usr/include/tk-private
785688
- add doc files
785688
785688
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
785688
- rebuilt
785688
785688
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
785688
- rebuilt
785688
785688
* Fri Dec 12 2003 Jens Petersen <petersen@redhat.com> - 8.4.5-3
785688
- add private header files needed to build tix in {_includedir}/{name}-private
785688
785688
* Mon Dec  1 2003 Thomas Woerner <twoerner@redhat.com> 8.4.5-2
785688
- remove rpath with tk-8.4.5-no_rpath.patch
785688
785688
* Thu Nov 27 2003 Jens Petersen <petersen@redhat.com> - 8.4.5-1
785688
- new package split out from tcltk
785688
- update to tk 8.4.5 (#88429)
785688
- filtered changelog for tk
785688
- buildrequire autoconf213 (#110583) [mvd@mylinux.com.ua]
785688
- remove build remnants from tkConfig.sh
785688
785688
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 8.3.5-92
785688
- rebuild again for #91211
785688
785688
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 8.3.5-91
785688
- rebuild to fix gzipped file md5sums (#91211)
785688
785688
* Fri Jul 04 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-90
785688
- split out devel files from tcl and tk into -devel subpackages (#90087)
785688
785688
* Fri Jan 17 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-85
785688
- add some requires
785688
785688
* Tue Jan 14 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-84
785688
- link all libs with DT_SONAME using tcl.m4 patch (#81297)
785688
- drop synthetic lib provides
785688
- remove obsolete patches from srpm
785688
- update buildrequires
785688
- use buildroot instead of RPM_BUILD_ROOT
785688
- install all man pages under mandir, instead of moving some from /usr/man
785688
- install libtcl and libtk mode 755
785688
- introduce _genfilelist macro for clean single-sweep find filelist generation
785688
  for each package
785688
- use perl to remove buildroot prefix from filelists
785688
785688
* Tue Jan  7 2003 Jeff Johnson <jbj@redhat.com> 8.3.5-80
785688
- rebuild to generate deps for4 DSO's w/o DT_SONAME correctly.
785688
785688
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 8.3.5-79
785688
- set execute bits on library so that requires are generated.
785688
785688
* Tue Dec 10 2002 Jens Petersen <petersen@redhat.com> 8.3.5-78
785688
- make lib symlinks to .so not .so.0
785688
785688
* Mon Dec  9 2002 Jens Petersen <petersen@redhat.com> 8.3.5-76
785688
- make it build on x86_64 (details below)
785688
- don't explicitly update config.{guess,sub} since configure does it for us
785688
- added "--without check" rpmbuild option to disable running tests in future
785688
- build and install tcl and tk with script files under datadir (not libdir)
785688
- generate filelists from datadir and not from mandir from now on
785688
785688
* Tue Dec  3 2002 Jens Petersen <petersen@redhat.com>
785688
- update to tcl-8.3.5, tk-8.3.5, tcl-html-8.3.5
785688
- update url for tcl, tk, tclx, itcl, tcllib
785688
- build without all makecfg patches for now
785688
  - in particular use upstream versioned library name convention
785688
- add backward compatible lib symlinks for now
785688
- add unversioned symlinks for versioned bindir files
785688
- use make's -C option rather than jumping in and out of source dirs
785688
  during install
785688
- use INSTALL_ROOT destdir-like make variable instead of makeinstall
785688
  for all subpackages except tix and itcl
785688
785688
* Mon Oct 21 2002 Jens Petersen <petersen@redhat.com>
785688
- update to tcl-8.3.4, tk-8.3.4 (#75600), tcllib-1.3, itcl-3.2.1,
785688
  tix-8.1.3 (#59098)
785688
- drop the crud compat dir symlinks in libdir
785688
- package now builds without tcl or tk installed (partly #52606)
785688
  - replace all relative paths by absolutes ones, using new tcltktop
785688
  - give absolute paths to tcl and tk when configuring
785688
  - give buildroot bindir path to tcllib make
785688
  - export buildroot libdir in LD_LIBRARY_PATH when installing
785688
- replace tclvers and tkvers by tcltkvers and use it
785688
- replace tcl_major and tk_major by tcltk_major and use it
785688
- don't explicitly provide 64bit libs on ia64 and sparc64
785688
785688
* Mon Jan 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
785688
- fix config.guess and config.sub to newer versions
785688
785688
* Mon Aug 29 2001 Adrian Havill <havill@redhat.com>
785688
785688
* Mon Aug  8 2001 Adrian Havill <havill@redhat.com>
785688
- re-enable glibc string and math inlines; recent gcc is a-ok.
785688
- optimize at -O2 instead of -O
785688
- rename "soname" patches related to makefile/autoconf changes
785688
- added elf "needed" for tk, tclx, tix, itk
785688
785688
* Thu Jul 19 2001 Adrian Havill <havill@redhat.com>
785688
- used makeinstall to brute force fix any remaining unflexible makefile dirs
785688
- revert --enable-threads, linux is (still) not ready (yet) (bug 49251)
785688
785688
* Sun Jul  8 2001 Adrian Havill <havill@redhat.com>
785688
- refresh all sources to latest stable (TODO: separate expect/expectk)
785688
- massage out some build stuff to patches (TODO: libtoolize hacked constants)
785688
- remove patches already rolled into the upstream
785688
- removed RPATH (bugs 45569, 46085, 46086), added SONAMEs to ELFs
785688
- changed shared object filenames to something less gross
785688
- reenable threads which seem to work now
785688
- made compile-friendly for IA64
785688
785688
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
785688
- Bump release + rebuild for 7.2.
785688
785688
* Fri Mar 23 2001 Bill Nottingham <notting@redhat.com>
785688
- bzip2 sources
785688
785688
* Mon Mar 19 2001 Preston Brown <pbrown@redhat.com>
785688
- build fix from ahavill.
785688
785688
* Tue Feb 13 2001 Adrian Havill <havill@redhat.com>
785688
- rebuild so make check passes
785688
785688
* Fri Oct 20 2000 Than Ngo <than@redhat.com>
785688
- rebuild with -O0 on alpha (bug #19461)
785688
785688
* Thu Aug 17 2000 Jeff Johnson <jbj@redhat.com>
785688
- summaries from specspo.
785688
785688
* Thu Aug  3 2000 Jeff Johnson <jbj@redhat.com>
785688
- merge "best known" patches from searching, stubs were broken.
785688
785688
* Thu Jul 27 2000 Jeff Johnson <jbj@redhat.com>
785688
- rebuild against "working" util-linux col.
785688
785688
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
785688
- automatic rebuild
785688
785688
* Fri Jun 16 2000 Jeff Johnson <jbj@redhat.com>
785688
- don't mess with {_libdir}, it's gonna be a FHS pita.
785688
785688
* Fri Jun  2 2000 Jeff Johnson <jbj@redhat.com>
785688
- FHS packaging changes.
785688
- revert --enable-threads, linux is not ready (yet) (#11789).
785688
- tcl/tk: update to 8.3.1 (#10779).
785688
- abstract major tcltk version for soname expansion etc.
785688
785688
* Sat Mar 18 2000 Jeff Johnson <jbj@redhat.com>
785688
- update to (tcl,tk}-8.2.3, expect-5.31, and itcl-3.1.0, URL's as well.
785688
- use perl to drill out pre-pended RPM_BUILD_ROOT.
785688
- configure with --enable-threads (experimental).
785688
- correct hierarchy spelling (#7082).
785688
785688
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
785688
- rebuild for sparc baud rates > 38400.
785688
785688
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
785688
- handle compressed manpages
785688
785688
* Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
785688
- Make changes from bug number 7602
785688
- Apply patch from bug number 7537
785688
- Apply fix from bug number 7157
785688
- Add fixes from bug #7601 to the runtcl patch
785688
785688
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
785688
- fix descriptions
785688
- man pages are compressed (whatapain)
785688
785688
* Tue Nov 30 1999 Jakub Jelinek <jakub@redhat.com>
785688
- compile on systems where SIGPWR == SIGLOST.
785688
785688
* Sat May  1 1999 Jeff Johnson <jbj@redhat.com>
785688
- update tcl/tk to 8.0.5.
785688
785688
* Tue Feb 16 1999 Jeff Johnson <jbj@redhat.com>
785688
- upgrade tcl/tk/tclX to 8.0.4
785688
785688
* Tue Jan 12 1999 Cristian Gafton <gafton@redhat.com>
785688
- call libtoolize to allow building on the arm
785688
- build for glibc 2.1
785688
- strip binaries
785688
785688
* Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
785688
- update tcl/tk/tclX to 8.0.3, expect is updated also.
785688
785688
* Thu May 07 1998 Prospector System <bugs@redhat.com>
785688
- translations modified for de, fr, tr
785688
785688
* Thu Apr 09 1998 Erik Troan <ewt@redhat.com>
785688
- updated version numbers of tcl/tk to relflect inclusion of p2
785688
785688
* Wed Mar 25 1998 Cristian Gafton <gafton@redhat.com>
785688
- updated tcl/tk to patch level 2
785688
785688
* Wed Oct 22 1997 Otto Hammersmith <otto@redhat.com>
785688
- added patch to remove libieee test in configure.in for tcl and tk.
785688
  Shouldn't be needed anymore for glibc systems, but this isn't the "proper" 
785688
  solution for all systems
785688
- fixed src urls
785688
785688
* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
785688
- removed version numbers from descriptions
785688
785688
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
785688
- updated to tcl/tk 8.0 and related versions of packages
785688
785688
* Tue Jun 17 1997 Erik Troan <ewt@redhat.com>
785688
- built against glibc