2006-12-14 16:53:16 +01:00
|
|
|
#
|
|
|
|
# spec file for package screen (Version 4.0.2)
|
|
|
|
#
|
2009-05-28 03:45:47 +02:00
|
|
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-14 16:53:16 +01:00
|
|
|
#
|
2009-05-28 03:45:47 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2006-12-14 16:53:16 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2009-05-28 03:45:47 +02:00
|
|
|
Url: http://www.gnu.org/software/screen/
|
2008-05-16 14:56:02 +02:00
|
|
|
|
2006-12-14 16:53:16 +01:00
|
|
|
Name: screen
|
2007-03-29 18:27:59 +02:00
|
|
|
BuildRequires: ncurses-devel utempter
|
2008-05-16 14:56:02 +02:00
|
|
|
License: GPL v2 or later
|
2006-12-14 16:53:16 +01:00
|
|
|
Group: System/Console
|
|
|
|
PreReq: %install_info_prereq
|
2008-05-16 14:56:02 +02:00
|
|
|
AutoReqProv: on
|
2006-12-14 16:53:16 +01:00
|
|
|
Version: 4.0.2
|
2009-05-28 03:45:47 +02:00
|
|
|
Release: 189
|
2006-12-14 16:53:16 +01:00
|
|
|
Summary: A program to allow multiple screens on a VT100/ANSI Terminal
|
|
|
|
Source: screen-4.0.2.tar.gz
|
|
|
|
Patch: screen-4.0.2.dif
|
|
|
|
Patch1: screen-__P.diff
|
|
|
|
Patch2: screen-gcc4.diff
|
|
|
|
Patch3: screen-4.0.2-comb.diff
|
2008-05-16 14:56:02 +02:00
|
|
|
Patch4: screen-man-loginshell.diff
|
2006-12-14 16:53:16 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
With this program you can take advantage of the multitasking abilities
|
|
|
|
of your Linux system by opening several sessions over one terminal. The
|
|
|
|
sessions can also be detached and resumed from another login terminal.
|
|
|
|
|
|
|
|
Documentation: man page
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Oliver Lauman
|
|
|
|
Juergen Weigert <jnweiger@immd4.informatik.uni-erlangen.de>
|
|
|
|
Michael Schroeder <mlschroe@immd4.informatik.uni-erlangen.de>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup
|
|
|
|
%patch
|
|
|
|
%patch1
|
|
|
|
%patch2 -p1
|
|
|
|
%patch3
|
2008-05-16 14:56:02 +02:00
|
|
|
%patch4 -p1
|
2006-12-14 16:53:16 +01:00
|
|
|
|
|
|
|
%build
|
2009-05-28 03:45:47 +02:00
|
|
|
CFLAGS="-DMAXWIN=1000 $RPM_OPT_FLAGS" ./configure --prefix=/usr --infodir=%{_infodir} \
|
2006-12-14 16:53:16 +01:00
|
|
|
--mandir=%{_mandir} \
|
|
|
|
--with-socket-dir='(eff_uid ? "/var/run/uscreens" : "/var/run/screens")' \
|
|
|
|
--with-sys-screenrc=/etc/screenrc \
|
|
|
|
--with-pty-group=5 \
|
|
|
|
--enable-locale \
|
|
|
|
--enable-telnet \
|
|
|
|
--enable-colors256 \
|
|
|
|
--verbose
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
rm -f $RPM_BUILD_ROOT/usr/bin/screen
|
|
|
|
mv $RPM_BUILD_ROOT/usr/bin/screen-%version $RPM_BUILD_ROOT/usr/bin/screen
|
|
|
|
chmod 755 $RPM_BUILD_ROOT/usr/bin/screen
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/run/screens
|
|
|
|
chmod 755 $RPM_BUILD_ROOT/var/run/screens
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/run/uscreens
|
|
|
|
chmod 1777 $RPM_BUILD_ROOT/var/run/uscreens
|
|
|
|
install -m 644 screenrc $RPM_BUILD_ROOT/etc/screenrc
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config /etc/screenrc
|
|
|
|
%attr(555,root,root) /usr/bin/screen
|
|
|
|
%dir /usr/share/screen
|
|
|
|
/usr/share/screen/utf8encodings
|
|
|
|
%dir /var/run/screens
|
|
|
|
%dir /var/run/uscreens
|
|
|
|
%doc %{_infodir}/screen.info*.gz
|
|
|
|
%doc %{_mandir}/man1/screen.1.gz
|
|
|
|
|
|
|
|
%post
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2007-03-29 18:27:59 +02:00
|
|
|
%changelog
|
2009-05-28 03:45:47 +02:00
|
|
|
* Tue May 26 2009 mls@suse.de
|
|
|
|
- re-add lost maxwin definition [fate#301190]
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed May 14 2008 jw@suse.de
|
|
|
|
- A few lines added to docu explaining login-shells and
|
|
|
|
starting with '-' trick.
|
|
|
|
* Thu Mar 29 2007 dmueller@suse.de
|
2007-03-29 18:27:59 +02:00
|
|
|
- add ncurses-devel BuildRequires
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Oct 23 2006 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix two bugs in handling of combining characters [#214412]
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Feb 10 2006 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- enable support for 256 colors [#136684]
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Jan 26 2006 sbrabec@suse.cz
|
2006-12-14 16:53:16 +01:00
|
|
|
- Added %%install_info_prereq.
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-05-16 14:56:02 +02:00
|
|
|
* Sat Oct 29 2005 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix ut_time aliasing problem
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Apr 08 2005 meissner@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- execl 0 -> (char*)0.
|
2008-05-16 14:56:02 +02:00
|
|
|
* Tue Sep 28 2004 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- clear ti/te for xterms so that users can use xterm's scrollbar
|
2008-05-16 14:56:02 +02:00
|
|
|
* Sun Sep 12 2004 kukuk@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- Don't use __P from glibc
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Feb 16 2004 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix socketdir quoting
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Feb 12 2004 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 4.0.2
|
|
|
|
- move sockdirs to /var/run and include them in package
|
2008-05-16 14:56:02 +02:00
|
|
|
* Sat Jan 10 2004 adrian@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- add %%defattr
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Sep 18 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 4.0.1 (fixes another bug of the parser)
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Sep 12 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix off by one error in variable expansion
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Sep 12 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- don't resize xterms on startup
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Sep 08 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 4.0.0final
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed Aug 27 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 4.0.0beta2
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Aug 01 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 4.0.0beta1
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Apr 24 2003 ro@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix install_info --delete call and move from preun to postun
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Mar 13 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 3.9.15: changing the window title could append
|
|
|
|
junk to the title
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed Mar 12 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 3.9.14: one small docu change and a small improvement
|
|
|
|
in the windowlist command
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Feb 24 2003 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to 3.9.14beta1
|
|
|
|
- build screen with buildroot
|
|
|
|
- remove xf86 dependency, use configure option instead
|
|
|
|
- use install-info macro to install info page
|
2008-05-16 14:56:02 +02:00
|
|
|
* Tue Oct 01 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix WrapChar() scrolling region reset code to always use a
|
|
|
|
valid scrolling region (#20367)
|
2008-05-16 14:56:02 +02:00
|
|
|
* Tue Sep 17 2002 ro@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- removed bogus self-provides
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Sep 05 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to official screen-3.9.13, contains one small bug
|
|
|
|
fix
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Aug 29 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to official screen-3.9.12
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Aug 19 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to screen-3.9.12beta2
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Mar 08 2002 kukuk@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- Add /usr/share/screen to filelist
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed Mar 06 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- disable pam support again
|
|
|
|
- fix segmentation fault in screen's reattach password check
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Feb 22 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix passing of NUL bytes when recoding is active
|
|
|
|
- moved uid/gid retrieval in front of FindEncoding
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Feb 18 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- added missing /usr/share/screen/utf8encodings files
|
|
|
|
- small patch to fix hardstatus width
|
2008-05-16 14:56:02 +02:00
|
|
|
* Thu Feb 14 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to official screen-3.9.11
|
|
|
|
- enabled pam & localized dates
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Feb 11 2002 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to screen-3.9.11beta7
|
2008-05-16 14:56:02 +02:00
|
|
|
* Tue Jan 29 2002 okir@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- require utempter to build; zapped s bit
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Jan 25 2002 okir@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- require utempter to build
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed Sep 05 2001 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- nominal upgrade to screen-3.9.10
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Sep 03 2001 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- Security fix for the Multiattach-bug in /usr/bin/screen
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Jul 23 2001 bk@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- added select-fix for fifo-testcase to build on s390x
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri May 25 2001 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update -> 3.9.9
|
2008-05-16 14:56:02 +02:00
|
|
|
* Tue May 08 2001 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- added workaround for broken xterm to global screenrc
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Apr 27 2001 mls@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix screen -wipe (bugzilla bug #2990)
|
|
|
|
- fix f10 function key (bugzilla bug #4326)
|
|
|
|
- fix 0620 pty mode autodetection (bugzilla bug #6304)
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Sep 04 2000 uli@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- fix for root compromise using configurable visual bell string
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Feb 25 2000 kukuk@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- Move /usr/{info,man} -> /usr/share/{info,man}
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Oct 22 1999 uli@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update -> 3.9.5
|
2008-05-16 14:56:02 +02:00
|
|
|
* Mon Sep 13 1999 bs@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
2008-05-16 14:56:02 +02:00
|
|
|
* Fri Nov 27 1998 uli@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- Update 3.7.3 -> 3.7.6
|
2008-05-16 14:56:02 +02:00
|
|
|
* Wed Apr 30 1997 florian@suse.de
|
2006-12-14 16:53:16 +01:00
|
|
|
- update to version 3.7.3
|
|
|
|
- mv /usr/etc/screenrc /etc/
|