a8ffde84d3
Server(tm) and Microsoft Internet Explorer(tm). While it is not really secure, it offers background authentication (the workstation logon credentials of users are passed through to the web server). This feature is widely used in intranets based on these Microsoft products. This module is implementing NTLM authentication for Apache on Unix platforms. It is available free of charges under the BSD License.
34 lines
771 B
Makefile
34 lines
771 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/10/17 19:24:10 sborrill Exp $
|
|
#
|
|
|
|
DISTNAME= ntlm2
|
|
PKGNAME= ${APACHE_PKG_PREFIX}-auth-ntlm-${DISTVERS}
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.jamiekerwick.co.uk/modntlm/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://modntlm.sourceforge.com/
|
|
COMMENT= Apache module for NTLM authentication
|
|
|
|
PKG_APACHE_ACCEPTED= apache2 apache22
|
|
|
|
.include "../../mk/apache.mk"
|
|
|
|
APACHE_MODULE_NAME= mod_ntlm.${MODULE_EXT}
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
DISTVERS= 0.2
|
|
MODULE_EXT= la
|
|
|
|
MESSAGE_SUBST+= MODULE_NAME=ntlm_module
|
|
MESSAGE_SUBST+= EGDIR=${EGDIR}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/mod_ntlm
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ntlm.conf ${EGDIR}
|
|
|
|
.include "../../www/apache/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|