blob: 7ce0b632bbeabc1733f25fe28eb802200bcf3a17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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.5
CATEGORIES= www
MASTER_SITES= http://home.digithi.de/digithi/dev/
DISTNAME= ${PORTNAME}_${PORTVERSION}
DIST_SUBDIR= apache2
MAINTAINER= apache@FreeBSD.org
COMMENT= Allows authentication against a MySQL database via a secure cookie
USE_MYSQL= YES
# If someone can test it with MySQL 5.0 ;-)
BROKEN_WITH_MYSQL= 50
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_mysql.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>
|