blob: 9dc4438a93282ce7b7e0eab3e847da71b20d8be6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.14 2013/03/14 16:02:39 kim Exp $
#
DISTNAME= srsh-1.3
CATEGORIES= net
MASTER_SITES= http://oss.gw.com/people/kim/
MAINTAINER= kim@tac.nyc.ny.us
COMMENT= Emulate rsh client behavior using ssh
.if !exists(/usr/bin/ssh)
DEPENDS+= {ssh{,6}-[0-9]*,openssh-[0-9]*}:../../security/openssh
.endif
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
NO_CONFIGURE= yes
MAKE_FLAGS+= PREFIX=${PREFIX}
.include "../../mk/bsd.pkg.mk"
|