0a5afbf9ed
viewing and safe modification of the contents in a qmail queue. Features include finding abusers, sorting messages by sender/sender's IP, showing stats, requeue messages, queue consistency check, queue backup/restore, and others. PR: ports/79718 Submitted by: Matthew Will <mwill@spingen.com>
34 lines
748 B
Makefile
34 lines
748 B
Makefile
# New ports collection makefile for: qmqtool
|
|
# Date created: Sat Apr 9 09:45:30 EDT 2005
|
|
# Whom: Matthew Will <mwill@spingen.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qmqtool
|
|
PORTVERSION= 1.10
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://jeremy.kister.net/code/qmqtool/ \
|
|
http://mirror.spingen.com/qmqtool/
|
|
DISTNAME= ${PORTNAME}-current
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= mwill@spingen.com
|
|
COMMENT= Tool to manipulate contents of a qmail queue
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
NO_BUILD= yes
|
|
USE_PERL5= yes
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/qmqtool ${PREFIX}/bin
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for FILE in Artistic ChangeLog FAQ README
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|