f9512af34d
Version 0.8.4 8 July 2001 -when force-creating a queue, ensure the user supplies a value for conf-split and either --bigtodo or --no-bigtodo -change --create to imply --repair as well Version 0.8.3 7 July 2001 -enforce checking of prime conf-split. Use --i-want-a-broken-conf-split to force a non-prime split value in repair mode -add explicit -h, --help options -enforce checking of existence of basic queue directories to prevent accidental creation of queue in wrong place due to typos, etc. Use -c, --create to force creation of a new queue -when creating a directory, force create missing parent(s) -fix --no-bigtodo to allow conversion of big-todo queue to non-big-todo; would previously auto-detect big-todo regardless -improve forced conversion of non-big-todo queue to big-todo or vice versa, and force change of conf-split for existing queues
23 lines
636 B
Makefile
23 lines
636 B
Makefile
# $NetBSD: Makefile,v 1.2 2001/07/09 18:34:54 zuntum Exp $
|
|
#
|
|
|
|
DISTNAME= queue-repair-0.8.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.qcc.sk.ca/~charlesc/software/queue_repair/
|
|
|
|
MAINTAINER= zuntum@netbsd.org
|
|
COMMENT= check or correct most corruptions of the queue in qmail
|
|
|
|
DEPENDS+= python-*:../../lang/python
|
|
|
|
NO_BUILD= YES
|
|
|
|
post-patch:
|
|
${SED} "s,/usr/bin/python,${LOCALBASE}/bin/python," \
|
|
${WRKSRC}/queue_repair.py > ${WRKSRC}/queue_repair.py.done
|
|
${MV} ${WRKSRC}/queue_repair.py.done ${WRKSRC}/queue_repair.py
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/queue_repair.py ${PREFIX}/bin/queue_repair
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|