diff options
author | jlam <jlam@pkgsrc.org> | 2002-03-06 19:33:38 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-03-06 19:33:38 +0000 |
commit | 48323a144ac00ec5d6e9448063af06cb8c0aa88d (patch) | |
tree | 55a3263b424a986e42a9ede4f4fed45e658312b9 /www/ap-auth-pam/Makefile | |
parent | 65fecffe314f8f42ab100d39888c7670132299d8 (diff) | |
download | pkgsrc-48323a144ac00ec5d6e9448063af06cb8c0aa88d.tar.gz |
Initial import of ap-auth-pam-1.0a as www/ap-auth-pam.
This is an authentication module for Apache that allows you to authenticate
HTTP clients using Pluggable Authentication Modules (PAM).
Diffstat (limited to 'www/ap-auth-pam/Makefile')
-rw-r--r-- | www/ap-auth-pam/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www/ap-auth-pam/Makefile b/www/ap-auth-pam/Makefile new file mode 100644 index 00000000000..8f330ae57be --- /dev/null +++ b/www/ap-auth-pam/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/03/06 19:33:38 jlam Exp $ + +DISTNAME= mod_auth_pam-1.0a +PKGNAME= ap-auth-pam-1.0a +CATEGORIES= www +MASTER_SITES= http://pam.sourceforge.net/mod_auth_pam/dist/ + +MAINTAINER= jlam@netbsd.org +HOMEPAGE= http://pam.sourceforge.net/mod_auth_pam/ +COMMENT= module to allow Apache authentication using PAM + +DEPENDS+= ${BUILDLINK_DEPENDS.apache}:../../www/apache + +USE_BUILDLINK_ONLY= YES + +LIBS+= -lpam +EGDIR= ${PREFIX}/share/examples/mod_auth_pam +HTMLDIR= ${PREFIX}/share/doc/html/mod_auth_pam + +do-build: + cd ${WRKSRC}; ${APXS} -c $(CPPFLAGS) $(LDFLAGS) $(LIBS) mod_auth_pam.c + +do-install: + @cd ${WRKSRC}; ${APXS} -i mod_auth_pam.so + ${INSTALL_DATA_DIR} ${EGDIR} ${HTMLDIR} + ${INSTALL_DATA} ${WRKSRC}/samples/httpd ${EGDIR}/httpd.pam + ${INSTALL_DATA} ${WRKSRC}/doc/configure.html ${HTMLDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/faq.html ${HTMLDIR} + +.include "../../security/PAM/buildlink.mk" +.include "../../www/apache/buildlink.mk" +.include "../../mk/bsd.pkg.mk" |