2009-03-08 19:02:58 +00:00
|
|
|
# Template file for 'openssh'
|
|
|
|
pkgname=openssh
|
2015-07-01 05:43:09 +00:00
|
|
|
version=6.9p1
|
2015-07-09 09:47:57 +00:00
|
|
|
revision=2
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2015-06-02 07:15:08 +00:00
|
|
|
configure_args="--sbindir=/usr/bin --datadir=/usr/share/openssh
|
2013-02-16 07:53:17 +00:00
|
|
|
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
2014-10-07 03:22:54 +00:00
|
|
|
--with-mantype=doc --without-rpath --with-xauth=/usr/bin/xauth
|
2015-03-18 11:05:46 +00:00
|
|
|
--disable-strip --with-privsep-path=/var/chroot/ssh
|
2014-11-22 17:33:34 +00:00
|
|
|
--with-pid-dir=/run --with-pam --with-pie --without-kerberos5
|
2015-03-18 11:05:46 +00:00
|
|
|
$(vopt_with ldns) $(vopt_if ssl --with-ssl-engine --without-openssl)
|
|
|
|
--without-ssh1 --with-libedit LD=$CC"
|
2014-07-18 13:35:56 +00:00
|
|
|
hostmakedepends="automake libtool perl"
|
2015-03-18 11:05:46 +00:00
|
|
|
makedepends="zlib-devel pam-devel libedit-devel
|
2015-03-27 14:44:40 +00:00
|
|
|
$(vopt_if ssl libressl-devel) $(vopt_if ldns libldns-devel)"
|
2014-11-04 15:44:14 +00:00
|
|
|
short_desc="The OpenSSH implementation of SSH protocol"
|
|
|
|
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"
|
2015-04-10 07:16:30 +00:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2011-07-05 08:15:46 +00:00
|
|
|
homepage="http://www.openssh.org"
|
|
|
|
license="BSD"
|
2012-07-09 10:18:30 +00:00
|
|
|
distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$version.tar.gz"
|
2015-07-01 05:43:09 +00:00
|
|
|
checksum=6e074df538f357d440be6cf93dc581a21f22d39e236f217fcd8eacbb6c896cfe
|
2013-05-16 05:49:31 +00:00
|
|
|
|
2014-06-29 16:35:17 +00:00
|
|
|
# Package build options
|
2015-06-03 21:44:12 +00:00
|
|
|
build_options="openssh_identitypersist ldns ssl"
|
2015-03-18 11:05:46 +00:00
|
|
|
build_options_default="ldns ssl"
|
2014-06-29 16:35:17 +00:00
|
|
|
desc_option_openssh_identitypersist="add key to ssh-agent(1) upon connecting"
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
if [ "$build_option_openssh_identitypersist" ]; then
|
2015-03-18 11:05:46 +00:00
|
|
|
patch -sNp0 -i ${FILESDIR}/openssh-6.8p1-identitypersist.patch
|
2014-06-29 16:35:17 +00:00
|
|
|
msg_normal "$pkgver: applied identitypersist patch.\n"
|
|
|
|
fi
|
2014-07-18 13:35:56 +00:00
|
|
|
autoreconf -fi
|
2014-06-29 16:35:17 +00:00
|
|
|
}
|
2012-04-22 08:46:53 +00:00
|
|
|
post_install() {
|
2011-07-05 08:15:46 +00:00
|
|
|
vinstall contrib/sshd.pam.generic 644 etc/pam.d sshd
|
2015-02-19 08:55:22 +00:00
|
|
|
vbin contrib/ssh-copy-id
|
|
|
|
vman contrib/ssh-copy-id.1
|
|
|
|
vlicense LICENCE
|
2009-03-08 19:02:58 +00:00
|
|
|
|
|
|
|
sed -i \
|
2013-02-16 07:53:17 +00:00
|
|
|
-e 's|^#\(UsePAM\) no|\1 yes|g' \
|
|
|
|
-e 's|^#\(ChallengeResponseAuthentication\) yes|\1 no|g' \
|
2013-03-23 06:43:15 +00:00
|
|
|
-e 's|^#\(PrintMotd\) yes|\1 no|g' \
|
2009-03-11 05:31:56 +00:00
|
|
|
${DESTDIR}/etc/ssh/sshd_config
|
2013-03-19 02:42:45 +00:00
|
|
|
|
2014-11-03 17:12:10 +00:00
|
|
|
vinstall ${FILESDIR}/sshd.pam 644 etc/pam.d sshd
|
2014-11-04 15:44:14 +00:00
|
|
|
vsv sshd
|
2013-04-14 03:01:48 +00:00
|
|
|
}
|