wok view openssh/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents fa77ea692592
children 07197587ca55
line source
1 # SliTaz package receipt.
3 PACKAGE="openssh"
4 VERSION="7.9p1"
5 CATEGORY="security"
6 SHORT_DESC="Openbsd Secure Shell."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.openssh.org/"
11 WGET_URL="http://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/$TARBALL"
12 CONFIG_FILES="/etc/ssh /etc/inetd.conf"
13 TAGS="ssh security"
14 HOST_ARCH="i486 arm"
16 PROVIDE="ssh"
17 DEPENDS="sftp-server libcrypto zlib"
18 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev"
19 TAZPANEL_DAEMON="man::sshd|edit::/etc/ssh/sshd_config|options|web::$WEB_SITE"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 patch -p1 < $stuff/knock.u
25 unset LD # for cross compiling with --disable-strip
26 ./configure \
27 --prefix=/usr \
28 --sysconfdir=/etc/ssh \
29 --libexecdir=/usr/sbin \
30 --with-privsep-user=nobody \
31 --with-xauth=/usr/bin/xauth \
32 --with-privsep-path=/var/run/sshd \
33 --without-pam \
34 --disable-strip \
35 $CONFIGURE_ARGS &&
36 make STRIP_OPT="" &&
37 make DESTDIR=$DESTDIR install
38 install -d -m 755 $DESTDIR/usr/share/doc &&
39 install -m 644 $src/[A-Z][A-Z]* $DESTDIR/usr/share/doc
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh
46 cp -a $install/usr/sbin $install/usr/bin $fs/usr
47 rm -f $fs/usr/sbin/sftp-server
48 cp -a $install/etc $fs
49 cp $stuff/openssh $fs/etc/init.d
50 sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
51 $fs/etc/ssh/sshd_config
53 cat >> $fs/etc/ssh/ssh_config <<EOT
55 # client bug CVE-2016-0777 and CVE-2016-0778
56 Host *
57 UseRoaming no
59 # From https://wiki.gentoo.org/wiki/SSH_jump_host
60 Host *+*
61 ProxyCommand ssh $(echo %h | sed 's/+[^+]*$//;s/\([^+%%]*\)%%\([^+]*\)$/\2 -l \1/;s/:/ -p /') exec nc -w1 $(echo %h | sed 's/^.*+//;/:/!s/$/ %p/;s/:/ /')
63 EOT
64 }
66 post_install()
67 {
68 grep -q ssh "$1/etc/inetd.conf" || cat >> "$1/etc/inetd.conf" <<EOT
69 #ssh stream tcp nowait root sshd sshd -i
70 EOT
71 while read dropbear openssh ; do
72 [ -s "$1$dropbear" ] || continue
73 chroot "$1/" dropbearconvert dropbear openssh $dropbear $openssh
74 chroot "$1/" dropbearkey -y -f $dropbear | grep ssh > "$1$openssh.pub"
75 chroot "$1/" dropbearkey -y -f $dropbear | grep Fingerprint
76 done <<EOT
77 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
78 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
79 /etc/dropbear/dropbear_ecdsa_host_key /etc/ssh/ssh_host_ecdsa_key
80 EOT
82 chroot "$1/" ssh-keygen -A
83 }
85 post_remove()
86 {
87 grep -q sshd "$1/etc/inetd.conf" && sed -i '/sshd/d' "$1/etc/inetd.conf"
88 }