./mkinstalldirs /usr/local/bin
./mkinstalldirs /usr/local/sbin
./mkinstalldirs /usr/local/man
./mkinstalldirs /usr/local/man/man1
./mkinstalldirs /usr/local/man/man8
/usr/bin/install -c -m 4755 -s ssh /usr/local/bin/ssh
/usr/bin/install -c -s scp /usr/local/bin/scp
/usr/bin/install -c -s ssh-add /usr/local/bin/ssh-add
/usr/bin/install -c -s ssh-agent /usr/local/bin/ssh-agent
/usr/bin/install -c -s ssh-keygen /usr/local/bin/ssh-keygen
/usr/bin/install -c -s sshd /usr/local/bin/sshd
chmem =5000000 /usr/local/bin/ssh
/usr/local/bin/ssh: Stack+malloc area changed from 131072 to 5000000 bytes.
chmem =5000000 sshd /usr/local/bin/sshd
sshd: Stack+malloc area changed from 5000000 to 5000000 bytes.
/usr/local/bin/sshd: Stack+malloc area changed from 5000000 to 5000000 bytes.
/usr/bin/install -c -m 644 ssh.0 /usr/local/man/man1/ssh.1
/usr/bin/install -c -m 644 scp.0 /usr/local/man/man1/scp.1
/usr/bin/install -c -m 644 ssh-add.0 /usr/local/man/man1/ssh-add.1
/usr/bin/install -c -m 644 ssh-agent.0 /usr/local/man/man1/ssh-agent.1
/usr/bin/install -c -m 644 ssh-keygen.0 /usr/local/man/man1/ssh-keygen.1
/usr/bin/install -c -m 644 sshd.0 /usr/local/man/man8/sshd.8
rm -f /usr/local/bin/slogin
cp ssh /usr/local/bin/slogin
rm -f /usr/local/man/man1/slogin.1
cp ssh.1 /usr/local/man/man1/slogin.1
if [ ! -f /usr/local/etc/ssh_config -a ! -f /usr/local/etc/sshd_config ]; then \
		./mkinstalldirs /usr/local/etc; \
		/usr/bin/install -c -m 644 ssh_config /usr/local/etc/ssh_config; \
		/usr/bin/install -c -m 644 sshd_config /usr/local/etc/sshd_config; \
	fi
if [ -f sshprngcmds -a ! -z "yes" ]; then \
		/usr/bin/install -c -m 644 sshprngcmds /usr/local/etc/sshprngcmds; \
	fi
if [ -z "" ] ; then \
		if [ -f "/usr/local/etc/sshhostkey" ] ; then \
			echo "/usr/local/etc/sshhostkey already exists, skipping." ; \
		else \
			./ssh-keygen -b 1024 -f /usr/local/etc/sshhostkey -N "" ; \
		fi ; \
		if [ -f /usr/local/etc/sshdsakey ] ; then \
			echo "/usr/local/etc/sshdsakey already exists, skipping." ; \
		else \
			./ssh-keygen -d -f /usr/local/etc/sshdsakey -N "" ; \
		fi ; \
	fi ;
/usr/local/etc/sshhostkey already exists, skipping.
/usr/local/etc/sshdsakey already exists, skipping.
