33 lines
727 B
Makefile
33 lines
727 B
Makefile
# $OpenBSD: Makefile,v 1.23 2019/07/12 20:48:39 sthen Exp $
|
|
|
|
COMMENT = perl implementation of the SSH1 and SSH2 protocols
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Net-SSH-Perl-2.14
|
|
REVISION = 0
|
|
CATEGORIES = net security
|
|
|
|
# perl
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c perl
|
|
|
|
# SSHv1
|
|
RUN_DEPENDS = devel/p5-String-CRC32 \
|
|
math/p5-Math-GMP \
|
|
security/p5-Crypt-IDEA
|
|
# SSHv2
|
|
RUN_DEPENDS += devel/p5-File-HomeDir \
|
|
security/p5-Digest-BubbleBabble \
|
|
security/p5-CryptX \
|
|
security/p5-Crypt-Curve25519
|
|
|
|
# 03-packet.t needs this, but then it just hangs in test 2, known since
|
|
# early 2004 (https://rt.cpan.org/Public/Bug/Display.html?id=67586)
|
|
#TEST_ENV= HOME=${WRKDIST}
|
|
|
|
MODCPAN_EXAMPLES = Yes
|
|
MODCPAN_EXAMPLES_DIST = eg
|
|
|
|
.include <bsd.port.mk>
|