2009-03-08 20:02:58 +01:00
|
|
|
# Template file for 'openssh'
|
2014-01-01 16:10:11 +01:00
|
|
|
_desc="The OpenSSH implementation of SSH protocol"
|
|
|
|
|
2009-03-08 20:02:58 +01:00
|
|
|
pkgname=openssh
|
2014-03-16 07:56:54 +01:00
|
|
|
version=6.6p1
|
2014-04-22 12:55:59 +02:00
|
|
|
revision=3
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2012-04-22 10:46:53 +02:00
|
|
|
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
2013-02-16 08:53:17 +01: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-04-22 12:55:59 +02:00
|
|
|
--with-pid-dir=/run --with-pam --with-pie --without-kerberos5 LD=$CC"
|
2013-03-24 10:21:58 +01:00
|
|
|
hostmakedepends="perl"
|
2014-04-22 12:55:59 +02:00
|
|
|
makedepends="zlib-devel openssl-devel pam-devel"
|
2014-01-01 16:10:11 +01:00
|
|
|
short_desc="${_desc} - client"
|
|
|
|
replaces="openssh-client<6.1p1"
|
|
|
|
conf_files="/etc/ssh/moduli /etc/ssh/ssh_config"
|
2009-03-08 20:02:58 +01:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-07-05 10:15:46 +02:00
|
|
|
homepage="http://www.openssh.org"
|
|
|
|
license="BSD"
|
2012-07-09 12:18:30 +02:00
|
|
|
distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$version.tar.gz"
|
2014-03-16 07:56:54 +01:00
|
|
|
checksum=48c1f0664b4534875038004cc4f3555b8329c2a81c1df48db5c517800de203bb
|
2013-05-16 07:49:31 +02:00
|
|
|
|
2012-04-22 10:46:53 +02:00
|
|
|
post_install() {
|
2011-07-05 10:15:46 +02: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 20:02:58 +01:00
|
|
|
|
|
|
|
sed -i \
|
2013-02-16 08:53:17 +01: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 07:43:15 +01:00
|
|
|
-e 's|^#\(PrintMotd\) yes|\1 no|g' \
|
2009-03-11 06:31:56 +01:00
|
|
|
${DESTDIR}/etc/ssh/sshd_config
|
2013-03-19 03:42:45 +01:00
|
|
|
|
2014-04-22 12:55:59 +02:00
|
|
|
# Disable pam_cracklib
|
|
|
|
sed '/pam_cracklib.*/d' -i ${DESTDIR}/etc/pam.d/sshd
|
2013-03-19 03:42:45 +01:00
|
|
|
# Enable pam_systemd.so by default.
|
2013-07-20 07:01:51 +02:00
|
|
|
printf "session\trequired\tpam_systemd.so\n" >> \
|
2013-03-19 03:42:45 +01:00
|
|
|
${DESTDIR}/etc/pam.d/sshd
|
2009-03-08 20:02:58 +01:00
|
|
|
}
|
2013-04-14 05:01:48 +02: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 16:10:11 +01:00
|
|
|
short_desc="${_desc} - server"
|
2013-04-14 05:01:48 +02: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 07:50:45 +01:00
|
|
|
vmkdir usr/lib/systemd/system
|
2013-04-14 05:01:48 +02:00
|
|
|
install -m644 ${FILESDIR}/*.{socket,service} \
|
|
|
|
${PKGDESTDIR}/usr/lib/systemd/system
|
|
|
|
}
|
|
|
|
}
|