diff options
author | Brian Feldman <green@FreeBSD.org> | 1999-11-20 03:42:05 +0000 |
---|---|---|
committer | Brian Feldman <green@FreeBSD.org> | 1999-11-20 03:42:05 +0000 |
commit | 7382aa363a15021264f0fc99f4d50e0762b580df (patch) | |
tree | af086cb6d364a466242b96525ddf3bee421036af /security/openssh/Makefile | |
parent | 051990a5ac15d5818f2311a575fc456b47051b53 (diff) |
Notes
Diffstat (limited to 'security/openssh/Makefile')
-rw-r--r-- | security/openssh/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 3b05a587cffc..d38dabf13a47 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -83,7 +83,7 @@ post-patch: 's:^(\s*#\s*include\s+<)ssl(/\w+\.h>\s*)$$:$$1openssl$$2:g' \ ${WRKSRC}/*.[ch] -pre-install: +post-install: @if [ ! -f ${PREFIX}/etc/ssh_config -a \ ! -f ${PREFIX}/etc/sshd_config ]; then \ cd ${WRKSRC} && ${MAKE} DESTDIR=${PREFIX} distribution; \ @@ -92,13 +92,10 @@ pre-install: ${ECHO_MSG} ">> If this is left over from another version of SSH, you will"; \ ${ECHO_MSG} ">> need to update it to work with OpenSSH."; \ fi - @if [ ! -f ${PREFIX}/etc/rc.d/sshd.sh ]; then \ - ${ECHO_MSG} ">> Installing ${PREFIX}/etc/rc.d/sshd.sh startup file."; \ - ${MKDIR} ${PREFIX}/etc/rc.d; \ - ${INSTALL_SCRIPT} ${FILESDIR}/sshd.sh \ - ${PREFIX}/etc/rc.d; \ - ${PERL} -pi -e 's:__PREFIX__:${PREFIX}:g' \ - ${PREFIX}/etc/rc.d/sshd.sh; \ - fi +.if !exists(${PREFIX}/etc/rc.d/sshd.sh) + @${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/sshd.sh + @${ECHO} "[ -x ${PREFIX}/sbin/sshd ] && exec ${PREFIX}/sbin/sshd" >> ${PREFIX}/etc/rc.d/sshd.sh + @${CHMOD} 0555 ${PREFIX}/etc/rc.d/sshd.sh +.endif .include <bsd.port.mk> |