wok rev 25294
updated screen, screen-pam and screen-terminfo (4.8.0 -> 4.9.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jul 19 17:34:06 2022 +0100 (2022-07-19) |
parents | 602fe1a031b1 |
children | 6e4600a4fb23 |
files | screen-pam/receipt screen-terminfo/receipt screen/description.txt screen/receipt |
line diff
1.1 --- a/screen-pam/receipt Tue Jul 19 11:14:38 2022 +0100 1.2 +++ b/screen-pam/receipt Tue Jul 19 17:34:06 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="screen-pam" 1.7 -VERSION="4.8.0" 1.8 +VERSION="4.9.0" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Terminal multiplexer with PAM support." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -17,7 +17,7 @@ 1.13 SUGGESTED="screen-terminfo" 1.14 PROVIDE="screen:pam" 1.15 DEPENDS="elfutils pam" 1.16 -BUILD_DEPENDS="ncursesw-extra texinfo" 1.17 +BUILD_DEPENDS="automake ncursesw-extra texinfo" 1.18 1.19 # What is the latest version available today? 1.20 current_version() 1.21 @@ -29,12 +29,13 @@ 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 + ./autogen.sh && 1.26 ./configure \ 1.27 --with-sys-screenrc=/etc/screenrc \ 1.28 --enable-pam \ 1.29 $CONFIGURE_ARGS && 1.30 make && 1.31 - make -j1 DESTDIR=$DESTDIR install && 1.32 + make -j1 install DESTDIR=$DESTDIR && 1.33 mkdir -p $DESTDIR/usr/share/terminfo && 1.34 tic -o $DESTDIR/usr/share/terminfo terminfo/screeninfo.src && 1.35 mkdir -p $DESTDIR/etc &&
2.1 --- a/screen-terminfo/receipt Tue Jul 19 11:14:38 2022 +0100 2.2 +++ b/screen-terminfo/receipt Tue Jul 19 17:34:06 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="screen-terminfo" 2.7 -VERSION="4.8.0" 2.8 +VERSION="4.9.0" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Terminal multiplexer, terminfo files." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -14,5 +14,5 @@ 2.13 genpkg_rules() 2.14 { 2.15 mkdir -p $fs/usr/share 2.16 - cp -a $install/usr/share/terminfo $fs/usr/share/ 2.17 + cp -a $install/usr/share/terminfo $fs/usr/share 2.18 }
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/screen/description.txt Tue Jul 19 17:34:06 2022 +0100 3.3 @@ -0,0 +1,24 @@ 3.4 +Screen is a full-screen window manager that multiplexes a 3.5 +physical terminal between several processes, typically 3.6 +interactive shells. 3.7 +Each virtual terminal provides the functions of the 3.8 +DEC VT100 terminal and, in addition, several control 3.9 +functions from the ANSI X3.64 (ISO 6429) and ISO 2022 3.10 +standards (e.g., insert and delete line and support for 3.11 +multiple character sets). 3.12 +There is a scrollback history buffer for each virtual 3.13 +terminal and a copy-and-paste mechanism that allows the 3.14 +user to move text regions between windows. 3.15 +When screen is called, it creates a single window with a 3.16 +shell in it (or the specified command) and then gets out of 3.17 +your way so that you can use the program as you normally 3.18 +would. Then, at any time, you can create new (full-screen) 3.19 +windows with other programs in them (including more shells), 3.20 +kill the current window, view a list of the active windows, 3.21 +turn output logging on and off, copy text between windows, 3.22 +view the scrollback history, switch between windows, etc. 3.23 +All windows run their programs completely independent of 3.24 +each other. 3.25 +Programs continue to run when their window is currently not 3.26 +visible and even when the whole screen session is detached 3.27 +from the users terminal.
4.1 --- a/screen/receipt Tue Jul 19 11:14:38 2022 +0100 4.2 +++ b/screen/receipt Tue Jul 19 17:34:06 2022 +0100 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="screen" 4.7 -VERSION="4.8.0" 4.8 +VERSION="4.9.0" 4.9 CATEGORY="system-tools" 4.10 SHORT_DESC="Terminal multiplexer." 4.11 MAINTAINER="pascal.bellard@slitaz.org" 4.12 @@ -15,7 +15,7 @@ 4.13 4.14 SUGGESTED="screen-terminfo" 4.15 DEPENDS="elfutils" 4.16 -BUILD_DEPENDS="ncursesw-extra texinfo" 4.17 +BUILD_DEPENDS="automake ncursesw-extra texinfo" 4.18 4.19 # What is the latest version available today? 4.20 current_version() 4.21 @@ -27,11 +27,13 @@ 4.22 # Rules to configure and make the package. 4.23 compile_rules() 4.24 { 4.25 + ./autogen.sh && 4.26 ./configure \ 4.27 --with-sys-screenrc=/etc/screenrc \ 4.28 $CONFIGURE_ARGS && 4.29 make && 4.30 - make -j1 DESTDIR=$DESTDIR install && 4.31 + make install DESTDIR=$DESTDIR && 4.32 + 4.33 mkdir -p $DESTDIR/usr/share/terminfo && 4.34 tic -o $DESTDIR/usr/share/terminfo terminfo/screeninfo.src && 4.35 mkdir -p $DESTDIR/etc &&