pkgsrc/databases/p5-perl-ldap/Makefile
wen 72044553d3 Update to 0.65
Upstream changes:
0.65 -- Mon Apr  6 19:43:37 CEST 2015

Enhancements:
* t/74matchedvalues.t: more tests
* {ASN,Extension}.pm: update ExtendedResponse to RFC 4511
* Constant.pm: add LDAP_NOTICE_OF_DISCONNECTION
* Control/DontUseCopy.pm: new
* Control/ProxyAuth.pm: make sure criticality does not get changed
* Control/Relax.pm: make sure value & criticality do not get changed
* Control/ManageDsaIT.pm: make sure value never gets set

Bug Fixes
* LDAP.pm: do not set default sslversion for start_tls() & LDAPS
  Instead of second-guessing a default sslversion for start_tls() and LDAPS,
  rely on the - known to be sane - default value used by IO::Socket::SSL.
* RT#100151: LDAP.pm: localize $SIG{__DIE__} in IPv6 support check
  Thanks to Troy Loveday <troyl@ti.com> for the detailed bug report and patch.
* FAQ.pod: fix error in search() example
* RFC.pod: typo fix

0.64 -- Thu Jun 19 17:48:08 CEST 2014

Bug Fixes:
* LDAP.pm: set SSL_cipher_list correctly
* RT#96203: LDAP.pm: use correct length for syswrite
* LDIF.pm: fix next outside loop in _write_one_entry
* Entry.pod: fix typo
2016-04-16 13:41:00 +00:00

45 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.54 2016/04/16 13:41:00 wen Exp $
DISTNAME= perl-ldap-0.65
PKGNAME= p5-${DISTNAME}
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}
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+= p5-Text-Soundex-[0-9]*:../../textproc/p5-Text-Soundex
#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_OPTIONS_VAR= PKG_OPTIONS.p5-perl-ldap
PKG_SUPPORTED_OPTIONS= sasl inet6
PKG_SUGGESTED_OPTIONS= inet6
.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
post-extract:
chmod a-x ${WRKSRC}/lib/Net/LDAP/DSML.pm
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"