wok view openssh/receipt @ rev 23654

Up openssh (8.2p1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 21 06:14:03 2020 +0000 (2020-04-21)
parents e04fb802c121
children 1d84e90f8d94
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"
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 gtk+-dev"
19 SUGGESTED="gtk+"
20 TAZPANEL_DAEMON="man::sshd|edit::/etc/ssh/sshd_config|options|web::$WEB_SITE"
22 current_version()
23 {
24 wget -O - ${WGET_URL%/*}/ 2>/dev/null | \
25 sed '/tar..z"/!d;s|.*ssh-\(.*\).tar..z".*|\1|' | tail -n1
26 }
28 # Rules to configure and make the package.
29 compile_rules()
30 {
31 unset LD # for cross compiling with --disable-strip
32 ./configure \
33 --prefix=/usr \
34 --sysconfdir=/etc/ssh \
35 --libexecdir=/usr/sbin \
36 --with-privsep-user=nobody \
37 --with-xauth=/usr/bin/xauth \
38 --with-privsep-path=/var/run/sshd \
39 --without-pam \
40 --disable-strip \
41 $CONFIGURE_ARGS &&
42 make STRIP_OPT="" &&
43 make -j 1 DESTDIR=$DESTDIR install
44 install -d -m 755 $DESTDIR/usr/share/doc &&
45 install -m 644 $src/[A-Z][A-Z]* $DESTDIR/usr/share/doc
46 cd contrib &&
47 cc -Wall $(pkg-config --cflags gtk+-2.0) gnome-ssh-askpass2.c \
48 -o gnome-ssh-askpass $(pkg-config --libs gtk+-2.0) -lX11 &&
49 cp gnome-ssh-askpass $DESTDIR/usr/bin/ssh-askpass
50 }
52 # Rules to gen a SliTaz package suitable for Tazpkg.
53 genpkg_rules()
54 {
55 mkdir -p $fs/usr $fs/etc/init.d $fs/etc/ssh
56 cp -a $install/usr/sbin $install/usr/bin $fs/usr
57 rm -f $fs/usr/sbin/sftp-server
58 install -m 755 -oroot -groot $src/contrib/ssh-copy-id $fs/usr/bin
59 cp $src/contrib/ssh-copy-id.1 $install/usr/share/man/cat1
60 cp -a $install/etc $fs
61 cp $stuff/openssh $fs/etc/init.d
62 sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \
63 $fs/etc/ssh/sshd_config
65 cat >> $fs/etc/ssh/ssh_config <<EOT
67 # client bug CVE-2016-0777 and CVE-2016-0778
68 Host *
69 UseRoaming no
71 # From https://wiki.gentoo.org/wiki/SSH_jump_host
72 Host *+*
73 ProxyCommand ssh \$(echo %h | sed 's/+[^+]*$//;s/\\([^+%%]*\\)%%\\([^+]*\\)\$/\\2 -l \\1/;s/:/ -p /') exec nc -w1 \$(echo %h | sed 's/^.*+//;/:/!s/\$/ %p/;s/:/ /')
75 EOT
76 }
78 post_install()
79 {
80 grep -q ssh "$1/etc/inetd.conf" || cat >> "$1/etc/inetd.conf" <<EOT
81 #ssh stream tcp nowait root sshd sshd -i
82 EOT
83 while read dropbear openssh ; do
84 [ -s "$1$dropbear" ] || continue
85 chroot "$1/" dropbearconvert dropbear openssh $dropbear $openssh
86 chroot "$1/" dropbearkey -y -f $dropbear | grep ssh > "$1$openssh.pub"
87 chroot "$1/" dropbearkey -y -f $dropbear | grep Fingerprint
88 done <<EOT
89 /etc/dropbear/dropbear_rsa_host_key /etc/ssh/ssh_host_rsa_key
90 /etc/dropbear/dropbear_dss_host_key /etc/ssh/ssh_host_dsa_key
91 /etc/dropbear/dropbear_ecdsa_host_key /etc/ssh/ssh_host_ecdsa_key
92 EOT
94 chroot "$1/" ssh-keygen -A
95 }
97 post_remove()
98 {
99 grep -q sshd "$1/etc/inetd.conf" && sed -i '/sshd/d' "$1/etc/inetd.conf"
100 }