69667d219f
- Bump PORTREVISIONs.
58 lines
1.6 KiB
Makefile
58 lines
1.6 KiB
Makefile
# New ports collection makefile for: nagios-snmp-plugins
|
|
# Date created: 19 Jul 2004
|
|
# Whom: Bruce M Simpson <bms@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nagios-snmp-plugins
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://www.softwareforge.de/releases/${PORTNAME}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Additional SNMP plugins for Nagios
|
|
|
|
LIB_DEPENDS= netsnmp.16:${PORTSDIR}/net-mgmt/net-snmp
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= automake:14 autoheader:261 autoconf:261
|
|
USE_GMAKE= yes
|
|
USE_PERL5= yes
|
|
|
|
NAGIOS_PLUGIN_DIR= ${PREFIX}/libexec/nagios
|
|
|
|
AUTOMAKE_ARGS= --add-missing
|
|
CONFIGURE_ARGS= --sbindir=${PREFIX}/share/nagios/cgi-bin \
|
|
--libexecdir=${NAGIOS_PLUGIN_DIR} \
|
|
--datadir=${PREFIX}/share/nagios \
|
|
--sysconfdir=${PREFIX}/etc/nagios \
|
|
--localstatedir=/var/spool/nagios \
|
|
--with-snmp=${PREFIX}
|
|
CONFIGURE_ENV= LOCALBASE=${LOCALBASE}
|
|
|
|
# Workaround configure.in lameness.
|
|
CONFIGURE_ENV+= CPPFLAGS="`net-snmp-config --cflags`"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-configure:
|
|
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} ${ACLOCAL} \
|
|
--acdir=${ACLOCAL_DIR})
|
|
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} ${AUTOHEADER})
|
|
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} ${AUTOMAKE} \
|
|
${AUTOMAKE_ARGS})
|
|
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOMAKE_ENV} ${AUTOCONF} \
|
|
${AUTOCONF_ARGS})
|
|
|
|
do-install:
|
|
${MKDIR} ${NAGIOS_PLUGIN_DIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/check_snmp_disk ${NAGIOS_PLUGIN_DIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/check_snmp_proc ${NAGIOS_PLUGIN_DIR}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|