2009-03-08 19:02:58 +00:00
|
|
|
# Template file for 'openssh'
|
2014-01-01 15:10:11 +00:00
|
|
|
_desc="The OpenSSH implementation of SSH protocol"
|
|
|
|
|
2009-03-08 19:02:58 +00:00
|
|
|
pkgname=openssh
|
2014-03-16 06:56:54 +00:00
|
|
|
version=6.6p1
|
2013-09-13 09:35:45 +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
|
2014-03-16 06:56:54 +00:00
|
|
|
--with-pid-dir=/run --with-pam --with-kerberos5=${XBPS_CROSS_BASE}/usr LD=$CC"
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="perl"
|
|
|
|
makedepends="zlib-devel openssl-devel pam-devel mit-krb5-devel"
|
2014-01-01 15:10:11 +00:00
|
|
|
short_desc="${_desc} - client"
|
|
|
|
replaces="openssh-client<6.1p1"
|
|
|
|
conf_files="/etc/ssh/moduli /etc/ssh/ssh_config"
|
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"
|
2014-03-16 06:56:54 +00:00
|
|
|
checksum=48c1f0664b4534875038004cc4f3555b8329c2a81c1df48db5c517800de203bb
|
2013-05-16 05:49:31 +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
|
|
|
|
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.
|
2013-07-20 05:01:51 +00:00
|
|
|
printf "session\trequired\tpam_systemd.so\n" >> \
|
2013-03-19 02:42:45 +00:00
|
|
|
${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"
|
2014-01-01 15:10:11 +00:00
|
|
|
short_desc="${_desc} - server"
|
2013-04-14 03:01:48 +00:00
|
|
|
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
|
2013-11-08 06:50:45 +00:00
|
|
|
vmkdir usr/lib/systemd/system
|
2013-04-14 03:01:48 +00:00
|
|
|
install -m644 ${FILESDIR}/*.{socket,service} \
|
|
|
|
${PKGDESTDIR}/usr/lib/systemd/system
|
|
|
|
}
|
|
|
|
}
|