cvsdist 7b28834
Summary: A mouse server for the Linux console.
cvsdist 7b28834
Name: gpm
Zdenek Prikryl e6e7901
Version: 1.20.5
Zdenek Prikryl e6e7901
Release: 1%{?dist}
Tomas Janousek 067f98b
License: GPLv2+
cvsdist 7b28834
Group: System Environment/Daemons
Zdenek Prikryl e6e7901
URL: http://unix.schottelius.org/gpm/
Zdenek Prikryl e6e7901
Source: http://unix.schottelius.org/gpm/archives/%{name}-%{version}.tar.gz
havill 6bc43cf
Source1: gpm.init
cvsdist f476c1f
Source2: inputattach.c
Zdenek Prikryl 5b9f257
Patch1: gpm-1.20.1-multilib.patch
Zdenek Prikryl 5b9f257
Patch2: gpm-1.20.1-lib-silent.patch
Zdenek Prikryl 5b9f257
Patch3: gpm-1.20.3-gcc4.3.patch
Zdenek Prikryl 809b8e4
Patch4: gpm-1.20.5-close-fds.patch
Zdenek Prikryl e6e7901
Patch5: gpm-1.20.1-weak-wgetch.patch
cvsdist 84a7019
Prereq: /sbin/chkconfig /sbin/ldconfig /sbin/install-info
cvsdist c78d088
Requires: bash >= 2.0
cvsdist 7b28834
# this defines the library version that this package builds.
Zdenek Prikryl e6e7901
%define LIBVER 2.1.0
cvsdist 7b28834
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Zdenek Prikryl e6e7901
BuildRequires: sed gawk texinfo bison ncurses-devel autoconf
cvsdist 7b28834
cvsdist 7b28834
%description
cvsdist 7b28834
Gpm provides mouse support to text-based Linux applications like the
cvsdist 7b28834
Emacs editor and the Midnight Commander file management system.  Gpm
cvsdist 7b28834
also provides console cut-and-paste operations using the mouse and
cvsdist 7b28834
includes a program to allow pop-up menus to appear at the click of a
cvsdist 7b28834
mouse button.
cvsdist 7b28834
cvsdist 7b28834
%package devel
Tomas Janousek fd97f49
Requires: %{name} = %{version}-%{release}
cvsdist 84a7019
Summary: A mouse server for the Linux console.
cvsdist 84a7019
Group: System Environment/Daemons
cvsdist 7b28834
cvsdist 7b28834
%description devel
cvsdist 84a7019
Gpm provides mouse support to text-based Linux applications like the
cvsdist 84a7019
Emacs editor and the Midnight Commander file management system.  Gpm
cvsdist 84a7019
also provides console cut-and-paste operations using the mouse and
cvsdist 84a7019
includes a program to allow pop-up menus to appear at the click of a
cvsdist 84a7019
mouse button.
cvsdist 7b28834
cvsdist 7b28834
cvsdist 7b28834
%prep
cvsdist 7b28834
%setup -q
Zdenek Prikryl 5b9f257
%patch1 -p1 -b .multilib
Zdenek Prikryl 5b9f257
%patch2 -p1 -b .lib-silent
Zdenek Prikryl 5b9f257
%patch3 -p1 -b .gcc4.3
Zdenek Prikryl 5b9f257
%patch4 -p1 -b .close-fds
Zdenek Prikryl e6e7901
%patch5 -p1 -b .weak-wgetch
cvsdist 7b28834
cvsdist 7b28834
%build
Tomas Janousek 287990b
rm -f configure
Zdenek Prikryl 5b9f257
rm -f src/prog/open_console.o
cvsdist 7b28834
autoconf
cvsdist 7b28834
CFLAGS="-D_GNU_SOURCE $RPM_OPT_FLAGS" \
cvsdist 7b28834
    %configure
