GNU SASL is an implementation of the Simple Authentication and Security Layer framework and a few common SASL mechanisms. SASL is used by network servers (e.g., IMAP, SMTP) to request authentication from clients, and in clients to authenticate against servers. GNU SASL contains a library (`libgsasl'), a command line utility (`gsasl') to access the library from the shell, and a manual. The library includes support for the SASL framework (with authentication functions and application data privacy and integrity functions) and at least partial support for the CRAM-MD5, EXTERNAL, GSSAPI, ANONYMOUS, PLAIN, SECURID, DIGEST-MD5, LOGIN, NTLM and KERBEROS_V5 mechanisms.
35 lines
1,010 B
Makefile
35 lines
1,010 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2003/12/03 19:23:13 xtraeme Exp $
|
|
#
|
|
|
|
DISTNAME= gsasl-0.0.8
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://josefsson.org/gsasl/releases/ \
|
|
${MASTER_SITE_GNU:=gsasl/}
|
|
|
|
MAINTAINER= xtraeme@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/gsasl/
|
|
COMMENT= GNU implementation of the Simple Authentication and Security Layer
|
|
|
|
BUILD_USES_MSGFMT= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_BUILDLINK2= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
INFO_FILES= gsasl.info
|
|
|
|
CONFIGURE_ARGS+= --disable-gtk-doc
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc/html
|
|
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/libgsasl.pc.in
|
|
|
|
.include "../../converters/libiconv/buildlink2.mk"
|
|
.include "../../devel/gettext-lib/buildlink2.mk"
|
|
.include "../../devel/pkgconfig/buildlink2.mk"
|
|
.include "../../security/libgcrypt/buildlink2.mk"
|
|
.include "../../security/gss/buildlink2.mk"
|
|
.include "../../devel/libidn/buildlink2.mk"
|
|
.include "../../devel/libntlm/buildlink2.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|