blob: 9e3180fe54145fbcbadfdff4b5e285d1103ab1ed (
plain)
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
|
# New ports collection makefile for: apache mod_auth_mysql
# Date created: 2000/05/19
# Whom: jim@thehouselys.net
#
# $FreeBSD$
PORTNAME= mod_auth_mysql
PORTVERSION= 3.2
CATEGORIES= www
MASTER_SITES= SF/mod-auth-mysql/mod-auth-mysql/mod-auth-mysql-1.0
MAINTAINER= apache@FreeBSD.org
COMMENT= Allows users to use MySQL databases for user authentication
MAKE_JOBS_SAFE= yes
USE_MYSQL= yes
USE_APACHE= 13
AP_GENPLIST= yes
PORTDOCS= README USAGE
PLIST_FILES+= %%APACHEMODDIR%%/mod_auth_mysql.so
post-patch:
${REINPLACE_CMD} -e 's,/usr,${LOCALBASE},g' -e 's,apxs,${APXS},' ${WRKSRC}/Makefile
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
.endfor
.endif
.include <bsd.port.mk>
|