2009-03-08 19:02:58 +00:00
|
|
|
# Template file for 'openssh-client'.
|
|
|
|
#
|
2009-03-08 19:30:44 +00:00
|
|
|
short_desc="The OpenSSH client"
|
2009-03-08 19:02:58 +00:00
|
|
|
long_desc="${long_desc}
|
|
|
|
|
|
|
|
This package contains the ${pkgname} client files."
|
|
|
|
|
|
|
|
conf_files="/etc/ssh/ssh_config"
|
|
|
|
|
2012-04-22 08:46:53 +00:00
|
|
|
Add_dependency run openssh ">=${version}"
|
2009-03-08 19:02:58 +00:00
|
|
|
|
2012-04-22 08:46:53 +00:00
|
|
|
do_install() {
|
2009-03-08 19:02:58 +00:00
|
|
|
for f in scp sftp slogin ssh ssh-add ssh-agent \
|
|
|
|
ssh-copy-id ssh-keyscan findssl; do
|
2011-07-05 08:15:46 +00:00
|
|
|
vmove usr/bin/${f} usr/bin
|
2009-03-11 05:31:56 +00:00
|
|
|
[ ! -f ${SRCPKGDESTDIR}/usr/share/man/man1/${f}.1 ] && continue
|
2011-07-05 08:15:46 +00:00
|
|
|
vmove usr/share/man/man1/${f}.1 usr/share/man/man1
|
2009-03-08 19:02:58 +00:00
|
|
|
done
|
2011-07-05 08:15:46 +00:00
|
|
|
vmove etc/ssh/ssh_config etc/ssh
|
|
|
|
vmove usr/share/man/man5/ssh_config.5 usr/share/man/man5
|
2009-03-08 19:02:58 +00:00
|
|
|
}
|