Blame SPECS/x3270.spec

4bc4eb
%global fontdir %{_datadir}/x3270/fonts
4bc4eb
%global catalogue /etc/X11/fontpath.d
4bc4eb
4bc4eb
%define majorver 3.3
4bc4eb
Summary: An X Window System based IBM 3278/3279 terminal emulator
4bc4eb
Name: x3270
4bc4eb
Version: 3.3.12ga12
4bc4eb
Release: 2%{?dist}
4bc4eb
License: BSD
4bc4eb
Group: Applications/Internet
4bc4eb
URL: http://x3270.sourceforge.net/
4bc4eb
Source0: http://downloads.sourceforge.net/%{name}/suite3270-%{version}-src.tgz
4bc4eb
# c3270-3.3  pr3287-3.3  s3270-3.3  tcl3270-3.3  wc3270-3.3  wpr3287-3.3  ws3270-3.3  x3270-3.3
4bc4eb
#
4bc4eb
Source1: x3270.png
4bc4eb
Source2: x3270.desktop
4bc4eb
Patch0: x3270-3.3.10-paths.patch
4bc4eb
Patch1: x3270-3.3.10-ibmhostpath.patch
4bc4eb
4bc4eb
BuildRequires: ncurses-devel
4bc4eb
BuildRequires: readline-devel
4bc4eb
BuildRequires: openssl-devel
4bc4eb
BuildRequires: libtool
4bc4eb
BuildRequires: desktop-file-utils
4bc4eb
4bc4eb
%package x11
4bc4eb
Summary: IBM 3278/3279 terminal emulator for the X Window System
4bc4eb
Group: Applications/Internet
4bc4eb
BuildRequires: imake
4bc4eb
BuildRequires: xorg-x11-font-utils
4bc4eb
BuildRequires: libXaw-devel
4bc4eb
Requires: %{name} = %{version}
4bc4eb
Requires(post): /usr/bin/mkfontdir
4bc4eb
Requires(postun): /usr/bin/mkfontdir
4bc4eb
4bc4eb
%package text
4bc4eb
Summary: IBM 3278/3279 terminal emulator for text mode
4bc4eb
Group: Applications/Internet
4bc4eb
Requires: %{name} = %{version}
4bc4eb
4bc4eb
4bc4eb
%description
4bc4eb
The x3270 package contains files needed for emulating the IBM 3278/3279
4bc4eb
terminals, commonly used with mainframe applications.
4bc4eb
4bc4eb
You will also need to install a frontend for %{name}. Available frontends
4bc4eb
are %{name}-x11 (for the X Window System) and %{name}-text (for text mode).
4bc4eb
4bc4eb
%description x11
4bc4eb
The x3270 program opens a window in the X Window System which emulates
4bc4eb
the actual look of an IBM 3278/3279 terminal, commonly used with
4bc4eb
mainframe applications.  x3270 also allows you to telnet to an IBM
4bc4eb
host from the x3270 window.
4bc4eb
4bc4eb
Install the %{name}-x11 package if you need to access IBM hosts using an IBM
4bc4eb
3278/3279 terminal emulator from X11.
4bc4eb
4bc4eb
%description text
4bc4eb
The c3270 program opens a 3270 terminal which emulates the actual look of an
4bc4eb
IBM 3278/3279 terminal, commonly used with mainframe applications.
4bc4eb
x3270 also allows you to telnet to an IBM host from the x3270 window.
4bc4eb
4bc4eb
Install the %{name}-text package if you need to access IBM hosts using an IBM
4bc4eb
3278/3279 terminal emulator without running X.
4bc4eb
4bc4eb
4bc4eb
%prep
4bc4eb
%setup -q -c
4bc4eb
# delete windows and tcl sources:
4bc4eb
rm -rf wpr3287* wc3270* ws3270* tcl3270*
4bc4eb
%patch0 -p1
4bc4eb
%patch1 -p1
4bc4eb
4bc4eb
# update for aarch64 (#926737)
4bc4eb
for i in x3270-%{majorver} c3270-%{majorver} pr3287-%{majorver} s3270-%{majorver}; do
4bc4eb
( cd $i
4bc4eb
cp -p %{_datadir}/automake-*/config.{guess,sub} .
4bc4eb
autoconf
4bc4eb
)
4bc4eb
done
4bc4eb
4bc4eb
4bc4eb
%build
4bc4eb
# Fix end of line encodings
4bc4eb
perl -pi -e "s/
4bc4eb
//" */html/Keymap.html */html/Build.html
4bc4eb
# Set LIBX3270DIR to something we can share with x3270-text
4bc4eb
perl -pi -e "s,LIBX3270DIR =.*,LIBX3270DIR = %{_datadir}/x3270,g" x3270-%{majorver}/Imakefile.in
4bc4eb
# use rpmoptflags for x3270if
4bc4eb
perl -pi -e 's/ -o x3270if x3270if.c/ \$(CCOPTIONS) -o x3270if x3270if.c/g' x3270-%{majorver}/Imakefile.in
4bc4eb
4bc4eb
for i in x3270-%{majorver} c3270-%{majorver} pr3287-%{majorver} s3270-%{majorver}; do
4bc4eb
( cd $i
4bc4eb
%configure --with-fontdir=%{fontdir} --x-includes=/usr/include/X11 --x-libraries=/%{_libdir}/X11 --enable-app-defaults
4bc4eb
make %{?_smp_mflags} CCOPTIONS="$RPM_OPT_FLAGS"
4bc4eb
)
4bc4eb
done
4bc4eb
4bc4eb
4bc4eb
%install
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/x3270
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{_bindir}
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{_datadir}/x3270
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man5
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{fontdir}
4bc4eb
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/48x48/apps
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{_datadir}/X11/app-defaults
4bc4eb
mkdir -p $RPM_BUILD_ROOT%{catalogue}
4bc4eb
4bc4eb
install -p -m755 x3270-%{majorver}/x3270 $RPM_BUILD_ROOT%{_bindir}
4bc4eb
install -p -m755 x3270-%{majorver}/x3270if $RPM_BUILD_ROOT%{_bindir}
4bc4eb
install -p -m644 x3270-%{majorver}/*pcf.gz $RPM_BUILD_ROOT%{fontdir}
4bc4eb
install -p -m644 x3270-%{majorver}/ibm_hosts $RPM_BUILD_ROOT%{_sysconfdir}/
4bc4eb
install -p -m644 x3270-%{majorver}/X3270.ad $RPM_BUILD_ROOT%{_datadir}/X11/app-defaults/X3270
4bc4eb
install -p -m644 x3270-%{majorver}/x3270.man $RPM_BUILD_ROOT%{_mandir}/man1/x3270.1
4bc4eb
install -p -m644 x3270-%{majorver}/x3270if.man $RPM_BUILD_ROOT%{_mandir}/man1/x3270if.1
4bc4eb
install -p -m644 x3270-%{majorver}/x3270-script.man $RPM_BUILD_ROOT%{_mandir}/man1/x3270-script.1
4bc4eb
install -p -m644 x3270-%{majorver}/ibm_hosts.man $RPM_BUILD_ROOT%{_mandir}/man5/ibm_hosts.5
4bc4eb
4bc4eb
install -p -m755 pr3287-%{majorver}/pr3287 $RPM_BUILD_ROOT%{_bindir}
4bc4eb
install -p -m644 pr3287-%{majorver}/pr3287.man $RPM_BUILD_ROOT%{_mandir}/man1/pr3287.1x
4bc4eb
4bc4eb
install -p -m755 c3270-%{majorver}/c3270 $RPM_BUILD_ROOT%{_bindir}
4bc4eb
install -p -m644 c3270-%{majorver}/c3270.man $RPM_BUILD_ROOT%{_mandir}/man1/c3270.1
4bc4eb
4bc4eb
install -p -m755 s3270-%{majorver}/s3270 $RPM_BUILD_ROOT%{_bindir}
4bc4eb
install -p -m644 s3270-%{majorver}/s3270.man $RPM_BUILD_ROOT%{_mandir}/man1/s3270.1
4bc4eb
4bc4eb
install -p -m644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_datadir}/icons/hicolor/48x48/apps
4bc4eb
ln -sf %{fontdir} $RPM_BUILD_ROOT%{catalogue}/x3270
4bc4eb
mv x3270-%{majorver}/README* x3270-%{majorver}/LICENSE x3270-%{majorver}/Examples x3270-%{majorver}/html .
4bc4eb
mv c3270-%{majorver}/README README.c3270
4bc4eb
mv c3270-%{majorver}/html html_c3270
4bc4eb
mv pr3287-%{majorver}/README README.pr3287
4bc4eb
mv pr3287-%{majorver}/html html_pr3287
4bc4eb
mv s3270-%{majorver}/README README.s3270
4bc4eb
mv s3270-%{majorver}/html html_s3270
4bc4eb
4bc4eb
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
4bc4eb
desktop-file-install \
4bc4eb
        --dir $RPM_BUILD_ROOT/%{_datadir}/applications \
4bc4eb
        %{SOURCE2}
4bc4eb
4bc4eb
rm -f */Examples/*.rh */Examples/*.orig
4bc4eb
chmod -x Examples/* html*/*
4bc4eb
4bc4eb
4bc4eb
%post x11
4bc4eb
cd %{fontdir} && %{_prefix}/bin/mkfontdir
4bc4eb
touch --no-create %{_datadir}/icons/hicolor
4bc4eb
if [ -x /usr/bin/gtk-update-icon-cache ]; then
4bc4eb
  gtk-update-icon-cache -q %{_datadir}/icons/hicolor
