wok-next rev 19962

Up mosh (1.3.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 17 11:01:20 2017 +0200 (2017-10-17)
parents 1fcdbab05a8a
children c48e38679720
files ddd/receipt lesstif/receipt mosh/receipt
line diff
     1.1 --- a/ddd/receipt	Tue Oct 17 10:26:48 2017 +0200
     1.2 +++ b/ddd/receipt	Tue Oct 17 11:01:20 2017 +0200
     1.3 @@ -14,7 +14,7 @@
     1.4  DEPENDS="glibc-base gcc-lib-base ncurses freetype zlib util-linux-uuid \
     1.5  xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXaw \
     1.6  xorg-libXdmcp xorg-libXext xorg-libXmu xorg-libXpm xorg-libXt lesstif elfutils"
     1.7 -BUILD_DEPENDS="gawk lesstif-dev"
     1.8 +BUILD_DEPENDS="gawk lesstif-dev xorg-libXt-dev"
     1.9  
    1.10  # Rules to configure and make the package.
    1.11  compile_rules()
     2.1 --- a/lesstif/receipt	Tue Oct 17 10:26:48 2017 +0200
     2.2 +++ b/lesstif/receipt	Tue Oct 17 11:01:20 2017 +0200
     2.3 @@ -13,7 +13,8 @@
     2.4  
     2.5  DEPENDS="glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau \
     2.6  xorg-libXdmcp xorg-libXext xorg-libXt util-linux-uuid freetype xorg-libXp"
     2.7 -BUILD_DEPENDS="xorg-xextproto util-linux-uuid-dev automake"
     2.8 +BUILD_DEPENDS="xorg-xextproto xorg-libXt-dev xorg-libXext-dev \
     2.9 +util-linux-uuid-dev automake"
    2.10  
    2.11  # Rules to configure and make the package.
    2.12  compile_rules()
     3.1 --- a/mosh/receipt	Tue Oct 17 10:26:48 2017 +0200
     3.2 +++ b/mosh/receipt	Tue Oct 17 11:01:20 2017 +0200
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="mosh"
     3.7 -VERSION="1.2.5"
     3.8 +VERSION="1.3.2"
     3.9  CATEGORY="security"
    3.10  SHORT_DESC="A Openbsd Secure Shell remplacement."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12 @@ -12,11 +12,13 @@
    3.13  TAGS="ssh"
    3.14  
    3.15  DEPENDS="gcc-lib-base perl protobuf libssl libcrypto zlib ncurses ssh"
    3.16 -BUILD_DEPENDS="pkg-config protobuf-dev openssl-dev libcrypto-dev zlib-dev ncurses-dev"
    3.17 +BUILD_DEPENDS="pkg-config protobuf-dev openssl-dev libcrypto-dev zlib-dev \
    3.18 +ncurses-dev automake autoconf libtool"
    3.19  
    3.20  # Rules to configure and make the package.
    3.21  compile_rules()
    3.22  {
    3.23 +	./autogen.sh
    3.24  	./configure --prefix=/usr --sysconfdir=/etc \
    3.25  		--enable-compile-warnings=error &&
    3.26  	make &&
    3.27 @@ -28,7 +30,7 @@
    3.28  {
    3.29  	mkdir -p $fs/usr
    3.30  	cp -a $install/usr/bin $fs/usr
    3.31 -	sed -i '/.*quoted_self = shell_quote.*/r/dev/stdin' $fs/usr/bin/mosh <<EOT
    3.32 +	sed -i '/.*quoted_self = shell_quote.*/r/proc/self/fd/0' $fs/usr/bin/mosh <<EOT
    3.33    if (\`\$ssh -V 2>&1\` =~ m{Dropbear}) {
    3.34      my \$host = \$userhost; \$host = \$1 if (\$userhost =~ m{@(.*)});
    3.35      my \$port = 22; \$port = \$1 if (\$ssh =~ m{-p *(\d+)});