mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-27 07:52:55 +02:00
openssh: added a new build option: "openssh_identitypersist" requested by chris2.
This commit is contained in:
parent
51006287a8
commit
4d2949216c
1 changed files with 15 additions and 2 deletions
|
@ -3,14 +3,14 @@ _desc="The OpenSSH implementation of SSH protocol"
|
||||||
|
|
||||||
pkgname=openssh
|
pkgname=openssh
|
||||||
version=6.6p1
|
version=6.6p1
|
||||||
revision=6
|
revision=7
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
||||||
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
||||||
--with-mantype=man --without-rpath --with-xauth=/usr/bin/xauth
|
--with-mantype=man --without-rpath --with-xauth=/usr/bin/xauth
|
||||||
--with-ssl-engine --disable-strip --with-privsep-path=/var/chroot/ssh
|
--with-ssl-engine --disable-strip --with-privsep-path=/var/chroot/ssh
|
||||||
--with-pid-dir=/run --with-pam --with-pie --without-kerberos5 LD=$CC"
|
--with-pid-dir=/run --with-pam --with-pie --without-kerberos5 LD=$CC"
|
||||||
hostmakedepends="perl"
|
hostmakedepends="libtool perl"
|
||||||
makedepends="zlib-devel openssl-devel pam-devel"
|
makedepends="zlib-devel openssl-devel pam-devel"
|
||||||
short_desc="${_desc} - client"
|
short_desc="${_desc} - client"
|
||||||
replaces="openssh-client<6.1p1"
|
replaces="openssh-client<6.1p1"
|
||||||
|
@ -21,6 +21,19 @@ license="BSD"
|
||||||
distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$version.tar.gz"
|
distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$version.tar.gz"
|
||||||
checksum=48c1f0664b4534875038004cc4f3555b8329c2a81c1df48db5c517800de203bb
|
checksum=48c1f0664b4534875038004cc4f3555b8329c2a81c1df48db5c517800de203bb
|
||||||
|
|
||||||
|
# Package build options
|
||||||
|
build_options="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
|
||||||
|
libtoolize -f
|
||||||
|
}
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vinstall contrib/sshd.pam.generic 644 etc/pam.d sshd
|
vinstall contrib/sshd.pam.generic 644 etc/pam.d sshd
|
||||||
vinstall contrib/ssh-copy-id 755 usr/bin
|
vinstall contrib/ssh-copy-id 755 usr/bin
|
||||||
|
|
Loading…
Add table
Reference in a new issue