freebsd-ports/www/mod_log_dbd/Makefile
Martin Wilke a0774bd73d mod_log_dbd is an add-on module for the Apache web server that uses the APR DBD
framework to store access logs in a database. Any missing tables and columns
are automatically created if the module is given a database user with
sufficient privileges.

This module was designed for simplicity and therefore doesn't allow the
nearly-inifinite customization of other logging modules. For example,
column and table names are created automatically, which not only
simplifies configuration but improves performance as well.

WWW: http://bfoz.net/projects/mod_log_dbd/

-Brandon
bfoz@bfoz.net

PR:		ports/108326
Submitted by:	Brandon Fosdick <bfoz at bfoz.net>
2007-03-07 16:29:02 +00:00

24 lines
560 B
Makefile

# New ports collection makefile for: mod_log_dbd
# Date created: 2006/01/19
# Whom: Brandon Fosdick <bfoz@bfoz.net>
#
# $FreeBSD$
PORTNAME= mod_log_dbd
PORTVERSION= 0.1
CATEGORIES= www databases
MASTER_SITES= http://bfoz.net/projects/${PORTNAME}/release/
MAINTAINER= bfoz@bfoz.net
COMMENT= Uses APR DBD to store Apache access logs in a database
USE_APACHE= 2.2+
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-mysql=${PREFIX} \
--with-apache=${PREFIX}
do-install:
$(APXS) -i -a -n log_dbd $(WRKSRC)/mod_log_dbd.la
.include <bsd.port.mk>