cvsdist 7b28834
make
cvsdist f476c1f
gcc $RPM_OPT_FLAGS -o inputattach %{SOURCE2}
cvsdist f476c1f
cvsdist 7b28834
cvsdist 7b28834
%install
cvsdist 7b28834
rm -rf %{buildroot}
cvsdist 7b28834
Zdenek Prikryl e6e7901
%makeinstall
cvsdist 7b28834
Zdenek Prikryl e6e7901
ln -sf libgpm.so.%{LIBVER} $RPM_BUILD_ROOT/%{_libdir}/libgpm.so
cvsdist 7b28834
cvsdist a19f9c1
%ifnarch s390 s390x
Zdenek Prikryl e6e7901
mkdir -p %{buildroot}%{_sysconfdir}
cvsdist 7b28834
mkdir -p %{buildroot}%{_sysconfdir}/rc.d/init.d  
Zdenek Prikryl e6e7901
install -m 755 inputattach %{buildroot}%{_sbindir}
Zdenek Prikryl e6e7901
install -m 644 conf/gpm-* %{buildroot}%{_sysconfdir}
havill 68ec9e2
install -m 755 %{SOURCE1} %{buildroot}%{_sysconfdir}/rc.d/init.d/gpm
Zdenek Prikryl e6e7901
%else
Zdenek Prikryl e6e7901
# we're shipping only libraries in s390[x], so
cvsdist a19f9c1
# remove stuff from the buildroot that we aren't shipping
Zdenek Prikryl e6e7901
rm -rf %{buildroot}%{_sbindir}
Zdenek Prikryl e6e7901
rm -rf %{buildroot}%{_bindir}
Zdenek Prikryl e6e7901
rm -rf %{buildroot}%{_mandir}
cvsdist a19f9c1
%endif
cvsdist a19f9c1
cvsdist 7b28834
%clean
cvsdist 7b28834
rm -rf %{buildroot}
cvsdist 7b28834
cvsdist 7b28834
%post
cvsdist a19f9c1
%ifnarch s390 s390x
cvsdist 7b28834
/sbin/chkconfig --add gpm
cvsdist a19f9c1
%endif
cvsdist 7b28834
/sbin/install-info %{_infodir}/gpm.info.gz %{_infodir}/dir
Zdenek Prikryl e6e7901
/sbin/ldconfig
cvsdist 7b28834
cvsdist 7b28834
%preun
cvsdist a19f9c1
%ifnarch s390 s390x   
Zdenek Prikryl e6e7901
if [ "$1" = "0" ]; then
Zdenek Prikryl e6e7901
    /sbin/service gpm stop >/dev/null 2>&1
cvsdist 7b28834
    /sbin/chkconfig --del gpm
cvsdist 7b28834
fi
Zdenek Prikryl e6e7901
%endif
Zdenek Prikryl e6e7901
/sbin/install-info %{_infodir}/gpm.info.gz --delete %{_infodir}/dir
cvsdist 7b28834
cvsdist 7b28834
%postun
cvsdist a19f9c1
%ifnarch s390 s390x
cvsdist 7b28834
if [ "$1" -ge "1" ]; then
Zdenek Prikryl e6e7901
    /sbin/service gpm condrestart >/dev/null 2>&1
