4ff342246a
pkgsrc changes: - add license - add/adjust dependencies Upstream changes: 0.19 10 Aug 2009 * tweek N::L::C::G::AD per https://rt.cpan.org/Ticket/Display.html?id=48562 * add isa_user() and isa_group() methods to base class per same RT ticket. 0.20 26 Aug 2009 * add Iterator, SimpleIterator and MultiIterator classes and supporting methods. Thanks to Peter Newman for dialogue on the development of the iterator feature. See https://rt.cpan.org/Ticket/Display.html?id=48562 * fix overloading for boolean checks when stringify() evaluates false (emptry string, e.g.) 0.21 26 Aug 2009 * change fetch_secondary_users() in both Group::AD and Group::POSIX to just wrap around secondary_users_iterator(). 0.22 14 Sep 2009 * add pswd_will_expire_localtime to User::AD * remove init_user_class and init_group_class overrides in subclasses, to prevent masking the fact that you must create your own subclass. 0.23 24 Nov 2009 * add explicit unbind() calls in tests per RT #52037 0.24 29 Nov 2009 * flag some AD tests as TODO until the pack/unpack issue with SIDs can be ironed out. It only seems to affect Net::LDAP::Server::Test, not actual AD servers. 0.25 17 Feb 2010 * rewrite of internal _sid2string() and _string2sid() pack/unpack magic. Many thanks to David Lowe for the help.
28 lines
971 B
Makefile
28 lines
971 B
Makefile
# $NetBSD: Makefile,v 1.4 2010/09/22 06:27:47 sno Exp $
|
|
#
|
|
|
|
DISTNAME= Net-LDAP-Class-0.25
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= databases devel net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Net-LDAP-Class/
|
|
COMMENT= Perl 5 module providing an object-relational mapper for Net::LDAP
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-Clone-[0-9]*:../../devel/p5-Clone
|
|
DEPENDS+= p5-Data-Dump-[0-9]*:../../devel/p5-Data-Dump
|
|
DEPENDS+= p5-Digest-SHA1-[0-9]*:../../security/p5-Digest-SHA1
|
|
DEPENDS+= p5-Net-LDAP-Batch-[0-9]*:../../devel/p5-Net-LDAP-Batch
|
|
DEPENDS+= p5-Rose-Object-[0-9]*:../../devel/p5-Rose-Object
|
|
DEPENDS+= p5-perl-ldap-[0-9]*:../../databases/p5-perl-ldap
|
|
|
|
BUILD_DEPENDS+= p5-Net-LDAP-Server-Test>=0.09:../../devel/p5-Net-LDAP-Server-Test
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PERL5_PACKLIST= auto/Net/LDAP/Class/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|