mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
5c7c66618a
- Add SHA256
37 lines
773 B
Makefile
37 lines
773 B
Makefile
# New ports collection makefile for: mod_vdbh
|
|
# Date created: Sun Oct 19
|
|
# Whom: Clement Laforet <clement@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_vdbh
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.synthemesc.com/downloads/mod_vdbh/
|
|
DIST_SUBDIR= apache
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= Allows mass virtual hosting using a MySQL backend with Apache 2.0.x
|
|
|
|
USE_APACHE= 20+
|
|
AP_FAST_BUILD= YES
|
|
AP_GENPLIST= YES
|
|
USE_MYSQL= YES
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
AP_INC+= ${LOCALBASE}/include/mysql
|
|
AP_LIB+= ${LOCALBASE}/lib/mysql -lmysqlclient
|
|
|
|
PORTDOCS= AUTHORS README TODO
|
|
|
|
post-install:
|
|
.if !defined (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
. for f in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|