91ba3e3d14
Ensure that the ${NAGIOS_GROUP} group is created before the package files are installed since the plugin binary must be made setgid to that group. Bump the PKGREVISIONs of these plugin packages due to package install scripts being added. -------------------------------------------------------------------
29 lines
743 B
Makefile
29 lines
743 B
Makefile
# $NetBSD: Makefile,v 1.4 2017/08/07 09:30:46 jlam Exp $
|
|
#
|
|
|
|
PKGNAME= nagios-plugin-raidctl-${DISTNAME:C/.*-//}
|
|
PKGREVISION= 1
|
|
DISTNAME= check_raidctl-0.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://ftp.espci.fr/pub/nagios-local/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= manu@NetBSD.org
|
|
HOMEPAGE= http://ftp.espci.fr/pub/nagios-local/
|
|
COMMENT= RAIDframe monitoring plugin for Nagios
|
|
LICENSE= modified-bsd
|
|
|
|
INSTALLATION_DIRS+= libexec/nagios
|
|
|
|
BUILD_DEFS+= NAGIOS_GROUP
|
|
PKG_GROUPS_VARS+= NAGIOS_GROUP
|
|
PKG_GROUPS= ${NAGIOS_GROUP}
|
|
|
|
SPECIAL_PERMS+= ${PREFIX}/libexec/nagios/check_raidctl \
|
|
${REAL_ROOT_USER} ${NAGIOS_GROUP} 4554
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/check_raidctl \
|
|
${DESTDIR}${PREFIX}/libexec/nagios/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|