wok view openssh/receipt @ rev 23973

Up openconnect (8.10), openexr (2.5.3), openldap (2.4.55), openssh (8.4p1), openvswitch (2.14.0), phpmyadmin (5.0.4), rust (1.47.0), shellinabox (2.21)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 28 12:04:50 2020 +0000 (2020-10-28)
parents a8546de77bcc
children 9c5316bc7e8e
line source
1 # SliTaz package receipt.
3 PACKAGE="openssh"
4 VERSION="8.4p1"
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/*config /etc/ssh/moduli"
13 SECRET_FILES="/etc/ssh/*key*"
14 TAGS="ssh security"
15 HOST_ARCH="i486 arm"
17 PROVIDE="ssh"
18 DEPENDS="sftp-server libcrypto zlib"
19 BUILD_DEPENDS="libcrypto-dev zlib-dev openssl-dev gtk+-dev"
20 SUGGESTED="gtk+"
21 TAZPANEL_DAEMON="man::sshd|edit::/etc/ssh/sshd_config|options|web::$WEB_SITE"
23 current_version()
24 {
25 wget -O - ${WGET_URL%/*}/ 2>/dev/null | \
26 sed '/tar..z"/!d;s|.*ssh-\(.*\).tar..z".*|\1|' | tail -n1
27 }
29 # Rules to configure and make the package.
30 compile_rules()
31 {
32 unset LD # for cross compiling with --disable-strip
33 ./configure \
34 --prefix=/usr \
35 --sysconfdir=/etc/ssh \
36 --libexecdir=/usr/sbin \
37 --with-privsep-user=nobody \
38 --with-xauth=/usr/bin/xauth \
39 --with-privsep-path=/var/run/sshd \
40 --without-pam \
41 --disable-strip \
42 $CONFIGURE_ARGS &&
43 make STRIP_OPT="" &&
44 make -j 1 DESTDIR=$DESTDIR install
45 install -d -m 755 $DESTDIR/usr/share/doc &&
46 install -m 644 $src/[A-Z][A-Z]* $DESTDIR/usr/share/doc
47 cd contrib &&
48 cc -Wall $(pkg-config --cflags gtk+-2.0) gnome-ssh-askpass2.c \
49 -o gnome-ssh-askpass $(pkg-config --libs gtk+-2.0) -lX11 &&
50 cp gnome-ssh-askpass $DESTDIR/usr/bin/ssh-askpass
51 }
53 # Rules to gen a SliTaz package suitable for Tazpkg.
54 genpkg_rules()
55 {
56 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh
57 cp -a $install/usr/sbin $install/usr/bin $fs/usr
58 rm -f $fs/usr/sbin/sftp-server
59 install -m 755 -oroot -groot $src/contrib/ssh-copy-id $fs/usr/bin
60 cp $src/contrib/ssh-copy-id.1 $install/usr/share/man/cat1
61 cp -a $install/etc $fs
62 cp $stuff/openssh $fs/etc/init.d
63 sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
64 $fs/etc/ssh/sshd_config
66 cat >> $fs/etc/ssh/ssh_config <<EOT
68 # client bug CVE-2016-0777 and CVE-2016-0778
69 Host *
70 UseRoaming no
72 # From https://wiki.gentoo.org/wiki/SSH_jump_host
73 Host *+*
74 ProxyCommand ssh \$(echo %h | sed 's/+[^+]*$//;s/\\([^+%%]*\\)%%\\([^+]*\\)\$/\\2 -l \\1/;s/:/ -p /') exec nc -w1 \$(echo %h | sed 's/^.*+//;/:/!s/\$/ %p/;s/:/ /')
76 EOT
77 }
79 post_install()
80 {
81 grep -q ssh "$1/etc/inetd.conf" || cat >> "$1/etc/inetd.conf" <<EOT
82 #ssh stream tcp nowait root sshd sshd -i
83 EOT
84 while read dropbear openssh ; do
85 [ -s "$1$dropbear" ] || continue
86 chroot "$1/" dropbearconvert dropbear openssh $dropbear $openssh
87 chroot "$1/" dropbearkey -y -f $dropbear | grep ssh > "$1$openssh.pub"
88 chroot "$1/" dropbearkey -y -f $dropbear | grep Fingerprint
89 done <<EOT
90 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
91 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
92 /etc/dropbear/dropbear_ecdsa_host_key /etc/ssh/ssh_host_ecdsa_key
93 /etc/dropbear/dropbear_ed25519_host_key /etc/ssh/ssh_host_ed25519_key
94 EOT
96 chroot "$1/" ssh-keygen -A
97 }
99 post_remove()
100 {
101 grep -q sshd "$1/etc/inetd.conf" && sed -i '/sshd/d' "$1/etc/inetd.conf"
102 }