openssh: Update from 7.2p1 to 7.2p2
[termux-packages] / packages / openssh / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://www.openssh.com/
2TERMUX_PKG_DESCRIPTION="Secure shell for logging into a remote machine"
ba991d9a 3TERMUX_PKG_VERSION=7.2p2
bfde0433 4TERMUX_PKG_SRCURL=http://ftp.eu.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${TERMUX_PKG_VERSION}.tar.gz
59f0d218
FF
5TERMUX_PKG_DEPENDS="libandroid-support, ldns, openssl"
6# --disable-strip to prevent host "install" command to use "-s", which won't work for target binaries:
7TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-cflags=-Dfd_mask=int --with-ldns --disable-etc-default-login --disable-lastlog --disable-utmp --disable-utmpx --disable-wtmp --disable-wtmpx --disable-libutil --disable-pututline --disable-pututxline --without-stackprotect --with-pid-dir=$TERMUX_PREFIX/var/run --disable-strip --sysconfdir=$TERMUX_PREFIX/etc/ssh --without-ssh1"
8TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_header_sys_un_h=yes ac_cv_func_strnvis=no ac_cv_func_readpassphrase=no ac_cv_search_getrrsetbyname=no ac_cv_func_getlastlogxbyname=no ac_cv_func_fmt_scaled=no ac_cv_func_endgrent=yes"
b6cc859c 9TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-libutil ac_cv_search_openpty=no"
59f0d218
FF
10TERMUX_PKG_MAKE_INSTALL_TARGET="install-nokeys"
11TERMUX_PKG_RM_AFTER_INSTALL="bin/slogin share/man/man1/slogin.1"
12
13export LD=$CC # Needed to link the binaries
14export LDFLAGS="$LDFLAGS -llog" # liblog for android logging in syslog hack
15
16termux_step_pre_make () {
17 # We need to remove this file before installing, since otherwise the
18 # install leaves it alone which means no updated timestamps.
19 rm -Rf $TERMUX_PREFIX/etc/moduli
20}
21
22termux_step_post_make_install () {
62c37b97 23 # OpenSSH 7.0 disabled ssh-dss by default, keep it for a while in Termux:
88a11b0e 24 echo -e "UsePrivilegeSeparation no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config
62c37b97 25 echo "PubkeyAcceptedKeyTypes +ssh-dss" > $TERMUX_PREFIX/etc/ssh/ssh_config
59f0d218
FF
26 cp $TERMUX_PKG_BUILDER_DIR/source-ssh-agent.sh $TERMUX_PREFIX/bin/source-ssh-agent
27 cp $TERMUX_PKG_BUILDER_DIR/ssh-with-agent.sh $TERMUX_PREFIX/bin/ssha
28
b0c457ae
FF
29 # Install ssh-copy-id:
30 cp $TERMUX_PKG_SRCDIR/contrib/ssh-copy-id.1 $TERMUX_PREFIX/share/man/man1/
31 cp $TERMUX_PKG_SRCDIR/contrib/ssh-copy-id $TERMUX_PREFIX/bin/
32 chmod +x $TERMUX_PREFIX/bin/ssh-copy-id
33
59f0d218
FF
34 mkdir -p $TERMUX_PREFIX/var/run
35 echo "OpenSSH needs this folder to put sshd.pid in" >> $TERMUX_PREFIX/var/run/README.openssh
36
37 mkdir -p $TERMUX_PREFIX/etc/ssh/
38 cp $TERMUX_PKG_SRCDIR/moduli $TERMUX_PREFIX/etc/ssh/moduli
39}
40
41termux_step_create_debscripts () {
42 echo "mkdir -p \$HOME/.ssh" > postinst
43 echo "" >> postinst
44 echo "for a in rsa dsa ecdsa ed25519; do" >> postinst
45 echo " KEYFILE=$TERMUX_PREFIX/etc/ssh/ssh_host_\${a}_key" >> postinst
46 echo " test ! -f \$KEYFILE && ssh-keygen -N '' -t \$a -f \$KEYFILE" >> postinst
47 echo "done" >> postinst
48 echo "exit 0" >> postinst
49 chmod 0755 postinst
50}