mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
b66056ffed
Based on the timeout of 3+ months (2018-03-23-now) on bug#226885 for net/ucarp Also, looking at the subversion log, there were timeouts on: * bug#224169 r465659 | ygy | 2018-03-26 19:51:12 * bug#224768 r459066 | swills | 2018-01-15 07:16:28 * bug#224755 r459058 | swills | 2018-01-15 06:55:08 The last approval from alexey@renatasystems.org was over a year ago: bug#218563 r438885 | lifanov | 2017-04-19 08:30:28 (devel/py-colorama)
39 lines
974 B
Makefile
39 lines
974 B
Makefile
# Created by: arved
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nagios-spamd-plugin
|
|
PORTVERSION= 1.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= ftp://jhweiss.de/pub/users/weiss/nagios/plugins/
|
|
DISTNAME= check_spamd-${PORTVERSION}.pl
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Nagios plugin for checking SpamAssassins spamd
|
|
|
|
RUN_DEPENDS+= ${LOCALBASE}/${NAGIOS_PLUGIN_DIR}/utils.pm:net-mgmt/nagios-plugins
|
|
|
|
USES= perl5 shebangfix
|
|
SHEBANG_FILES= check_spamd.pl
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
PLIST_FILES= ${NAGIOS_PLUGIN_DIR}/check_spamd.pl
|
|
|
|
NAGIOS_PLUGIN_DIR= libexec/nagios
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}/check_spamd.pl
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e \
|
|
"s,/usr/local/nagios/libexec,${PREFIX}/${NAGIOS_PLUGIN_DIR}," \
|
|
${WRKSRC}/check_spamd.pl
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${NAGIOS_PLUGIN_DIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/check_spamd.pl ${STAGEDIR}${PREFIX}/${NAGIOS_PLUGIN_DIR}
|
|
|
|
.include <bsd.port.mk>
|