6411e6556a
mboxstats creates several top-10 lists from a file containing message in mbox-format. List of top10 lists: o Top writes o Top receivers o Top subjects o Top cc'ers o Top top-level-domain o Top timezones o Top organisations o Top useragents (mailprograms) o Top month/day-of-month/day-of-week/hour o Average number of lines per message o All kinds of per-user statistics And much more! WWW: http://vanheusden.com/mboxstats/ PR: 58748 Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
27 lines
584 B
Makefile
27 lines
584 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: mboxstats
|
|
# Date created: Oct 31 2003
|
|
# Whom: clsung
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mboxstats
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://vanheusden.com/mboxstats/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= clsung@dragon2.net
|
|
COMMENT= Creates top-10 lists of the messages in a mailbox
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|ssize_t|size_t|g' ${WRKSRC}/io.h
|
|
@${REINPLACE_CMD} -e 's|PATH_MAX|FILENAME_MAX|g' ${WRKSRC}/main.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mboxstats ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|