fe5eaf7ff8
Gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. Since 0.14 it also compiles and works with Heimdal. Lacks of Heimdal support are gss_release_oid(), gss_str_to_oid() and fail of some tests. The API presented by this module is a mildly object oriented reinterpretation of the C API, where opaque C structures are Perl objects, but the style of function call has been left mostly untouched. As a result, most routines modify one or more of the parameters passed to them, reflecting the C call-by-reference (or call-by-value-return) semantics. All users of this module are therefore strongly advised to localize all usage of these routines to minimize pain if and when the API changes.
18 lines
480 B
Makefile
18 lines
480 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/05/15 11:57:14 markd Exp $
|
|
#
|
|
|
|
DISTNAME= GSSAPI-0.21
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= security perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=LWP/AGROLMS/}
|
|
|
|
MAINTAINER= markd@NetBSD.org
|
|
HOMEPAGE= http://perlgssapi.sourceforge.net/
|
|
COMMENT= Perl extension providing access to the GSSAPIv2 library
|
|
|
|
PERL5_PACKLIST= auto/GSSAPI/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/krb5.buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|