# Template file for 'openssh' pkgname=openssh version=6.7p1 revision=8 build_style=gnu-configure configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh --sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody --with-mantype=doc --without-rpath --with-xauth=/usr/bin/xauth --with-ssl-engine --disable-strip --with-privsep-path=/var/chroot/ssh --with-pid-dir=/run --with-pam --with-pie --without-kerberos5 --with-ldns --with-libedit LD=$CC" hostmakedepends="automake libtool perl" makedepends="zlib-devel libressl-devel pam-devel libldns-devel libedit-devel" short_desc="The OpenSSH implementation of SSH protocol" replaces="openssh-server>=0" conf_files="/etc/ssh/moduli /etc/ssh/ssh_config /etc/ssh/sshd_config /etc/pam.d/sshd" make_dirs="/var/chroot/ssh 0755 root root" maintainer="Juan RP " homepage="http://www.openssh.org" license="BSD" distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$version.tar.gz" checksum=b2f8394eae858dabbdef7dac10b99aec00c95462753e80342e530bbb6f725507 # Package build options build_options="systemd openssh_identitypersist" desc_option_openssh_identitypersist="add key to ssh-agent(1) upon connecting" pre_configure() { if [ "$build_option_openssh_identitypersist" ]; then $XBPS_FETCH_CMD "https://bugzilla.mindrot.org/attachment.cgi?id=2396>identpersist.patch" patch -sNp1 -i identpersist.patch msg_normal "$pkgver: applied identitypersist patch.\n" fi autoreconf -fi } post_install() { vinstall contrib/sshd.pam.generic 644 etc/pam.d sshd vinstall contrib/ssh-copy-id 755 usr/bin vinstall contrib/ssh-copy-id.1 644 usr/share/man/man1 vinstall LICENCE 644 usr/share/licenses/${pkgname} sed -i \ -e 's|^#\(UsePAM\) no|\1 yes|g' \ -e 's|^#\(ChallengeResponseAuthentication\) yes|\1 no|g' \ -e 's|^#\(PrintMotd\) yes|\1 no|g' \ ${DESTDIR}/etc/ssh/sshd_config vinstall ${FILESDIR}/sshd.pam 644 etc/pam.d sshd if [ "$build_option_systemd" ]; then vmkdir usr/lib/systemd/system install -m644 ${FILESDIR}/*.{socket,service} \ ${PKGDESTDIR}/usr/lib/systemd/system fi vsv sshd }