2009-03-08 19:02:58 +00:00
|
|
|
# Template file for 'openssh'
|
|
|
|
pkgname=openssh
|
2013-05-16 05:39:10 +00:00
|
|
|
version=6.2p2
|
2013-03-23 06:43:15 +00:00
|
|
|
revision=1
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2012-04-22 08:46:53 +00:00
|
|
|
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
2013-02-16 07:53:17 +00:00
|
|
|
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
|
|
|
--with-mantype=man --without-rpath --with-xauth=/usr/bin/xauth
|
|
|
|
--with-ssl-engine --disable-strip --with-privsep-path=/var/chroot/ssh
|
2013-05-16 05:49:31 +00:00
|
|
|
--with-pid-dir=/run --with-pam LD=$CC"
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="perl"
|
|
|
|
makedepends="zlib-devel openssl-devel pam-devel mit-krb5-devel"
|
2012-08-29 05:52:16 +00:00
|
|
|
short_desc="The OpenSSH implementation of SSH protocol versions 1 and 2 (client)"
|
2009-03-08 19:02:58 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
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"
|
2013-05-16 05:39:10 +00:00
|
|
|
checksum=7f29b9d2ad672ae0f9e1dcbff871fc5c2e60a194e90c766432e32161b842313b
|
2009-03-08 19:02:58 +00:00
|
|
|
|
2013-05-16 05:49:31 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
configure_args+=" --with-kerberos5=$XBPS_CROSS_BASE"
|
|
|
|
else
|
|
|
|
configure_args+=" --with-kerberos5=/usr"
|
|
|
|
fi
|
|
|
|
|
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
|
|
|
|
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}
|
2009-03-08 19:02:58 +00:00
|
|
|
|
|
|
|
sed -i \
|
2013-02-16 07:53:17 +00:00
|
|
|
-e 's|^#\(ListenAddress 0.0.0.0\)|\1|g' \
|
|
|
|
-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
|
|
|
|
|
|
|
# Enable pam_systemd.so by default.
|
|
|
|
printf "session \trequired \tpam_systemd.so \tkill-session-processes=1\n" >> \
|
|
|
|
${DESTDIR}/etc/pam.d/sshd
|
2009-03-08 19:02:58 +00:00
|
|
|
}
|
2013-04-14 03:01:48 +00:00
|
|
|
|
|
|
|
openssh-server_package() {
|
|
|
|
conf_files="/etc/ssh/sshd_config /etc/pam.d/sshd"
|
|
|
|
make_dirs="/var/chroot/ssh 0755 root root"
|
|
|
|
depends="openssh>=$version"
|
|
|
|
short_desc="The OpenSSH server"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/libexec/sftp-server
|
|
|
|
vmove etc/ssh/sshd_config
|
|
|
|
vmove usr/sbin
|
|
|
|
vmove usr/share/man/man5/sshd_config.5
|
|
|
|
for f in sftp-server sshd; do
|
|
|
|
vmove usr/share/man/man8/${f}.8
|
|
|
|
done
|
|
|
|
vmove etc/pam.d
|
|
|
|
install -d ${PKGDESTDIR}/usr/lib/systemd/system
|
|
|
|
install -m644 ${FILESDIR}/*.{socket,service} \
|
|
|
|
${PKGDESTDIR}/usr/lib/systemd/system
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
openssh_package() {
|
|
|
|
replaces="openssh-client<6.1p1"
|
|
|
|
conf_files="/etc/ssh/moduli /etc/ssh/ssh_config"
|
|
|
|
pkg_install() {
|
2013-05-16 05:39:10 +00:00
|
|
|
vmove all
|
2013-04-14 03:01:48 +00:00
|
|
|
}
|
|
|
|
}
|