4bc4eb
fi
4bc4eb
4bc4eb
%postun x11
4bc4eb
if [ "$1" = "0" ]; then
4bc4eb
  cd %{fontdir} && %{_prefix}/bin/mkfontdir
4bc4eb
fi
4bc4eb
touch --no-create %{_datadir}/icons/hicolor
4bc4eb
if [ -x /usr/bin/gtk-update-icon-cache ]; then
4bc4eb
  gtk-update-icon-cache -q %{_datadir}/icons/hicolor
4bc4eb
fi
4bc4eb
4bc4eb
4bc4eb
%files
4bc4eb
%doc README* LICENSE Examples html*
4bc4eb
%{_bindir}/s3270
4bc4eb
%{_bindir}/pr3287
4bc4eb
%{_bindir}/x3270if
4bc4eb
%exclude %{_mandir}/man1/c3270*
4bc4eb
%{_mandir}/man1/*
4bc4eb
%{_mandir}/man5/*
4bc4eb
%dir %{_datadir}/x3270
4bc4eb
%config(noreplace) %{_sysconfdir}/ibm_hosts
4bc4eb
4bc4eb
%files x11
4bc4eb
%{_bindir}/x3270
4bc4eb
%dir %{fontdir}
4bc4eb
%{fontdir}/*
4bc4eb
%{catalogue}/x3270
4bc4eb
%{_datadir}/icons/hicolor/48x48/apps/x3270.png
4bc4eb
%{_datadir}/X11/app-defaults/X3270
4bc4eb
%{_datadir}/applications/*
4bc4eb
4bc4eb
%files text
4bc4eb
%{_bindir}/c3270
4bc4eb
%{_mandir}/man1/c3270*
4bc4eb
4bc4eb
4bc4eb
%changelog
4bc4eb
* Mon Mar 25 2013 Samantha N. Bueno <sbueno[at]redhat.com> - 3.3.12ga12-2
4bc4eb
- Rebuilt to include fix for #926737
4bc4eb
4bc4eb
* Mon Mar 25 2013 Samantha N. Bueno <sbueno[at]redhat.com> - 3.3.12ga12-1
4bc4eb
- updated to 3.3.12ga12
4bc4eb
- fixes CVE-2012-5662 (#889373, #924228)
4bc4eb
- add support for aarch64 to build system (#926737)
4bc4eb
4bc4eb
* Sun Feb 10 2013 Parag Nemade <paragn AT fedoraproject DOT org> - 3.3.12ga11-5
4bc4eb
- Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077
4bc4eb
- Cleanup spec as per recently changed packaging guidelines
4bc4eb
4bc4eb
* Thu Nov 22 2012 Dan Horák <dan[at]danny.cz> - 3.3.12ga11-4
4bc4eb
- fix license (BSD instead of MIT)
4bc4eb
4bc4eb
* Thu Sep 27 2012 Dan Horák <dan[at]danny.cz> - 3.3.12ga11-3
4bc4eb
- cleanup of BuildRequires
4bc4eb
4bc4eb
* Fri Sep 21 2012 Dan Horák <dan[at]danny.cz> - 3.3.12ga11-2
4bc4eb
- enable DBCS character sets (#801139)
4bc4eb
4bc4eb
* Fri Sep 07 2012 Dan Horák <dan[at]danny.cz> - 3.3.12ga11-1
4bc4eb
- updated to 3.3.12ga11
4bc4eb
4bc4eb
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.12ga7-2
4bc4eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4bc4eb
4bc4eb
* Thu Apr 12 2012 Dan Horák <dan[at]danny.cz> - 3.3.12ga7-1
4bc4eb
- updated to 3.3.12ga7
4bc4eb
- spec cleanup
4bc4eb
4bc4eb
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.10ga4-3
4bc4eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4bc4eb
4bc4eb
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.10ga4-2
4bc4eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4bc4eb
4bc4eb
* Tue Dec 08 2009 Karsten Hopp <karsten@redhat.com> 3.3.10ga4-1
4bc4eb
- update to 3.3.10ga4-1
4bc4eb
4bc4eb
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 3.3.6-10
4bc4eb
- rebuilt with new openssl
4bc4eb
4bc4eb
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.6-9
4bc4eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4bc4eb
4bc4eb
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.6-8
4bc4eb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4bc4eb
4bc4eb
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> 3.3.6-7
4bc4eb
- rebuild with new openssl
4bc4eb
4bc4eb
* Thu Oct 02 2008 Karsten Hopp <karsten@redhat.com> 3.3.6-6
4bc4eb
- update redhat patch for fuzz=0 (#465087)
4bc4eb
4bc4eb
* Thu Mar 20 2008 Karsten Hopp <karsten@redhat.com> 3.3.6-5
4bc4eb
- fix compiler flags for FORTIFY_SOURCE
4bc4eb
4bc4eb
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.3.6-4
4bc4eb
- Autorebuild for GCC 4.3
4bc4eb
4bc4eb
* Wed Dec 05 2007 Karsten Hopp <karsten@redhat.com> 3.3.6-3
4bc4eb
- rebuild with new openssl libs
4bc4eb
4bc4eb
* Tue Aug 21 2007 Karsten Hopp <karsten@redhat.com> 3.3.6-2
4bc4eb
- drop chkfontpath dependency (#252274)
4bc4eb
4bc4eb
* Wed Aug 08 2007 Karsten Hopp <karsten@redhat.com> 3.3.6-1
4bc4eb
- version 3.3.6
4bc4eb
- fix font resize issue
4bc4eb
- enable app-defaults
4bc4eb
4bc4eb
* Sun Aug 27 2006 Karsten Hopp <karsten@redhat.de> 3.3.4p7-5
4bc4eb
- rebuild
4bc4eb
4bc4eb
* Tue Aug 15 2006 Karsten Hopp <karsten@redhat.de> 3.3.4p7-4
4bc4eb
- fix requirements of -X11 subpackage
4bc4eb
4bc4eb
* Wed Jul 12 2006 Karsten Hopp <karsten@redhat.de> 3.3.4p7-3
4bc4eb
- fix fileconflicts in subpackages
4bc4eb
4bc4eb
* Wed Jul 05 2006 Karsten Hopp <karsten@redhat.de> 3.3.4p7-2
4bc4eb
- silence chkconfig
4bc4eb
- rpmlint fixes:
4bc4eb
 - replace PreReq/BuildPrereq with Requires/BuildRequires
4bc4eb
 - move ibm_hosts to %%{_sysconfdir}
4bc4eb
 - fix end of line encodings in docs
4bc4eb
4bc4eb
* Tue Jun 13 2006 Karsten Hopp <karsten@redhat.de> 3.3.4p6-6
4bc4eb
- update to 3.3.4p7
4bc4eb
- buildrequire libtool
4bc4eb
4bc4eb
* Fri Feb 17 2006 Karsten Hopp <karsten@redhat.de> 3.3.4p6-5
4bc4eb
- rebuild
4bc4eb
4bc4eb
* Mon Dec 19 2005 Karsten Hopp <karsten@redhat.de> 3.3.4p6-4
4bc4eb
- test build without modular-X patch
4bc4eb
4bc4eb
* Wed Nov 23 2005 Karsten Hopp <karsten@redhat.de> 3.3.4p6-3
4bc4eb
- update release again
4bc4eb
4bc4eb
* Wed Nov 23 2005 Karsten Hopp <karsten@redhat.de> 3.3.4p6-2
4bc4eb
- update release
4bc4eb
4bc4eb
* Thu Nov 17 2005 Karsten Hopp <karsten@redhat.de> 3.3.4p6-1
4bc4eb
- update to patchlevel 6
4bc4eb
- drop obsolete segfault patch
4bc4eb
- build with modular X
4bc4eb
- build with current openssl
4bc4eb
- gccmakedep is gone, use makedepend wrapper instead
4bc4eb
4bc4eb
* Wed Oct 19 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-6
4bc4eb
- move x3270-x11 files from /usr/X11R6 to /usr (#170938)
4bc4eb
  
4bc4eb
* Thu Sep 08 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-5
4bc4eb
- add missing buildrequires so that x3270 will be built with SSL support
4bc4eb
  (#159527)
4bc4eb
4bc4eb
* Wed Jul 20 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-4
4bc4eb
- buildrequires xorg-x11-font-utils (#160737)
4bc4eb
- add disttag
4bc4eb
4bc4eb
* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com>
4bc4eb
- silence gtk-update-icon-cache in %%post
4bc4eb
4bc4eb
* Wed Apr 20 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-3
4bc4eb
- more fixes, enable StartupNotify
4bc4eb
4bc4eb
* Wed Apr 20 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-2
4bc4eb
- spec file cleanups from Chris Ricker <kaboom@oobleck.net>
4bc4eb
- remove backup files from rpm patch process
4bc4eb
4bc4eb
* Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-1
4bc4eb
- rpmlint fix
4bc4eb
- buildroot fix
4bc4eb
- use _smp_mflags
4bc4eb
4bc4eb
* Tue Apr 12 2005 Karsten Hopp <karsten@redhat.de> 3.3.4-1
4bc4eb
- Version 3.3.4, fixes mouse selection and timing problems with scripted
4bc4eb
  logins in ~/.ibm_hosts
4bc4eb
4bc4eb
* Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com>
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 3.3.3.b2-2
4bc4eb
- Update the GTK+ theme icon cache on (un)install
4bc4eb
4bc4eb
* Tue Mar 08 2005 Karsten Hopp <karsten@redhat.de> 3.3.3.b2-1
4bc4eb
- update to b2, which fixes a segfault when login is done with 
4bc4eb
  an entry in .ibm_hosts (via emulate_input)
4bc4eb
4bc4eb
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 3.3.3.b1-2
4bc4eb
- build with gcc-4
4bc4eb
4bc4eb
* Thu Jan 13 2005 Karsten Hopp <karsten@redhat.de> 3.3.3.b1-1 
4bc4eb
- update to fix ibm_hosts file parsing and c3270 color support
4bc4eb
4bc4eb
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 3.3.2.p1-10
4bc4eb
- Rebuilt for new readline.
4bc4eb
4bc4eb
* Wed Dec 08 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-9
4bc4eb
- add icon (#141599, #125577)
4bc4eb
- fix variable usage (local variable overwrite) (#116660)
4bc4eb
4bc4eb
* Wed Dec 08 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-8
4bc4eb
- rebuild 
4bc4eb
4bc4eb
* Thu Oct 21 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-7
4bc4eb
- enable builds on ppc(64) again (#136703)
4bc4eb
4bc4eb
* Wed Jul 07 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-6
4bc4eb
- rebuild with new gcc
4bc4eb
4bc4eb
* Mon Jul 05 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-5 
4bc4eb
- update c3270 package to patchlevel2
4bc4eb
- fix buildrequires (#124280)
4bc4eb
- fix compiler warnings (#106312, #78479)
4bc4eb
4bc4eb
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Tue Feb 17 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-3 
4bc4eb
- include license file
4bc4eb
4bc4eb
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Thu Jan 15 2004 Karsten Hopp <karsten@redhat.de> 3.3.2.p1-1
4bc4eb
- update to 3.3.2.p1
4bc4eb
4bc4eb
* Wed Dec 03 2003 Karsten Hopp <karsten@redhat.de> 3.3.2-1
4bc4eb
- update to latest stable release, now with SSL and DBCS support
4bc4eb
4bc4eb
* Tue Aug 12 2003 Karsten Hopp <karsten@redhat.de> 3.2.20-4.2
4bc4eb
- check for libncursesw and use it if available
4bc4eb
4bc4eb
* Wed Jul 09 2003 Karsten Hopp <karsten@redhat.de> 3.2.20-4.1
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Wed Jul 09 2003 Karsten Hopp <karsten@redhat.de> 3.2.20-4
4bc4eb
- fix segfault when ~/.x3270connect isn't writable by the user
4bc4eb
4bc4eb
* Tue Jun 17 2003 Karsten Hopp <karsten@redhat.de> 3.2.20-3.1
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Tue Jun 17 2003 Karsten Hopp <karsten@redhat.de> 3.2.20-3
4bc4eb
- rebuild 
4bc4eb
4bc4eb
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Mon May 05 2003 Karsten Hopp <karsten@redhat.de> 3.2.20-1
4bc4eb
- update to 3.2.20
4bc4eb
4bc4eb
* Tue Apr  1 2003 Thomas Woerner <twoerner@redhat.com>
4bc4eb
- fixed inclusion of time header file (sys/time.h -> time.h)
4bc4eb
4bc4eb
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
4bc4eb
- rebuilt
4bc4eb
4bc4eb
* Tue Nov 19 2002 Karsten Hopp <karsten@redhat.de> 3.2.19-3
4bc4eb
- update to patchlevel 4:
4bc4eb
  Re-enable the automatic font switching when the
4bc4eb
  x3270 window is resized
4bc4eb
4bc4eb
* Tue Nov 19 2002 Tim Powers <timp@redhat.com>
4bc4eb
- rebuild for all arches
4bc4eb
- remove cruft from the buildroot we aren't shipping
4bc4eb
4bc4eb
* Wed Jul 24 2002 Karsten Hopp <karsten@redhat.de>
4bc4eb
- 3.2.19
4bc4eb
- use desktop-file-utils
4bc4eb
4bc4eb
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
4bc4eb
- automated rebuild
4bc4eb
4bc4eb
* Thu May 23 2002 Tim Powers <timp@redhat.com>
4bc4eb
- automated rebuild
4bc4eb
4bc4eb
* Mon Mar  4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.2.18-2
4bc4eb
- Update to 3.2.18 patchlevel 14
4bc4eb
4bc4eb
* Wed Jan 16 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.2.18-1
4bc4eb
- 3.2.18
4bc4eb
- Don't ship x3270-tcl anymore
4bc4eb
4bc4eb
* Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.2.16-4
4bc4eb
- Add build dependencies (#48930)
4bc4eb
4bc4eb
* Sat Jun 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4bc4eb
- remove all provides/requires for x3270-frontend
4bc4eb
4bc4eb
* Sun May 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.2.16-2
4bc4eb
- Rebuild with new readline
4bc4eb
4bc4eb
* Thu May 10 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.2.16-1
4bc4eb
- 3.2.16
4bc4eb
- adapt patches
4bc4eb
- get rid of the **** pdksh requirement
4bc4eb
- split the tcl version into a different package, no need to require tcl for
4bc4eb
  normal use
4bc4eb
- split the x11 frontend into a separate package.
4bc4eb
  We don't necessarily have X on a machine where we want to run
4bc4eb
  3270 sessions (e.g. s390...)
4bc4eb
4bc4eb
* Fri Dec 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4bc4eb
- 3.2.14
4bc4eb
- Add c3270 (textmode x3270) in x3270-text package
4bc4eb
- Fix build
4bc4eb
- Make ibm_hosts a %%config(noreplace)
4bc4eb
4bc4eb
* Tue Oct 24 2000 Jeff Johnson <jbj@redhat.com>
4bc4eb
- remove /usr/local paths in Examples.
4bc4eb
4bc4eb
* Sun Oct 22 2000 Jeff Johnson <jbj@redhat.com>
4bc4eb
- update to 3.2.13.
4bc4eb
4bc4eb
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
4bc4eb
- automatic rebuild
4bc4eb
4bc4eb
* Fri Jun  2 2000 Jeff Johnson <jbj@redhat.com>
4bc4eb
- rebuild for 7.0
4bc4eb
4bc4eb
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
4bc4eb
- wmconfig -> desktop
4bc4eb
4bc4eb
* Mon Feb  7 2000 Jeff Johnson <jbj@redhat.com>
4bc4eb
- compress man pages.
4bc4eb
4bc4eb
* Fri Jan 14 2000 Jeff Johnson <jbj@redhat.com>
4bc4eb
- update to 3.1.1.9 (see URL for pending 3.2alpha version).
4bc4eb
4bc4eb
* Fri Sep 24 1999 Preston Brown <pbrown@redhat.com>
4bc4eb
- change to directory before doing a mkfontdir
4bc4eb
4bc4eb
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
4bc4eb
- auto rebuild in the new build environment (release 7)
4bc4eb
4bc4eb
* Tue Jan 12 1999 Jeff Johnson <jbj@redhat.com>
4bc4eb
- ibm_hosts needed %%config (#788)
4bc4eb
4bc4eb
* Fri Aug  7 1998 Jeff Johnson <jbj@redhat.com>
4bc4eb
- build root
4bc4eb
4bc4eb
* Fri May 01 1998 Prospector System <bugs@redhat.com>
4bc4eb
- translations modified for de, fr, tr
4bc4eb
4bc4eb
* Wed Oct 22 1997 Marc Ewing <marc@redhat.com>
4bc4eb
- new version
4bc4eb
- added wmconfig entry
4bc4eb
4bc4eb
* Mon Jul 21 1997 Erik Troan <ewt@redhat.com>
4bc4eb
- built against glibc