2007-02-07 19:19:49 +00:00
|
|
|
Summary: Terminal emulator for the X Window System
|
|
|
|
Name: xterm
|
2012-01-26 12:32:18 +00:00
|
|
|
Version: 278
|
2012-10-04 16:12:55 +00:00
|
|
|
Release: 4%{?dist}
|
2012-10-09 14:21:14 +00:00
|
|
|
URL: http://invisible-island.net/xterm
|
2004-09-09 15:04:59 +00:00
|
|
|
License: MIT
|
2007-02-07 19:19:49 +00:00
|
|
|
Group: User Interface/X
|
2006-07-26 07:56:43 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2006-11-23 13:21:45 +00:00
|
|
|
BuildRequires: imake pkgconfig ncurses-devel libutempter-devel
|
2007-02-07 19:19:49 +00:00
|
|
|
BuildRequires: libXft-devel libXaw-devel libXext-devel desktop-file-utils
|
2010-03-09 12:07:34 +00:00
|
|
|
BuildRequires: libxkbfile-devel
|
2006-07-26 07:56:43 +00:00
|
|
|
|
2005-12-15 00:46:44 +00:00
|
|
|
Source0: ftp://invisible-island.net/xterm/%{name}-%{version}.tgz
|
2006-11-23 13:21:45 +00:00
|
|
|
Source1: ftp://invisible-island.net/xterm/16colors.txt
|
|
|
|
|
2009-08-13 11:34:36 +00:00
|
|
|
Patch1: xterm-245-resources.patch
|
2012-10-04 16:03:18 +00:00
|
|
|
Patch2: xterm-261-desk.patch
|
2011-07-15 11:41:31 +00:00
|
|
|
Patch3: xterm-271-man-page_paths.patch
|
2006-11-23 13:21:45 +00:00
|
|
|
|
2008-01-07 11:35:57 +00:00
|
|
|
%bcond_with trace
|
2006-03-21 22:49:56 +00:00
|
|
|
|
2006-07-26 07:56:43 +00:00
|
|
|
%define x11_app_defaults_dir %(pkg-config --variable appdefaultdir xt)
|
|
|
|
|
2004-09-09 15:04:59 +00:00
|
|
|
%description
|
|
|
|
The xterm program is a terminal emulator for the X Window System. It
|
|
|
|
provides DEC VT102 and Tektronix 4014 compatible terminals for
|
|
|
|
programs that can't use the window system directly.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2006-11-23 13:21:45 +00:00
|
|
|
|
2009-02-18 14:47:26 +00:00
|
|
|
%patch1 -p1 -b .resources
|
2010-07-02 12:28:03 +00:00
|
|
|
%patch2 -p1 -b .desk
|
2006-11-23 13:21:45 +00:00
|
|
|
%patch3 -p1 -b .man-page_paths
|
2004-09-09 15:04:59 +00:00
|
|
|
|
2010-06-14 12:14:39 +00:00
|
|
|
for f in THANKS; do
|
|
|
|
iconv -f iso8859-1 -t utf8 -o ${f}{_,} &&
|
|
|
|
touch -r ${f}{,_} && mv -f ${f}{_,}
|
|
|
|
done
|
|
|
|
|
2004-09-09 15:04:59 +00:00
|
|
|
%build
|
2006-11-23 13:21:45 +00:00
|
|
|
%configure \
|
|
|
|
--enable-256-color \
|
2008-07-30 16:23:09 +00:00
|
|
|
--enable-exec-xterm \
|
2006-11-23 13:21:45 +00:00
|
|
|
--enable-luit \
|
2009-08-13 11:34:36 +00:00
|
|
|
%{?with_trace: --enable-trace} \
|
2006-11-23 13:21:45 +00:00
|
|
|
--enable-warnings \
|
|
|
|
--enable-wide-chars \
|
|
|
|
--with-app-defaults=%{x11_app_defaults_dir} \
|
2011-02-14 15:44:28 +00:00
|
|
|
--with-icondir=%{_datadir}/pixmaps \
|
2006-11-23 13:21:45 +00:00
|
|
|
--with-utempter \
|
|
|
|
--with-tty-group=tty \
|
|
|
|
--disable-full-tgetent
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
2004-09-09 15:04:59 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2006-11-23 13:21:45 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
|
|
|
cp -fp %{SOURCE1} 16colors.txt
|
2004-09-09 15:04:59 +00:00
|
|
|
|
2007-02-07 19:19:49 +00:00
|
|
|
desktop-file-install --vendor=fedora \
|
|
|
|
--dir=$RPM_BUILD_ROOT%{_datadir}/applications \
|
2010-07-02 12:28:03 +00:00
|
|
|
xterm.desktop
|
2007-02-07 19:19:49 +00:00
|
|
|
|
2004-09-09 15:04:59 +00:00
|
|
|
%clean
|
2006-07-26 07:56:43 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2004-09-09 15:04:59 +00:00
|
|
|
|
|
|
|
%files
|
2008-01-04 13:06:28 +00:00
|
|
|
%defattr(-,root,root,-)
|
2009-10-20 13:26:46 +00:00
|
|
|
%doc xterm.log.html ctlseqs.txt 16colors.txt README.i18n THANKS
|
2008-01-07 11:35:57 +00:00
|
|
|
%{_bindir}/xterm
|
2008-01-04 13:06:28 +00:00
|
|
|
%{_bindir}/koi8rxterm
|
2004-09-09 15:04:59 +00:00
|
|
|
%{_bindir}/resize
|
|
|
|
%{_bindir}/uxterm
|
2008-01-04 13:06:28 +00:00
|
|
|
%{_mandir}/man1/koi8rxterm.1*
|
2004-09-09 15:04:59 +00:00
|
|
|
%{_mandir}/man1/resize.1*
|
2008-01-04 13:06:28 +00:00
|
|
|
%{_mandir}/man1/uxterm.1*
|
2004-09-09 15:04:59 +00:00
|
|
|
%{_mandir}/man1/xterm.1*
|
2007-06-22 10:58:53 +00:00
|
|
|
%{_datadir}/applications/fedora-xterm.desktop
|
|
|
|
%{_datadir}/pixmaps/xterm*.xpm
|
2010-03-09 12:07:34 +00:00
|
|
|
%{x11_app_defaults_dir}/KOI8RXTerm*
|
|
|
|
%{x11_app_defaults_dir}/UXTerm*
|
|
|
|
%{x11_app_defaults_dir}/XTerm*
|
2004-09-09 15:04:59 +00:00
|
|
|
|
|
|
|
%changelog
|
2012-10-04 16:12:55 +00:00
|
|
|
* Thu Oct 04 2012 Rex Dieter <rdieter@fedoraproject.org> 278-4
|
|
|
|
- revert bad -3 build
|
|
|
|
|
|
|
|
* Tue Sep 25 2012 Rex Dieter <rdieter@fedoraproject.org> 278-3
|
|
|
|
- xterm.desktop: +Path=$HOME
|
|
|
|
|
2012-07-22 07:21:35 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 278-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-26 12:32:18 +00:00
|
|
|
* Thu Jan 26 2012 Miroslav Lichvar <mlichvar@redhat.com> 278-1
|
|
|
|
- update to 278
|
|
|
|
|
2012-01-09 13:54:17 +00:00
|
|
|
* Mon Jan 09 2012 Miroslav Lichvar <mlichvar@redhat.com> 277-1
|
|
|
|
- update to 277
|
|
|
|
|
2011-10-11 12:25:56 +00:00
|
|
|
* Tue Oct 11 2011 Miroslav Lichvar <mlichvar@redhat.com> 276-1
|
|
|
|
- update to 276
|
|
|
|
|
2011-09-12 11:25:33 +00:00
|
|
|
* Mon Sep 12 2011 Miroslav Lichvar <mlichvar@redhat.com> 275-1
|
|
|
|
- update to 275
|
|
|
|
|
2011-08-30 13:56:40 +00:00
|
|
|
* Tue Aug 30 2011 Miroslav Lichvar <mlichvar@redhat.com> 273-1
|
|
|
|
- update to 273
|
|
|
|
|
2011-07-15 11:41:31 +00:00
|
|
|
* Fri Jul 15 2011 Miroslav Lichvar <mlichvar@redhat.com> 271-1
|
|
|
|
- update to 271
|
|
|
|
|
2011-04-27 12:04:40 +00:00
|
|
|
* Wed Apr 27 2011 Miroslav Lichvar <mlichvar@redhat.com> 270-1
|
|
|
|
- update to 270
|
|
|
|
|
2011-02-21 11:21:29 +00:00
|
|
|
* Mon Feb 21 2011 Miroslav Lichvar <mlichvar@redhat.com> 269-1
|
|
|
|
- update to 269
|
|
|
|
|
2011-02-14 12:46:23 +00:00
|
|
|
* Mon Feb 14 2011 Miroslav Lichvar <mlichvar@redhat.com> 268-1
|
|
|
|
- update to 268
|
|
|
|
|
2011-02-08 07:04:01 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 267-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-23 12:06:30 +00:00
|
|
|
* Tue Nov 23 2010 Miroslav Lichvar <mlichvar@redhat.com> 267-1
|
|
|
|
- update to 267
|
|
|
|
|
2010-11-05 16:41:34 +00:00
|
|
|
* Fri Nov 05 2010 Miroslav Lichvar <mlichvar@redhat.com> 266-1
|
2010-11-02 17:13:50 +00:00
|
|
|
- update to 266
|
2010-11-05 16:41:34 +00:00
|
|
|
- fix building with new libXaw
|
2010-11-02 17:13:50 +00:00
|
|
|
|
2010-10-18 09:34:09 +00:00
|
|
|
* Mon Oct 18 2010 Miroslav Lichvar <mlichvar@redhat.com> 264-1
|
|
|
|
- update to 264
|
|
|
|
|
2010-09-07 15:51:26 +00:00
|
|
|
* Tue Sep 07 2010 Miroslav Lichvar <mlichvar@redhat.com> 262-1
|
|
|
|
- update to 262
|
|
|
|
|
2010-07-02 12:28:03 +00:00
|
|
|
* Fri Jul 02 2010 Miroslav Lichvar <mlichvar@redhat.com> 261-2
|
|
|
|
- remove NoDisplay=true from desktop file, use upstream version (#607018)
|
|
|
|
|
2010-06-29 14:45:57 +00:00
|
|
|
* Tue Jun 29 2010 Miroslav Lichvar <mlichvar@redhat.com> 261-1
|
|
|
|
- update to 261
|
|
|
|
|
2010-06-21 14:32:00 +00:00
|
|
|
* Mon Jun 21 2010 Miroslav Lichvar <mlichvar@redhat.com> 260-1
|
|
|
|
- update to 260
|
|
|
|
|
2010-06-10 15:10:46 +00:00
|
|
|
* Thu Jun 10 2010 Miroslav Lichvar <mlichvar@redhat.com> 259-1
|
|
|
|
- update to 259
|
2010-06-14 12:14:39 +00:00
|
|
|
- link with -lICE
|
|
|
|
- convert THANKS to UTF-8
|
2010-06-10 15:10:46 +00:00
|
|
|
|
2010-05-05 16:06:05 +00:00
|
|
|
* Wed May 05 2010 Miroslav Lichvar <mlichvar@redhat.com> 258-1
|
|
|
|
- update to 258
|
|
|
|
|
2010-03-09 12:07:34 +00:00
|
|
|
* Tue Mar 09 2010 Miroslav Lichvar <mlichvar@redhat.com> 256-1
|
|
|
|
- update to 256
|
|
|
|
- enable XKB Bell support (#568748)
|
|
|
|
|
2010-02-02 17:29:15 +00:00
|
|
|
* Tue Feb 02 2010 Miroslav Lichvar <mlichvar@redhat.com> 255-1
|
|
|
|
- update to 255
|
|
|
|
|
2009-12-11 12:04:09 +00:00
|
|
|
* Fri Dec 11 2009 Miroslav Lichvar <mlichvar@redhat.com> 253-1
|
|
|
|
- update to 253
|
|
|
|
|
|
|
|
* Tue Dec 08 2009 Miroslav Lichvar <mlichvar@redhat.com> 252-1
|
2009-12-08 13:40:51 +00:00
|
|
|
- update to 252
|
|
|
|
|
2009-11-19 15:21:46 +00:00
|
|
|
* Thu Nov 19 2009 Miroslav Lichvar <mlichvar@redhat.com> 251-1
|
|
|
|
- update to 251
|
|
|
|
|
2009-10-20 13:26:46 +00:00
|
|
|
* Tue Oct 20 2009 Miroslav Lichvar <mlichvar@redhat.com> 250-1
|
|
|
|
- update to 250
|
|
|
|
|
2009-10-08 12:16:10 +00:00
|
|
|
* Thu Oct 08 2009 Miroslav Lichvar <mlichvar@redhat.com> 249-1
|
|
|
|
- update to 249
|
|
|
|
|
2009-09-29 09:36:52 +00:00
|
|
|
* Tue Sep 29 2009 Miroslav Lichvar <mlichvar@redhat.com> 248-2
|
|
|
|
- fix various bugs when display is scrolled up (#524503)
|
|
|
|
|
2009-09-17 16:32:36 +00:00
|
|
|
* Thu Sep 17 2009 Miroslav Lichvar <mlichvar@redhat.com> 248-1
|
|
|
|
- update to 248
|
|
|
|
|
2009-09-01 12:05:18 +00:00
|
|
|
* Tue Sep 01 2009 Miroslav Lichvar <mlichvar@redhat.com> 247-1
|
|
|
|
- update to 247
|
|
|
|
|
2009-08-18 11:35:58 +00:00
|
|
|
* Tue Aug 18 2009 Miroslav Lichvar <mlichvar@redhat.com> 246-1
|
|
|
|
- update to 246
|
|
|
|
|
2009-08-13 11:34:36 +00:00
|
|
|
* Thu Aug 13 2009 Miroslav Lichvar <mlichvar@redhat.com> 245-1
|
|
|
|
- update to 245
|
|
|
|
|
2009-07-27 08:47:12 +00:00
|
|
|
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 242-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-02 12:52:20 +00:00
|
|
|
* Mon Mar 02 2009 Miroslav Lichvar <mlichvar@redhat.com> 242-3
|
|
|
|
- fix bell (#487829)
|
|
|
|
|
2009-02-26 12:09:49 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 242-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-18 14:47:26 +00:00
|
|
|
* Wed Feb 18 2009 Miroslav Lichvar <mlichvar@redhat.com> 242-1
|
|
|
|
- update to 242
|
|
|
|
- use upstream default value for modifyFunctionKeys resource
|
|
|
|
- remove png suffix from icon name in desktop file
|
|
|
|
|
2009-01-06 14:17:46 +00:00
|
|
|
* Tue Jan 06 2009 Miroslav Lichvar <mlichvar@redhat.com> 238-1
|
|
|
|
- update to 238 (#479000, CVE-2008-2383)
|
|
|
|
- set default values of allowWindowOps and allowFontOps resources to false
|
|
|
|
|
2008-09-16 16:53:13 +00:00
|
|
|
* Tue Sep 16 2008 Miroslav Lichvar <mlichvar@redhat.com> 237-1
|
|
|
|
- update to 237
|
|
|
|
|
2008-07-30 16:23:09 +00:00
|
|
|
* Wed Jul 30 2008 Miroslav Lichvar <mlichvar@redhat.com> 236-1
|
|
|
|
- update to 236
|
|
|
|
- enable support for spawn-new-terminal action (#457130)
|
|
|
|
|
2008-04-22 16:45:01 +00:00
|
|
|
* Tue Apr 22 2008 Miroslav Lichvar <mlichvar@redhat.com> 235-1
|
|
|
|
- update to 235
|
|
|
|
|
2008-03-03 16:46:30 +00:00
|
|
|
* Mon Mar 03 2008 Miroslav Lichvar <mlichvar@redhat.com> 234-1
|
|
|
|
- update to 234
|
|
|
|
|
2008-02-27 11:28:00 +00:00
|
|
|
* Wed Feb 27 2008 Miroslav Lichvar <mlichvar@redhat.com> 233-1
|
|
|
|
- update to 233
|
|
|
|
|
2008-01-31 12:36:49 +00:00
|
|
|
* Thu Jan 31 2008 Miroslav Lichvar <mlichvar@redhat.com> 232-1
|
|
|
|
- update to 232
|
|
|
|
|
2008-01-07 11:35:57 +00:00
|
|
|
* Mon Jan 07 2008 Miroslav Lichvar <mlichvar@redhat.com> 231-1
|
|
|
|
- update to 231
|
|
|
|
- remove setgid utempter from xterm binary (#229360)
|
|
|
|
|
2008-01-04 13:06:28 +00:00
|
|
|
* Fri Jan 04 2008 Miroslav Lichvar <mlichvar@redhat.com> 230-1
|
|
|
|
- update to 230
|
|
|
|
|
2007-08-22 12:25:45 +00:00
|
|
|
* Wed Aug 22 2007 Miroslav Lichvar <mlichvar@redhat.com> 229-2
|
|
|
|
- rebuild
|
|
|
|
|
2007-08-13 11:27:22 +00:00
|
|
|
* Mon Aug 13 2007 Miroslav Lichvar <mlichvar@redhat.com> 229-1
|
|
|
|
- update to 229
|
|
|
|
|
2007-07-23 12:42:28 +00:00
|
|
|
* Mon Jul 23 2007 Miroslav Lichvar <mlichvar@redhat.com> 228-1
|
|
|
|
- update to 228
|
|
|
|
|
2007-06-29 10:12:48 +00:00
|
|
|
* Fri Jun 29 2007 Miroslav Lichvar <mlichvar@redhat.com> 227-1
|
|
|
|
- update to 227
|
|
|
|
|
2007-06-22 10:58:53 +00:00
|
|
|
* Fri Jun 22 2007 Miroslav Lichvar <mlichvar@redhat.com> 226-1
|
|
|
|
- update to 226
|
|
|
|
|
2007-04-12 11:11:19 +00:00
|
|
|
* Thu Apr 12 2007 Miroslav Lichvar <mlichvar@redhat.com> 225-2
|
|
|
|
- fix sections in man pages
|
|
|
|
|
2007-03-27 15:27:19 +00:00
|
|
|
* Tue Mar 27 2007 Miroslav Lichvar <mlichvar@redhat.com> 225-1
|
|
|
|
- update to 225
|
|
|
|
|
2007-03-20 14:59:40 +00:00
|
|
|
* Tue Mar 20 2007 Miroslav Lichvar <mlichvar@redhat.com> 224-2
|
|
|
|
- fix background color setting in alternate screen
|
|
|
|
- don't display xterm in menus (#231000)
|
|
|
|
|
2007-02-16 13:28:03 +00:00
|
|
|
* Fri Feb 16 2007 Miroslav Lichvar <mlichvar@redhat.com> 224-1
|
|
|
|
- update to 224
|
|
|
|
- drop utempter group before creating pty
|
|
|
|
- add Icon to desktop file (#227925)
|
|
|
|
|
2007-02-07 19:19:49 +00:00
|
|
|
* Wed Feb 07 2007 Miroslav Lichvar <mlichvar@redhat.com> 223-3
|
|
|
|
- spec cleanup (#226660)
|
|
|
|
|
2007-01-18 14:35:31 +00:00
|
|
|
* Thu Jan 18 2007 Miroslav Lichvar <mlichvar@redhat.com> 223-2
|
|
|
|
- make xterm binary sgid utempter (#222847)
|
|
|
|
- fix font size changes with -fa option (#222340)
|
|
|
|
- fix redrawing of internal border (#223027)
|
|
|
|
- enable metaSendsEscape resource and set modifyFunctionKeys to 0 by default
|
|
|
|
|
2006-12-07 09:33:58 +00:00
|
|
|
* Thu Dec 07 2006 Miroslav Lichvar <mlichvar@redhat.com> 223-1
|
|
|
|
- update to 223
|
|
|
|
|
2006-11-23 13:21:45 +00:00
|
|
|
* Thu Nov 23 2006 Miroslav Lichvar <mlichvar@redhat.com> 222-1
|
|
|
|
- update to 222
|
|
|
|
- link with libncurses instead of libtermcap
|
|
|
|
- spec cleanup
|
|
|
|
|
2006-09-04 12:26:16 +00:00
|
|
|
* Mon Sep 04 2006 Miroslav Lichvar <mlichvar@redhat.com> 215-3.fc6
|
|
|
|
- fix segfault when /etc/termcap is missing (#201246)
|
|
|
|
|
2006-07-26 07:56:43 +00:00
|
|
|
* Wed Jul 26 2006 Mike A. Harris <mharris@redhat.com> 215-2.fc6
|
|
|
|
- Replace BuildRequires utempter with libutempter-devel
|
|
|
|
- Change BuildRoot tag to comply with Fedora packaging guidelines
|
|
|
|
- Use pkg-config to autodetect the location of the system app-defaults dir
|
|
|
|
- Add BuildRequires: pkgconfig
|
|
|
|
|
2006-07-17 22:19:56 +00:00
|
|
|
* Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 215-1.fc6
|
|
|
|
- Upgrade to upstream version 215
|
|
|
|
|
2006-07-12 09:24:28 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 213-2.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-11 21:16:16 +00:00
|
|
|
* Tue Jul 11 2006 Adam Jackson <ajackson@redhat.com> - 213-2.fc6
|
|
|
|
- Use correct dist tag in Release string.
|
|
|
|
|
2006-05-31 22:06:11 +00:00
|
|
|
* Wed May 31 2006 Jason Vas Dias <jvdias@redhat.com> - 213-1
|
|
|
|
- Upgrade to upstream version 213 (fixes bug 192627)
|
|
|
|
- fix bug 189161 : make -r/-rv do reverseVideo with or without
|
2007-02-07 19:19:49 +00:00
|
|
|
xterm*{fore,back}ground set
|
2006-05-31 22:06:11 +00:00
|
|
|
|
2006-04-13 18:55:57 +00:00
|
|
|
* Thu Apr 13 2006 Jason Vas Dias <jvdias@redhat.com> - 212-1
|
|
|
|
- Upgrade to upstream version 212
|
|
|
|
- fix bug 188031 : paths in man-page
|
|
|
|
|
2006-03-29 17:23:52 +00:00
|
|
|
* Wed Mar 29 2006 Jason Vas Dias <jvdias@redhat.com> - 211-4
|
|
|
|
- fix bug 186935: cursor GCs must be freed with XtReleaseGC
|
|
|
|
|
2006-03-21 22:49:56 +00:00
|
|
|
* Tue Mar 21 2006 Jason Vas Dias <jvdias@redhat.com> - 211-1
|
|
|
|
- Upgrade to upstream version 211 (fixes bug 186094).
|
|
|
|
- Enable new 'utf8Title' resource by default
|
|
|
|
|
2006-03-07 22:25:17 +00:00
|
|
|
* Tue Mar 07 2006 Jason Vas Dias <jvdias@redhat.com> - 209-4
|
|
|
|
- fix bug 183993: call set_cursor_gcs in ReverseVideo
|
|
|
|
|
2006-02-22 19:20:30 +00:00
|
|
|
* Wed Feb 22 2006 Jason Vas Dias <jvdias@redhat.com> - 209-2
|
|
|
|
- fix bug 182382: check for (VWindow(screen)!=0) in set_cursor_gcs
|
|
|
|
- further fix for bug 178302: allow *vt100*cursorColor to be same as fg
|
|
|
|
|
2006-02-13 17:11:26 +00:00
|
|
|
* Tue Feb 14 2006 Jason Vas Dias <jvdias@redhat.com> - 209-1
|
|
|
|
- Upgrade to upstream version 209 (fixes bug 180450)
|
|
|
|
|
2006-02-11 06:36:28 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 208-1.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 14:43:20 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 208-1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-17 20:41:21 +00:00
|
|
|
* Tue Jan 17 2006 Jason Vas Dias<jvdias@redhat.com> - 208-1
|
|
|
|
- Upgrade to upstream version 208
|
|
|
|
- Allow root user to grab the console, even if /dev/console
|
|
|
|
not owned by root
|
|
|
|
- restore Red Hat '*VT100*scrollBar:1' default Xresource
|
|
|
|
|
2005-12-21 22:23:11 +00:00
|
|
|
* Wed Dec 21 2005 Jason Vas Dias<jvdias@redhat.com> - 207-10
|
|
|
|
- Fix bug 164210: tek4014 support should be enabled by default
|
|
|
|
|
2005-12-15 00:46:44 +00:00
|
|
|
* Wed Dec 14 2005 Jason Vas Dias<jvdias@redhat.com> - 207-8
|
|
|
|
- Fix bug 175684: compile with --enable-256-color
|
|
|
|
- Fix bug 155538 addenda - restore '*VT100*backarrowKey:0'
|
|
|
|
|
2005-12-09 22:43:56 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-21 22:35:35 +00:00
|
|
|
* Mon Nov 21 2005 Jason Vas Dias<jvdias@redhat.com> - 207-5
|
|
|
|
- fix bug 173703: remove reference to /usr/X11R6/bin/luit :
|
|
|
|
PROJECTROOT should be /usr, not /usr/X11R6
|
|
|
|
|
|
|
|
* Thu Nov 18 2005 Jason Vas Dias<jvdias@redhat.com> - 207-4
|
|
|
|
- fix bug 173541: better fix for freetype configuration problem
|
|
|
|
|
2005-11-14 20:40:08 +00:00
|
|
|
* Mon Nov 14 2005 Jason Vas Dias<jvdias@redhat.com> - 207-1
|
|
|
|
- Upgrade to upstream version 207
|
|
|
|
- Fix app-defaults directory for modular X11
|
|
|
|
|
2005-11-13 17:04:34 +00:00
|
|
|
* Sun Nov 13 2005 Jeremy Katz <katzj@redhat.com> - 206-4
|
|
|
|
- rebuild for newer modular X
|
|
|
|
|
2005-11-04 18:23:58 +00:00
|
|
|
* Fri Nov 04 2005 Jason Vas Dias <jvdias@redhat.com> 206-1
|
|
|
|
- Upgrade to upstream version 206
|
|
|
|
|
2005-10-13 00:54:16 +00:00
|
|
|
* Wed Oct 12 2005 Jason Vas Dias <jvdias@redhat.com> 205-1
|
|
|
|
- Upgrade to upstream version 205
|
|
|
|
fixes bugs: 124421, 129146, 159562, 161894, 169347
|
|
|
|
|
2005-09-24 10:32:01 +00:00
|
|
|
* Sat Sep 24 2005 Mike A. Harris <mharris@redhat.com> 200-10
|
|
|
|
- Updated xterm-resources-redhat.patch to add "xterm*ttyModes: erase ^?"
|
2005-09-26 18:45:35 +00:00
|
|
|
resource to fix bug (#155538,160354,163812,162549)
|
2005-09-24 10:32:01 +00:00
|
|
|
|
2005-09-14 06:31:01 +00:00
|
|
|
* Wed Sep 14 2005 Mike A. Harris <mharris@redhat.com> 200-9
|
|
|
|
- Updated xterm-resources-redhat.patch to remove utf8 resource which was
|
|
|
|
added in the 200-7 build, as it was incorrectly set to 'true' instead
|
|
|
|
of '1', and bug #138681 turned out to be a gdm bug instead of an xterm
|
|
|
|
bug. This fixes bug (#163568).
|
|
|
|
|
2005-08-30 16:18:29 +00:00
|
|
|
* Mon Aug 29 2005 Mike A. Harris <mharris@redhat.com> 200-8
|
|
|
|
- Added --disable-tek4014 to ./configure flags, to disable tek support
|
|
|
|
for bug (#164210)
|
|
|
|
|
2005-05-03 09:51:52 +00:00
|
|
|
* Mon May 2 2005 Mike A. Harris <mharris@redhat.com> 200-7
|
|
|
|
- Updated xterm-resources-redhat.patch to enable xterm utf8 resource by
|
|
|
|
default, as our default OS environment is UTF-8, for bug (#138681)
|
|
|
|
|
2005-04-16 16:51:26 +00:00
|
|
|
* Sat Apr 16 2005 Mike A. Harris <mharris@redhat.com> 200-6
|
|
|
|
- Added option to spec file to allow easy rebuilding with 256 color option
|
|
|
|
for those who prefer this non-default behaviour (#103402)
|
|
|
|
|
2005-03-08 22:14:29 +00:00
|
|
|
* Tue Mar 8 2005 Soeren Sandmann <sandmann@redhat.com> 200-5
|
|
|
|
- Ported xterm-resources-redhat.patch to newer xterms. (#126855)
|
|
|
|
|
2005-03-07 00:50:46 +00:00
|
|
|
* Sun Mar 6 2005 Mike A. Harris <mharris@redhat.com> 200-4
|
|
|
|
- Added libtermcap-devel and utempter to BuildRequires
|
|
|
|
- Changed BuildRequires from XFree86-devel to xorg-x11-devel
|
|
|
|
|
2005-03-06 13:38:16 +00:00
|
|
|
* Sun Mar 6 2005 Mike A. Harris <mharris@redhat.com> 200-3
|
|
|
|
- Rebuild with gcc 4 for FC4 development
|
|
|
|
|
2005-02-08 05:36:24 +00:00
|
|
|
* Mon Feb 7 2005 Mike A. Harris <mharris@redhat.com> 200-2
|
|
|
|
- Removed chmod from prep, and updated comment to refect (#128341c12)
|
|
|
|
|
|
|
|
* Mon Feb 7 2005 Mike A. Harris <mharris@redhat.com> 200-1
|
2005-02-08 02:34:05 +00:00
|
|
|
- Updated main tarball to xterm-200 for FC4 devel
|
2005-02-08 05:25:45 +00:00
|
|
|
- Disabled xterm-179-ppc-fix-bug-101472.patch for now, to see if the problem
|
|
|
|
occurs on ppc still or not.
|
2005-02-08 02:34:05 +00:00
|
|
|
|
2004-09-09 15:06:34 +00:00
|
|
|
* Fri Jul 13 2004 Mike A. Harris <mharris@redhat.com> 192-1
|
|
|
|
- Updated main tarball to xterm-192 for FC3 devel
|
|
|
|
- Resolved bugs #126569,127132
|
|
|
|
|
2004-09-09 15:06:06 +00:00
|
|
|
* Fri Jun 18 2004 Mike A. Harris <mharris@redhat.com> 191-1
|
|
|
|
- Updated main tarball to xterm-191 for FC3 devel
|
|
|
|
- Disabled xterm-resources-redhat.patch to see what if anything breaks, as
|
|
|
|
it no longer applies cleanly. Hopefully we can just ship stock xterm
|
|
|
|
resources now, although I realize that is more likely to be a pie in the
|
|
|
|
sky fantasy once the bug reports trickle in from this change. ;o)
|
|
|
|
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 179-8
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Jun 3 2004 Mike A. Harris <mharris@redhat.com> 179-7
|
|
|
|
- Rebuilt for FC3 devel
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 179-6.EL
|
2004-09-09 15:05:49 +00:00
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Sep 8 2003 Mike A. Harris <mharris@redhat.com> 179-5.EL
|
|
|
|
- Rebuilt 179-5 for Taroon
|
|
|
|
|
2004-09-09 15:04:59 +00:00
|
|
|
* Mon Sep 8 2003 Mike A. Harris <mharris@redhat.com> 179-5
|
|
|
|
- Added xterm-179-ppc-fix-bug-101472.patch ifarch ppc ppc64 to fix bug (#101472)
|
|
|
|
|
|
|
|
* Wed Aug 27 2003 Bill Nottingham <notting@redhat.com> 179-4.1
|
|
|
|
- fix symlink
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Wed Aug 13 2003 Mike A. Harris <mharris@redhat.com> 179-3.EL
|
|
|
|
- Rebuilt for Taroon with symlink fixes.
|
|
|
|
|
|
|
|
* Wed Aug 13 2003 Mike A. Harris <mharris@redhat.com> 179-3
|
|
|
|
- Added symlink /usr/X11R6/bin/xterm pointing to _bindir/xterm so that apps
|
|
|
|
and scripts which invoke xterm explicitly as /usr/X11R6/bin/xterm, will
|
|
|
|
continue to work correctly without surprises (#101994)
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 179-2.EL
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri May 30 2003 Mike A. Harris <mharris@redhat.com> 179-1.EL
|
|
|
|
- Bump release to 1.EL for Red Hat Enterprise Linux build
|
|
|
|
|
|
|
|
* Mon May 26 2003 Mike A. Harris <mharris@redhat.com> 179-1
|
|
|
|
- Updated to upstream xterm 179
|
|
|
|
- [SECURITY] Added xterm-can-2003-0063.patch from XFree86 4.3.0-12 package
|
|
|
|
- Added Red Hat xterm-resources-redhat.patch from XFree86 4.3.0-12 package
|
|
|
|
- Added "chmod -R u+w *" after source is decompressed or else patches can not
|
|
|
|
be applied due to upstream source being read only files
|
|
|
|
- Built xterm 179-1 in rawhide
|
|
|
|
|
|
|
|
* Mon May 5 2003 Mike A. Harris <mharris@redhat.com> 177-2.0.EL
|
|
|
|
- Bump release to 2.0.EL for Red Hat Enterprise Linux build
|
|
|
|
|
|
|
|
* Mon May 5 2003 Mike A. Harris <mharris@redhat.com> 177-2
|
|
|
|
- Build fix for lib64: _x11datadir == /usr/X11R6/lib
|
|
|
|
- Another lib64 build fix: xterm uses /usr/%%{_lib}/X11/app-defaults when it
|
|
|
|
should be using an arch-neutral dir {_x11datadir}/X11/app-defaults instead
|
|
|
|
|
|
|
|
* Tue Apr 15 2003 Mike A. Harris <mharris@redhat.com> 177-1
|
|
|
|
- Call configure with "--enable-luit --enable-warnings --enable-wide-chars
|
|
|
|
--with-utempter"
|
|
|
|
- Initial build.
|