- Yet another MySQL authentication module for apache 2.0.x

add mod_auth_mysql-1.5

mod_auth_mysql provides an MySQL-based authentication for apache2.
It's also designed to support multiple virtualhosts using only one
database.

WWW: http://www.heuer.org/mod_auth_mysql/
This commit is contained in:
Clement Laforet 2005-09-10 16:04:57 +00:00
parent 4b5e7c7f4a
commit d67de08be3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=142357
4 changed files with 45 additions and 0 deletions

View file

@ -256,6 +256,7 @@
SUBDIR += mod_auth_imap2
SUBDIR += mod_auth_kerb
SUBDIR += mod_auth_mysql
SUBDIR += mod_auth_mysql2
SUBDIR += mod_auth_mysql41_ap2
SUBDIR += mod_auth_mysql_another
SUBDIR += mod_auth_pam

View file

@ -0,0 +1,37 @@
# New ports collection makefile for: mod_auth_mysql2
# Date created: Sep 10 2005
# Whom: Clement Laforet <clement@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mod_auth_mysql
PORTVERSION= 1.5
CATEGORIES= www
MASTER_SITES= http://www.heuer.org/mod_auth_mysql/
DISTNAME= ${PORTNAME}_${PORTVERSION}
EXTRACT_SUFX= .tgz
DIST_SUBDIR= apache2
MAINTAINER= apache@FreeBSD.org
COMMENT= MySQL-based authentication module with VirtualHost support
LATEST_LINK= mod_auth_mysql2
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_MYSQL= YES
WANT_APACHE= 2
AP_FAST_BUILD= YES
AP_GENPLIST= YES
AP_INC+= ${LOCALBASE}/include/mysql
AP_LIB+= ${LOCALBASE}/lib/mysql -lmysqlclient
PORTDOCS= INSTALL example_data.html htpasswd.sql
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/www/apache2/Makefile.modules.3rd"
post-install:
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.include <bsd.port.post.mk>

View file

@ -0,0 +1,2 @@
MD5 (apache2/mod_auth_mysql_1.5.tgz) = d52b83b22ec49bf915e19cbf6720bf7b
SIZE (apache2/mod_auth_mysql_1.5.tgz) = 14844

View file

@ -0,0 +1,5 @@
mod_auth_mysql provides an MySQL-based authentication for apache2.
It's also designed to support multiple virtualhosts using only one
database.
WWW: http://www.heuer.org/mod_auth_mysql/