cvsdist 7b28834
fi
cvsdist a19f9c1
%endif
cvsdist 7b28834
/sbin/ldconfig
cvsdist 7b28834
cvsdist 7b28834
%files
cvsdist 7b28834
%defattr(-,root,root)
Zdenek Prikryl e6e7901
%doc BUGS COPYING README TODO
Zdenek Prikryl e6e7901
%doc doc/README* doc/FAQ doc/Announce doc/changes/*
Zdenek Prikryl e6e7901
%{_infodir}/*
Zdenek Prikryl e6e7901
%{_libdir}/libgpm.so.*
cvsdist a19f9c1
%ifnarch s390 s390x
Zdenek Prikryl e6e7901
%config(noreplace) %{_sysconfdir}/gpm-*
Zdenek Prikryl e6e7901
%attr(0755,root,root) %{_sysconfdir}/rc.d/init.d/gpm
Zdenek Prikryl e6e7901
%{_sbindir}/*
Zdenek Prikryl e6e7901
%{_bindir}/*
Zdenek Prikryl e6e7901
%{_mandir}/*/*
cvsdist a19f9c1
%endif
cvsdist 7b28834
cvsdist 7b28834
%files devel
cvsdist 7b28834
%defattr(-,root,root)
cvsdist 7b28834
%{_includedir}/*
cvsdist 7b28834
%{_libdir}/libgpm.a
cvsdist 7b28834
%{_libdir}/libgpm.so
cvsdist 7b28834
cvsdist 7b28834
%changelog
Zdenek Prikryl e6e7901
* Thu Jul 17 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.5-1
Zdenek Prikryl e6e7901
- Updated to 1.20.5
Zdenek Prikryl e6e7901
- Removed doc patch
Zdenek Prikryl e6e7901
- Removed lisp stuff, it is part of emacs-common now 
Zdenek Prikryl e6e7901
- Spec clean up
Zdenek Prikryl e6e7901
Zdenek Prikryl c19a4ca
* Thu Jun 04 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.3-2
Zdenek Prikryl c19a4ca
- Enable gpm in runlevel 5
Zdenek Prikryl c19a4ca
Zdenek Prikryl 5b9f257
* Thu May 29 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.20.3-1
Zdenek Prikryl 5b9f257
- Updated to 1.20.3
Zdenek Prikryl 5b9f257
- Fixed init script to comply with LSB standard (#246937)
Zdenek Prikryl 5b9f257
- Mass patch cleanup
Zdenek Prikryl 5b9f257
- Fixed typo in doc (#446679)
Zdenek Prikryl 5b9f257
2bd95e2
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.20.1-90
2bd95e2
- Autorebuild for GCC 4.3
2bd95e2
Tomas Janousek 067f98b
* Fri Aug 24 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-89
Tomas Janousek 067f98b
- license tag update (and rebuild for BuildID, etc.)
Tomas Janousek 067f98b
8c31799
* Wed Jul 25 2007 Jesse Keating <jkeating@redhat.com> - 1.20.1-88
8c31799
- Rebuild for RH #249435
8c31799
Tomas Janousek 11b8ab3
* Tue Jul 24 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-87
Tomas Janousek 11b8ab3
- replace OPEN_MAX with sysconf(_SC_OPEN_MAX), fixing build with 2.6.23 kernel
Tomas Janousek 11b8ab3
Tomas Janousek 1a32313
* Tue Jul 24 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-86
Tomas Janousek 1a32313
- don't install t-mouse.el, emacs-common contains a newer version,
Tomas Janousek 1a32313
  fixes #249362
Tomas Janousek 1a32313
Tomas Janousek 9c9f0b6
* Fri Jun 29 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-85
Tomas Janousek 9c9f0b6
- applied patch for #246219, fixing segfault with vsyslog on x86_64
Tomas Janousek 9c9f0b6
Tomas Janousek aab7e16
* Wed May 23 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-84
Tomas Janousek aab7e16
- applied patch for #240389, fixing default handlers
Tomas Janousek aab7e16
Tomas Janousek fd97f49
* Thu May 03 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-83
Tomas Janousek fd97f49
- gpm-devel now requires version-release correctly, fixes #238785
Tomas Janousek fd97f49
Tomas Janousek d956636
* Mon Apr 02 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-82
Tomas Janousek d956636
- updated inputattach.c to 1.24 from cvs, fixes #231635
Tomas Janousek d956636
Tomas Janousek 287990b
* Fri Mar 23 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-81
Tomas Janousek 287990b
- the patch for #168076 caused a strange behaviour with ncurses, fixed it
Tomas Janousek 287990b
  differently
Tomas Janousek 287990b
Tomas Janousek 6df923c
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-80
Tomas Janousek 6df923c
- forgot to add the patch for #168076
Tomas Janousek 6df923c
Tomas Janousek 81e8541
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-79
Tomas Janousek 81e8541
- added disttag to release
Tomas Janousek 81e8541
Tomas Janousek 6f30565
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-78
Tomas Janousek 6f30565
- refuse connections while waiting for console, fixes #168076
Tomas Janousek 6f30565
Tomas Janousek 5b9ef5a
* Mon Jan 22 2007 Tomas Janousek <tjanouse@redhat.com> - 1.20.1-77
Tomas Janousek 5b9ef5a
- #223696: non-failsafe install-info use in scriptlets
Tomas Janousek 5b9ef5a
prockai 468a0ae
* Tue Oct 10 2006 Petr Rockai <prockai@redhat.com> - 1.20-1-76
prockai 468a0ae
- align sleeps to tick boundary, should reduce cpu wakeups
prockai c481edb
  on laptops, fixes #205064 (patch by Arjan van de Ven)
prockai 468a0ae
- disable gpm altogether in runlevel 5, it is probably not
prockai 468a0ae
  worth the overhead considering it is barely used at all
prockai 468a0ae
prockai 4e9de1e
* Fri Sep 22 2006 Petr Rockai <prockai@redhat.com> - 1.20.1-75
prockai 4e9de1e
- fix a bug where gpm daemon kept stdin/out/err open after
prockai 4e9de1e
  detaching from terminal, causing eg. pipes from initscript
prockai 4e9de1e
  to hang for the lifetime of gpm
prockai 4e9de1e
cebc19c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.20.1-74.1
cebc19c
- rebuild
cebc19c
f804cd1
* Wed Jun  7 2006 Jeremy Katz <katzj@redhat.com> - 1.20.1-74
f804cd1
- rebuild for -devel deps
f804cd1
prockai e9d557a
* Mon Feb 13 2006 Petr Rockai <prockai@redhat.com> - 1.20.1-73.3
prockai e9d557a
- rebuild due to failure on x86-64 (possibly a glitch?)
prockai e9d557a
7edf7d9
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.20.1-73.2
7edf7d9
- bump again for double-long bug on ppc(64)
7edf7d9
ba79877
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.20.1-73.1
ba79877
- rebuilt for new gcc4.1 snapshot and glibc changes
ba79877
prockai 1e4ad8c
* Wed Jan 18 2006 Petr Rockai <prockai@redhat.com> 1.20.1-73
prockai 1e4ad8c
- do not ooops in gpm when console device cannot be found, print
prockai 1e4ad8c
  an error message instead and exit(1), as per BR 140025, 176178
prockai 1e4ad8c
- do not print messages in libgpm, unless envvar GPM_VERBOSE
prockai 1e4ad8c
  is set -- avoids unwanted clutter from libgpm in apps like dialog
prockai 1e4ad8c
  or mc when gpm is not available
prockai 1e4ad8c
323ad04
* Thu Dec 22 2005 Jesse Keating <jkeating@redhat.com> 1.20.1-72
323ad04
- rebuilt again
323ad04
474abab
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
474abab
- rebuilt
06c86be
- added autoconf as a BuildReq
474abab
prockai 0df1394
* Fri Mar 04 2005 Petr Rockai <prockai@redhat.com>
prockai 0df1394
- rebuilt
prockai 0df1394
havill 747e568
* Mon Feb 14 2005 Adrian Havill <havill@redhat.com>
havill 747e568
- rebuilt
havill 747e568
havill 1959126
* Thu Oct 21 2004 Adrian Havill <havill@redhat.com> 1.20.1-66
havill 1959126
- avoid spawning multiple copies of inputattach, and kill process
havill 1959126
  when gpm shuts down (#135776)
havill 1959126
63174f3
* Wed Oct 20 2004 Bill Nottingham <notting@redhat.com> 1.20.1-65
63174f3
- remove buildroot paths from gpm.info, fixing #135305
63174f3
havill 4d39c74
* Wed Oct 20 2004 Adrian Havill <havill@redhat.com> 1.20.1-64
havill 2662c72
- fixing multilib conflict (#135305):
havill 2662c72
  o remove buildsys check/conditional for gziping info pages (let rpm
havill 2662c72
    do it)
havill 4d39c74
  o don't pre-byte-compile emacs code
havill 2662c72
99f5665
* Thu Oct 14 2004 Bill Nottingham <notting@redhat.com> 1.20.1-62
99f5665
- fix remaining sourcing of /etc/sysconfig/gpm (#135776)
99f5665
havill 2b9583d
* Wed Oct 13 2004 Adrian Havill <havill@redhat.com> 1.20.1-61
havill 9e3544e
- remove unnecessary diagnostic and check of the consolename (#129962)
havill 68ec9e2
- remove /etc/sysconfig/gpm; set unset defaults in the init script instead
havill 68ec9e2
  after mousecfg is (or is not) read
havill 9e3544e
Florian La Roche 08dcf69
* Wed Oct 13 2004 Florian La Roche <laroche@redhat.com>
Florian La Roche 08dcf69
- sysconfig/gpm should probably go away, that is more confusing than
Florian La Roche 08dcf69
  helping anyone
Florian La Roche 08dcf69
- read at least sysconfig/gpm first as it seems to have the default values
Florian La Roche 08dcf69
  and sysconfig/mouse is getting probed values and probably has better
Florian La Roche 08dcf69
  settings in it.
Florian La Roche 08dcf69
havill 62dcfa9
* Tue Oct 12 2004 Adrian Havill <havill@redhat.com> 1.20.1-57
havill 62dcfa9
- read both the sysconfig/mouse and sysconfig/gpm (preferrence to gpm
havill 62dcfa9
  settings), not just one of them, if both exist (#134389)
havill 62dcfa9
Florian La Roche 8cec0f4
* Tue Oct 12 2004 Florian La Roche <Florian.LaRoche@redhat.de>
Florian La Roche 8cec0f4
- remove gzip of info pages within .spec file, #135305
Florian La Roche 8cec0f4
Florian La Roche 23a9ea3
* Sat Oct 09 2004 Florian La Roche <Florian.LaRoche@redhat.de>
Florian La Roche 23a9ea3
- initscript cleanup
Florian La Roche 23a9ea3
havill f599200
* Thu Sep 23 2004 Adrian Havill <havill@redhat.com> 1.20.1-54
havill f599200
- change init so that MOUSECFG fallsback to /etc/sysconfig/gpm if
havill f599200
  /etc/sysconfig/mouse doesn't exist (#133141)
havill d046600
- fixed compile vs new kernheaders (#131783)
cvsdist 63c5666
cvsdist a3cc5c0
* Tue May 04 2004 Adrian Havill <havill@redhat.com> 1.20.1-49
cvsdist a3cc5c0
- remove superfluous "i die" msg (#121845)
cvsdist a3cc5c0
cvsdist a3cc5c0
* Tue May 04 2004 Adrian Havill <havill@redhat.com> 1.20.1-48
cvsdist a3cc5c0
- restore gpmopen() NULL check that was removed with the
cvsdist a3cc5c0
  evdev superpatch (#118554)
cvsdist a3cc5c0
cvsdist a3cc5c0
* Fri Apr 16 2004 Adrian Havill <havill@redhat.com> 1.20.1-47
cvsdist a3cc5c0
- make presence of t-mouse.el flexible (#120958)
cvsdist a3cc5c0
cvsdist a3cc5c0
* Wed Mar 31 2004 Adrian Havill <havill@redhat.com> 1.20.1-46
cvsdist a3cc5c0
- revise nodebug patch as liblow reporting the VC to the console through
cvsdist a3cc5c0
  stderr has re-appeared (#117676)
cvsdist a3cc5c0
cvsdist a3cc5c0
* Mon Mar 22 2004 Adrian Havill <havill@redhat.com> 1.20.1-45
cvsdist a3cc5c0
- remove circular ncurses dep for prelink by restoring wgetch
cvsdist a3cc5c0
  patch (#117150)
cvsdist a3cc5c0
cvsdist f476c1f
* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 1.20.1-44
cvsdist f476c1f
- include inputattach
cvsdist f476c1f
- if configured mouse has IMOUSETYPE, use inputattach
cvsdist f476c1f
cvsdist f476c1f
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist f476c1f
- rebuilt
cvsdist f476c1f
cvsdist f476c1f
* Thu Feb 26 2004 Adrian Havill <havill@redhat.com> 1.20.1-43
cvsdist f476c1f
- add event device (for 2.6 kernel) superpatch-- includes all
cvsdist f476c1f
  patches up to release 38; thanks to Dmitry Torokhov
cvsdist f476c1f
- change default mouse device over to /dev/input/mice
cvsdist f476c1f
- set mouse type to Intellimouse Explorer (exps2), which is what
cvsdist f476c1f
  the 2.6 kernel exports by default
cvsdist f476c1f
cvsdist f476c1f
* Sat Feb 14 2004 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist f476c1f
- already add shared lib symlinks at install time
cvsdist f476c1f
- fix subscript #114289
cvsdist f476c1f
cvsdist f476c1f
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist f476c1f
- rebuilt
cvsdist f476c1f
cvsdist f476c1f
* Tue Nov 18 2003 Adrian Havill <havill@redhat.com> 1.20.1-39
cvsdist f476c1f
- re-add the $OPTIONS that gets pulled in from /etc/sysconfig/gpm
cvsdist f476c1f
  to the init.d script (#110248)
cvsdist f476c1f
cvsdist c78d088
* Wed Aug 07 2003 Adrian Havill <havill@redhat.com> 1.20.1-38
cvsdist c78d088
- Gpm_Open() NULL deref revisited (#101104). Patch by
cvsdist c78d088
  <leonardjo@hetnet.nl>
cvsdist c78d088
* Wed Jul 30 2003 Adrian Havill <havill@redhat.com> 1.20.1-37
cvsdist c78d088
- removed auto-add of repeat with -M (#84310)
cvsdist c78d088
cvsdist c78d088
* Tue Jul 29 2003 Adrian Havill <havill@redhat.com> 1.20.1-36
cvsdist c78d088
- fixed grammar typos in the init script (#89109)
cvsdist c78d088
- don't deref NULL string in Gpm_Open (#101104)
cvsdist c78d088
cvsdist c78d088
* Wed Jul 02 2003 Adrian Havill <havill@redhat.com> 1.20.1-35
cvsdist c78d088
- remove debug output from gpm_report() to prevent spurious
cvsdist c78d088
  debugging msgs even when not in debug mode (#98210)
cvsdist c78d088
  
cvsdist c78d088
* Thu Jun 26 2003 Adrian Havill <havill@redhat.com> 1.20.1-33
cvsdist c78d088
- reversed -t and -m params in init script, removed $OPTION
cvsdist c78d088
- add doc blurb regarding no auto-repeat with multiple mice
cvsdist c78d088
cvsdist c78d088
* Tue Jun 24 2003 Adrian Havill <havill@redhat.com> 1.20.1-32
cvsdist c78d088
- update version
cvsdist c78d088
- add -lm for ceil()
cvsdist c78d088
- add hltest, mouse-test for all but zSeries
cvsdist c78d088
cvsdist c78d088
* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com>
cvsdist c78d088
- don't link against -lncurses, instead make wgetch and stdscr weak
cvsdist c78d088
  undefined symbols to break library dependency cycle
cvsdist c78d088
cvsdist c78d088
* Thu Jun 12 2003 Elliot Lee <sopwith@redhat.com>
cvsdist c78d088
- Remove pam requirement
cvsdist c78d088
cvsdist c78d088
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist c78d088
- rebuilt
cvsdist c78d088
cvsdist a19f9c1
* Wed Jan 29 2003 Bill Nottingham <notting@redhat.com> 1.19.13-27
cvsdist a19f9c1
- ship libraries on s390/s390x
cvsdist a19f9c1
cvsdist a19f9c1
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist a19f9c1
- rebuilt
cvsdist a19f9c1
cvsdist a19f9c1
* Mon Jan 13 2003 Bill Nottingham <notting@redhat.com> 1.19.13-25
cvsdist a19f9c1
- don't automatically enable the repeater when '-M' is in use
cvsdist a19f9c1
cvsdist a19f9c1
* Fri Nov 22 2002 Tim Powers <timp@redhat.com>
cvsdist a19f9c1
- remove unpackaged files from the buildroot
cvsdist a19f9c1
cvsdist 7be0cef
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist 7be0cef
- automated rebuild
cvsdist 7be0cef
cvsdist 015b21c
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist 015b21c
- automated rebuild
cvsdist 015b21c
cvsdist 76236c6
* Tue Apr  9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 
cvsdist 76236c6
- Revert to the version from 7.2 because later versions have some grave
cvsdist 76236c6
  issues I can't {reproduce,debug} with my hardware, such as
cvsdist 76236c6
  #62540 and #61691
cvsdist 76236c6
cvsdist f7dd509
* Thu Jul 19 2001 Preston Brown <pbrown@redhat.com>
cvsdist f7dd509
- more documentation fixes for Netmouse type devices (#48885)
cvsdist f7dd509
cvsdist dbb6ddc
* Tue Jun 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist dbb6ddc
- add link from library major version number
cvsdist dbb6ddc
cvsdist dbb6ddc
* Mon Jun 25 2001 Preston Brown <pbrown@redhat.com>
cvsdist dbb6ddc
- small fixlet in init script (#36995)
cvsdist dbb6ddc
cvsdist dbb6ddc
* Tue Jun 19 2001 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist dbb6ddc
- add ExcludeArch: s390 s390x
cvsdist dbb6ddc
cvsdist 84a7019
* Fri Apr  6 2001 Preston Brown <pbrown@redhat.com>
cvsdist 84a7019
- work better with unsupported devfs (#23500, #34883)
cvsdist 84a7019
cvsdist 84a7019
* Mon Feb 05 2001 Karsten Hopp <karsten@redhat.de>
cvsdist 84a7019
- found another bug: tmpfile was never removed if
cvsdist 84a7019
  gpm was already running
cvsdist 84a7019
cvsdist 84a7019
* Mon Feb 05 2001 Karsten Hopp <karsten@redhat.de>
cvsdist 84a7019
- really fix tmpfile path
cvsdist 84a7019
cvsdist 84a7019
* Mon Feb 05 2001 Karsten Hopp <karsten@redhat.de>
cvsdist 84a7019
- fix tmpfile path (bugzilla  #25967)
cvsdist 84a7019
cvsdist 84a7019
* Tue Jan 30 2001 Preston Brown <pbrown@redhat.com>
cvsdist 84a7019
- don't make PID file world-writable.
cvsdist 84a7019
cvsdist 84a7019
* Mon Jan 29 2001 Preston Brown <pbrown@redhat.com>
cvsdist 84a7019
- fix up devel dependency on main package
cvsdist 84a7019
cvsdist 84a7019
* Sun Jan 28 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 84a7019
- Don't crash if we can't open /dev/console
cvsdist 84a7019
  (Happens with some devfs enabled kernels)
cvsdist 84a7019
Zdenek Prikryl 5b9f257
* Tue Jan 23 2001 Trond Eivind Glomsr´┐Żd <teg@redhat.com>
cvsdist 84a7019
- fix bug in i18n of initscript
cvsdist 84a7019
cvsdist 84a7019
* Tue Jan 23 2001 Preston Brown <pbrown@redhat.com>
cvsdist 84a7019
- bash2 style of i18n for initscript
cvsdist 84a7019
cvsdist 84a7019
* Wed Jan 17 2001 Preston Brown <pbrown@redhat.com>
cvsdist 84a7019
- i18n the initscript.
cvsdist 84a7019
cvsdist 84a7019
* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 84a7019
- Add hooks for extra options in /etc/sysconfig/gpm (#23547)
cvsdist 84a7019
cvsdist 84a7019
* Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
cvsdist 84a7019
- patch added to abort if running on a serial console (#15784)
cvsdist 84a7019
cvsdist 7b28834
* Fri Jul 28 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- cleaned up post section
cvsdist 7b28834
cvsdist 7b28834
* Wed Jul 26 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- clarification: pam requirement added to fix permissions on /dev/gpmctl (#12849)
cvsdist 7b28834
cvsdist 7b28834
* Sat Jul 22 2000 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 7b28834
- update to 1.19.3
cvsdist 7b28834
cvsdist 7b28834
* Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
cvsdist 7b28834
- move initscript back
cvsdist 7b28834
cvsdist 7b28834
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
cvsdist 7b28834
- automatic rebuild
cvsdist 7b28834
cvsdist 7b28834
* Fri Jun 30 2000 Matt Wilson <msw@redhat.com>
cvsdist 7b28834
- use sysconf(_SC_OPEN_MAX)
cvsdist 7b28834
cvsdist 7b28834
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- don't prereq, only require initscripts
cvsdist 7b28834
cvsdist 7b28834
* Mon Jun 26 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- fix up and move initscript
cvsdist 7b28834
- prereq initscripts >= 5.20
cvsdist 7b28834
cvsdist 7b28834
* Sat Jun 17 2000 Bill Nottingham <notting@redhat.com>
cvsdist 7b28834
- fix %config tag for initscript
cvsdist 7b28834
cvsdist 7b28834
* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
cvsdist 7b28834
- move it back
cvsdist 7b28834
cvsdist 7b28834
* Thu Jun 15 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- move init script
cvsdist 7b28834
cvsdist 7b28834
* Wed Jun 14 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- security patch on socket descriptor from Chris Evans.  Thanks Chris.
cvsdist 7b28834
- include limits.h for OPEN_MAX
cvsdist 7b28834
cvsdist 7b28834
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- 1.19.2, fix up root (setuid) patch
cvsdist 7b28834
- FHS paths
cvsdist 7b28834
cvsdist 7b28834
* Thu Apr  6 2000 Jakub Jelinek <jakub@redhat.com>
cvsdist 7b28834
- 1.19.1
cvsdist 7b28834
- call initgroups in gpm-root before spawning command as user
cvsdist 7b28834
- make gpm-root work on big endian
cvsdist 7b28834
cvsdist 7b28834
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7b28834
- call ldconfig directly in postun
cvsdist 7b28834
cvsdist 7b28834
* Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 7b28834
- rebuild with new libncurses
cvsdist 7b28834
cvsdist 7b28834
* Sat Mar 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 7b28834
- 1.19.0
cvsdist 7b28834
- fix build on systems that don't have emacs
cvsdist 7b28834
  (configure built t-mouse* only if emacs was installed)
cvsdist 7b28834
cvsdist 7b28834
* Tue Feb 29 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- important fix: improperly buildrooted for /usr/share/emacs/site-lisp, fixed.
cvsdist 7b28834
cvsdist 7b28834
* Tue Feb 15 2000 Jakub Jelinek <jakub@redhat.com>
cvsdist 7b28834
- avoid cluttering of syslog with gpm No data messages
cvsdist 7b28834
cvsdist 7b28834
* Mon Feb 14 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- disable-paste and mouse-test removed, they seem broken.
cvsdist 7b28834
cvsdist 7b28834
* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- updated gpm.init to have better shutdown and descriptive messages
cvsdist 7b28834
- strip lib
cvsdist 7b28834
cvsdist 7b28834
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
cvsdist 7b28834
- fix description
cvsdist 7b28834
- man pages are compressed
cvsdist 7b28834
cvsdist 7b28834
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- 1.18.1.
cvsdist 7b28834
cvsdist 7b28834
* Tue Sep 28 1999 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- upgraded to 1.18, hopefully fixes sparc protocol issues
cvsdist 7b28834
cvsdist 7b28834
* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
cvsdist 7b28834
- install-info sucks, and then you die.
cvsdist 7b28834
cvsdist 7b28834
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
cvsdist 7b28834
- chkconfig --del in %preun, not %postun
cvsdist 7b28834
cvsdist 7b28834
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- upgrade to 1.17.9
cvsdist 7b28834
- the maintainers are taking care of .so version now, removed patch
cvsdist 7b28834
cvsdist 7b28834
* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
cvsdist 7b28834
- initscript munging
cvsdist 7b28834
cvsdist 7b28834
* Wed Jun  2 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 7b28834
- disable-paste need not be setuid root in Red Hat 6.0 (#2654)
cvsdist 7b28834
cvsdist 7b28834
* Tue May 18 1999 Michael K. Johnson <johnsonm@redhat.com>
cvsdist 7b28834
- gpm.init had wrong pidfile name in comments; confused linuxconf
cvsdist 7b28834
cvsdist 7b28834
* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- make sure all binaries are stripped, make init stuff more chkconfig style
cvsdist 7b28834
- removed sparc-specific mouse stuff
cvsdist 7b28834
- bumped libver to 1.17.5
cvsdist 7b28834
- fixed texinfo source
cvsdist 7b28834
cvsdist 7b28834
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist 7b28834
- auto rebuild in the new build environment (release 2)
cvsdist 7b28834
cvsdist 7b28834
* Thu Mar  4 1999 Matt Wilson <msw@redhat.com>
cvsdist 7b28834
- updated to 1.75.5
cvsdist 7b28834
cvsdist 7b28834
* Tue Feb 16 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 7b28834
- avoid using makedev for internal functions (it is a #define in the system
cvsdist 7b28834
  headers)
cvsdist 7b28834
cvsdist 7b28834
* Wed Jan 13 1999 Preston Brown <pbrown@redhat.com>
cvsdist 7b28834
- upgrade to 1.17.2.
cvsdist 7b28834
cvsdist 7b28834
* Wed Jan 06 1999 Cristian Gafton <gafton@redhat.com>
cvsdist 7b28834
- enforce the use of -D_GNU_SOURCE so that it will compile on the ARM
cvsdist 7b28834
- build against glibc 2.1
cvsdist 7b28834
cvsdist 7b28834
* Tue Aug 11 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 7b28834
- build root
cvsdist 7b28834
cvsdist 7b28834
* Thu May 07 1998 Prospector System <bugs@redhat.com>
cvsdist 7b28834
- translations modified for de, fr, tr
cvsdist 7b28834
cvsdist 7b28834
* Wed Apr 22 1998 Michael K. Johnson <johnsonm@redhat.com>
cvsdist 7b28834
- enhanced initscript
cvsdist 7b28834
cvsdist 7b28834
* Fri Apr 10 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 7b28834
- recompiled for manhattan
cvsdist 7b28834
cvsdist 7b28834
* Wed Apr 08 1998 Erik Troan <ewt@redhat.com>
cvsdist 7b28834
- updated to 1.13
cvsdist 7b28834
cvsdist 7b28834
* Mon Nov 03 1997 Donnie Barnes <djb@redhat.com>
cvsdist 7b28834
- added patch from Richard to get things to build on the SPARC
cvsdist 7b28834
cvsdist 7b28834
* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
cvsdist 7b28834
- fixed the emacs patch to install the emacs files in the right
cvsdist 7b28834
  place (hopefully).
cvsdist 7b28834
cvsdist 7b28834
* Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
cvsdist 7b28834
- added chkconfig support
cvsdist 7b28834
- added install-info
cvsdist 7b28834
cvsdist 7b28834
* Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
cvsdist 7b28834
- upgraded from 1.10 to 1.12
cvsdist 7b28834
- added status/restart functionality to init script
cvsdist 7b28834
- added define LIBVER 1.11
cvsdist 7b28834
cvsdist 7b28834
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
cvsdist 7b28834
- built against glibc