Add mod_auth_cookie_mysql2 0.3
This modules (for apache2) allows you to auth your users with cookies stored in a MySQL database.
This commit is contained in:
parent
b9fadce313
commit
d445876bce
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=115618
4 changed files with 43 additions and 0 deletions
|
@ -222,6 +222,7 @@
|
|||
SUBDIR += mod_accounting
|
||||
SUBDIR += mod_auth_any
|
||||
SUBDIR += mod_auth_cookie_mysql
|
||||
SUBDIR += mod_auth_cookie_mysql2
|
||||
SUBDIR += mod_auth_external
|
||||
SUBDIR += mod_auth_external2
|
||||
SUBDIR += mod_auth_imap
|
||||
|
|
36
www/mod_auth_cookie_mysql2/Makefile
Normal file
36
www/mod_auth_cookie_mysql2/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# New ports collection makefile for: mod_auth_cookie_mysql2
|
||||
# Date created: Sun Aug 8 2004
|
||||
# Whom: clement
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mod_auth_cookie_mysql2
|
||||
PORTVERSION= 0.3
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://home.digithi.de/digithi/dev/
|
||||
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||
DIST_SUBDIR= apache2
|
||||
|
||||
MAINTAINER= clement@FreeBSD.org
|
||||
COMMENT= Allows authentication against a MySQL database via a secure cookie
|
||||
|
||||
USE_MYSQL= YES
|
||||
# If someone can test it with MySQL 4.1 ;-)
|
||||
BROKEN_WITH_MYSQL= 41
|
||||
|
||||
WANT_APACHE= 2
|
||||
|
||||
AP_FAST_BUILD= YES
|
||||
AP_GENPLIST= YES
|
||||
AP_INC?= ${LOCALBASE}/include/mysql
|
||||
AP_LIB?= ${LOCALBASE}/lib/mysql -lmysqlclient -lz
|
||||
PORTDOCS= mod_auth_cookie_mysql2.html
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${PORTSDIR}/www/apache2/Makefile.modules.3rd"
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
||||
.endif
|
||||
.include <bsd.port.post.mk>
|
2
www/mod_auth_cookie_mysql2/distinfo
Normal file
2
www/mod_auth_cookie_mysql2/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (apache2/mod_auth_cookie_mysql2_0.3.tar.gz) = e8c4dd0b14d31167710a2505a2cef2dc
|
||||
SIZE (apache2/mod_auth_cookie_mysql2_0.3.tar.gz) = 6741
|
4
www/mod_auth_cookie_mysql2/pkg-descr
Normal file
4
www/mod_auth_cookie_mysql2/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
This Apache module allows authentication against a MySQL database via a
|
||||
cryptographically secure cookie.
|
||||
|
||||
WWW: http://home.digithi.de/digithi/dev/mod_auth_cookie_mysql2.html
|
Loading…
Reference in a new issue