mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
a015f2e5d0
See http://wiki.freebsd.org/Perl for details. - Change maintainership from ports@ to perl@ for ports in this changeset. With perl@ hat
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: p5-Crypt-PBKDF2
|
|
# Date created: 2010-05-23
|
|
# Whom: Victor Popov <v.a.popov@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Crypt-PBKDF2
|
|
PORTVERSION= 0.101170
|
|
CATEGORIES= security perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:ARODLAND
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= v.a.popov@gmail.com
|
|
COMMENT= The PBKDF2 password hashing algorithm
|
|
|
|
RUN_DEPENDS= p5-Digest-HMAC>=1.01:${PORTSDIR}/security/p5-Digest-HMAC \
|
|
p5-Moose>=1:${PORTSDIR}/devel/p5-Moose \
|
|
p5-MooseX-Method-Signatures>=0.30:${PORTSDIR}/devel/p5-MooseX-Method-Signatures \
|
|
p5-Try-Tiny>=0.04:${PORTSDIR}/lang/p5-Try-Tiny \
|
|
p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Crypt::PBKDF2.3 \
|
|
Crypt::PBKDF2::Hash.3 \
|
|
Crypt::PBKDF2::Hash::DigestHMAC.3 \
|
|
Crypt::PBKDF2::Hash::HMACSHA1.3 \
|
|
Crypt::PBKDF2::Hash::HMACSHA2.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 501000
|
|
RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA
|
|
.endif
|
|
|
|
.if ${PERL_LEVEL} < 501001
|
|
RUN_DEPENDS+= p5-Digest>=1.16:${PORTSDIR}/security/p5-Digest
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|