aboutsummaryrefslogtreecommitdiffstats
path: root/mail/queue-repair/Makefile
blob: 45d15787cad4d5c5c92ca4cb3bd3bd6f28bbc2fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# New ports collection makefile for:    queue-repair
# Date created:     22 Aug 2002
# Whom:         Sergei Kolobov <sergei@kolobov.com>
#
# $FreeBSD$
#

PORTNAME=   queue-repair
PORTVERSION=    0.9.0
PORTREVISION=   1
CATEGORIES= mail python
MASTER_SITES=   http://pyropus.ca/software/${PORTNAME}/

MAINTAINER= sergei@FreeBSD.org
COMMENT=    A qmail queue diagnostic and repair tool

.if !defined(WITHOUT_QMAIL_PORT)
USE_QMAIL_RUN=  yes
.endif

USE_PYTHON= yes

PLIST_FILES=    bin/queue-repair
PORTDOCS=   BLURB CHANGELOG TODO

do-build:
    ${REINPLACE_CMD} -e 's,^#!/usr/bin/python,#!${PYTHON_CMD},' \
        ${WRKSRC}/queue_repair.py
.if !defined(WITHOUT_QMAIL_PORT)
    ${REINPLACE_CMD} -e 's,nofiles,qnofiles,' ${WRKSRC}/queue_repair.py
.endif

do-install:
    ${INSTALL_SCRIPT} ${WRKSRC}/queue_repair.py ${PREFIX}/bin/queue-repair
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
. endfor
.endif

.include <bsd.port.mk>