f25b2bf7b3
- fixes the byte-ordering issue in radius authentication packet - the original may not work on little-endian machine. - make it more conform to the nagios plugin return code convention Cosmetical changes: - provide more verbose information for debugging PR: ports/95398 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> Approved by: Andrew L Kilpatrick <tiger@whitetigersd.com> (maintainer)
30 lines
758 B
Makefile
30 lines
758 B
Makefile
# New ports collection makefile for: nagios-spamd-plugin
|
|
# Date created: 2006-01-18
|
|
# Whom: Andrew Kilpatrick <tiger@whitetigersd.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nagios-radauth-plugin
|
|
PORTVERSION= 1.00
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://www.hick.org/code/skape/radauth/
|
|
DISTNAME= radauth-${PORTVERSION}
|
|
|
|
MAINTAINER= tiger@whitetigersd.com
|
|
COMMENT= Nagios plugin for checking radius server
|
|
|
|
NAGIOS_PLUGIN_DIR?= libexec/nagios
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX} \
|
|
--bindir=${PREFIX}/${NAGIOS_PLUGIN_DIR}
|
|
|
|
PLIST_FILES= "@exec ${MKDIR} ${NAGIOS_PLUGIN_DIR}" \
|
|
${NAGIOS_PLUGIN_DIR}/check_radauth
|
|
PLIST_DIRS= ${NAGIOS_PLUGIN_DIR}
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/${NAGIOS_PLUGIN_DIR}
|
|
|
|
.include <bsd.port.mk>
|