3041d1e361
SMA is a program that analyses sendmail log entries. The key features of SMA are Fast (written in C) Portable Free (BSD-style licensing) output as HTML or ASCII. SMA features Support for all recent sendmail versions (UNIX/NT) Flexible output formatting - HTML, ASCII and Custom Log Regular expression filtering of messages Multiple hosts in a same report WWW: http://www.klake.org/sma/
40 lines
861 B
Makefile
40 lines
861 B
Makefile
# New ports collection makefile for: sma
|
|
# Date created: 28. Mar 2002
|
|
# Whom: dirk.meyer@dinoex.sub.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sma
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.klake.org/sma/dl/
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
|
|
MAN8= sma.8
|
|
DOCSFILES= BUGS COPYRIGHT HISTORY README TODO
|
|
SAMPLEFILES= sma.conf
|
|
ALL_TARGET= sma
|
|
|
|
do-configure:
|
|
${PERL} -pi -e "s,CC =,CC?=," ${WRKSRC}/Makefile
|
|
${PERL} -pi -e "s,CFLAGS = -Wall -O,CFLAGS+= ," \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sma ${PREFIX}/bin/sma
|
|
${INSTALL_MAN} ${WRKSRC}/sma.8 ${PREFIX}/man/man8/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
.for i in ${DOCSFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/
|
|
.endfor
|
|
.for i in ${SAMPLEFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${EXAMPLESDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|