mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
a84c115a09
Approved by: portmgr (not really, but touches unstaged ports)
28 lines
663 B
Makefile
28 lines
663 B
Makefile
# Created by: Matthew Will <mwill@spingen.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qmqtool
|
|
PORTVERSION= 1.12
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://jeremy.kister.net/code/qmqtool/ \
|
|
http://mirror.spingen.com/qmqtool/
|
|
DISTNAME= ${PORTNAME}-current
|
|
|
|
MAINTAINER= mwill@spingen.com
|
|
COMMENT= Tool to manipulate contents of a qmail queue
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
NO_BUILD= yes
|
|
USES= perl5 tar:tgz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/qmqtool ${STAGEDIR}${PREFIX}/bin
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for FILE in Artistic ChangeLog FAQ README
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|