mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
39 lines
776 B
Makefile
39 lines
776 B
Makefile
# New ports collection makefile for: mod_mylo
|
|
# Date created: 12 November 2001
|
|
# Whom: Anders Nordby <anders@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_mylo
|
|
PORTVERSION= 0.2.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://sheepkiller.nerim.net/ports/${PORTNAME}/ \
|
|
ftp://ftp.nuug.no/pub/anders/distfiles/
|
|
|
|
MAINTAINER= apache@FreeBSD.org
|
|
COMMENT= An Apache module to make Apache log to MySQL
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_APACHE= 1.3
|
|
USE_MYSQL= YES
|
|
|
|
AP_FAST_BUILD= yes
|
|
AP_GENPLIST= yes
|
|
|
|
AP_INC= ${LOCALBASE}/include
|
|
AP_LIB= ${LOCALBASE}/lib/mysql -lmysqlclient
|
|
|
|
PORTDOCS= mod_mylo.sql README
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|