f38676a267
Pkgsrc changes: o Adapt patch-aa, still needed for non-hanging tests... Upstream changes: 1.33 2008.10.21 - Fix open() calls (rt.cpan.org #40020) - Fix non-shell problem (rt.cpan.org #39980) - Allow full agent forwarding (rt.cpan.org #32190) - Handle hashed known_hosts files (Greg Sabino Mullane, rt.cpan.org #25175) 1.32 2008.10.16 - Add IO::Handle to Perl.pm (rt.cpan.org #40057, #35985) - Minor test cleanups. 1.31 2008.10.02 - New co-maintainer, Greg Sabino Mullane (TURNSTEP). - Prevent t/03-packet.t from hanging due to high file descriptor. (altblue at n0i.net, rt.cpan.org #6101) - Skip some tests if Math::GMP not installed (e.g. from choosing only protocol 2 in Makefile.PL) (Greg Sabino Mullane, reported in rt.cpan.org #25152) - If ENV{HOME} is not set, use getpwuid. If both fail and the dir is needed, we croak. (Greg Sabino Mullane, expanded from patch by dgehl at inverse.ca in rt.cpan.org #25174) - Fix incorrect logical/bitwise AND mixup (Peter.Haydon at uk.fujitsu.com, rt.cpan.org #31490) - Allow empty stdin for SSH2 (rcp at rcable.co.uk, rt.cpan.org #32730) - Adjust terminal dimensions dynamically if Term::ReadKey is available (john at sackheads.org, rt.cpan.org #34874)
46 lines
1.6 KiB
Makefile
46 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2008/11/18 16:19:04 he Exp $
|
|
#
|
|
|
|
DISTNAME= Net-SSH-Perl-1.33
|
|
PKGNAME= p5-Net-SSH-1.33
|
|
SVR4_PKGNAME= p5nsh
|
|
CATEGORIES= security net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Net-SSH-Perl/
|
|
COMMENT= Perl implementations of SSH1 and SSH2 protocols
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-Convert-PEM>=0.05:../../textproc/p5-Convert-PEM
|
|
DEPENDS+= p5-Crypt-Blowfish-[0-9]*:../../security/p5-Crypt-Blowfish
|
|
DEPENDS+= p5-Crypt-DES-[0-9]*:../../security/p5-Crypt-DES
|
|
DEPENDS+= p5-Crypt-DH>=0.01:../../security/p5-Crypt-DH
|
|
DEPENDS+= p5-Crypt-DSA>=0.11:../../security/p5-Crypt-DSA
|
|
DEPENDS+= p5-Crypt-RSA>=1.37:../../security/p5-Crypt-RSA
|
|
DEPENDS+= p5-Digest-BubbleBabble>=0.01:../../security/p5-Digest-BubbleBabble
|
|
DEPENDS+= p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC
|
|
DEPENDS+= p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5
|
|
DEPENDS+= p5-Digest-SHA1>=2.10:../../security/p5-Digest-SHA1
|
|
DEPENDS+= p5-MIME-Base64-[0-9]*:../../converters/p5-MIME-Base64
|
|
DEPENDS+= p5-Math-GMP>=1.04:../../math/p5-Math-GMP
|
|
DEPENDS+= p5-Math-Pari>=2.001804:../../math/p5-Math-Pari
|
|
DEPENDS+= p5-String-CRC32>=1.2:../../textproc/p5-String-CRC32
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Net-SSH
|
|
PKG_SUPPORTED_OPTIONS= idea
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Midea)
|
|
DEPENDS+= p5-Crypt-IDEA-[0-9]*:../../security/p5-Crypt-IDEA
|
|
.endif
|
|
|
|
PERL5_PACKLIST= auto/Net/SSH/Perl/.packlist
|
|
|
|
# no prompt from ExtUtils::MakeMaker's prompt()
|
|
MAKE_ENV+= PERL_MM_USE_DEFAULT=true
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|