6d334425af
pkgsrc changes: - mark dependencies satisfied by Perl5 Core - add license definition Upstream changes: 0.4001 -- Wed Mar 24 14:54:35 CDT 2010 * Update Module::Install and generate META.yml 0.40 -- Thu Mar 11 20:56:28 CST 2010 * Avoid 'cookie parsing error' on OpenLDAP 2.3 [Mathieu Parent] * Added e-syncRefreshRequired constant [Mathieu Parent] * Minor typo fix in documentation [Quanah Gibson-Mount] * Update CREDITS for Mathieu Parent * Remove runtime dependency on DATA handle for constants * Clarify documentation for gen_password * Allow caller to pass Authen::SASL client_new object * fix typo [Peter Marschall] * use current IO::Socket::SSL's method start_SSL instead of deprecated function socketToSSL; raise required IO::Socket:SSL version appropriately [Peter Marschall] * FilterMatch.pm: fix regex treatment in _{cis,exact}_substrings(). [Peter Marschall] * FilterMatch.pm: correct # of args in function declarations/definitions [Peter Marschall] * Don't duplicate documentation [Mathieu Parent] * Added numcmp option to compare attributes numerically. [Kartik Subbarao] * Avoid infinite loop when authenticating with EXTERNAL mechanism * Add Net::LDAP::Extension::Refresh as described in RFC2589 [Etienne Bagnoud] * RT#40068 Fix tests to work with 2.4.11 * Add ldif method to Net::LDAP::Entry * RT#46111 Make LWP::Protocol::ldap return ldif when requested * RT#51165 Compact multiple consecutive spaces in Net::LDAP::Util::canonical_dn * RT#46125 Add LWP::Protocol::ldaps to support ldaps: urls * RT#44110 Fix Net::LDAP::LDIF->current_lines
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.40 2010/09/09 21:12:07 sno Exp $
|
|
|
|
DISTNAME= perl-ldap-0.4001
|
|
PKGNAME= p5-${DISTNAME:S/4001/40.01/}
|
|
SVR4_PKGNAME= pldap
|
|
CATEGORIES= databases net devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=LWP/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://ldap.perl.org/
|
|
COMMENT= Perl class to access LDAP servers
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
BUILD_DEFS+= IPV6_READY
|
|
|
|
DEPENDS+= p5-Convert-ASN1>=0.07:../../textproc/p5-Convert-ASN1
|
|
DEPENDS+= p5-IO-Socket-SSL>=0.81:../../security/p5-IO-Socket-SSL
|
|
DEPENDS+= {perl>=5.8.0,p5-MIME-Base64-[0-9]*}:../../converters/p5-MIME-Base64
|
|
DEPENDS+= p5-URI>=1.10:../../www/p5-URI
|
|
DEPENDS+= p5-XML-SAX-Writer-[0-9]*:../../textproc/p5-XML-SAX-Writer
|
|
|
|
MAKE_PARAMS+= --skip # skip CPAN auto installation of modules
|
|
|
|
PKG_SUPPORTED_OPTIONS= sasl inet6
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-perl-ldap
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Msasl)
|
|
DEPENDS+= p5-Authen-SASL>=2.00:../../security/p5-Authen-SASL
|
|
DEPENDS+= {perl>=5.8.0,p5-Digest-MD5-[0-9]*}:../../security/p5-Digest-MD5
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
DEPENDS+= p5-IO-Socket-INET6-[0-9]*:../../net/p5-IO-Socket-INET6
|
|
.endif
|
|
|
|
PERL5_PACKLIST= auto/Net/LDAP/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|