developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
34 lines
873 B
Makefile
34 lines
873 B
Makefile
# $NetBSD: Makefile,v 1.16 2006/03/04 21:30:21 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= netsaint-plugins-1.2.9-4
|
|
PKGNAME= netsaint-plugin-snmp-1.2.9.4
|
|
PKGREVISION= 3
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=netsaintplug/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://netsaintplug.sourceforge.net/
|
|
COMMENT= SNMP monitoring plug-in for netsaint
|
|
|
|
DEPENDS+= netsaint-base-[0-9]*:../../net/netsaint-base
|
|
DEPENDS+= net-snmp>=5.0.9:../../net/net-snmp
|
|
|
|
.include "../../net/netsaint-base/Makefile.common"
|
|
|
|
BUILD_TARGET= check_snmp check_hpjd
|
|
|
|
INSTALLATION_DIRS= libexec/netsaint
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/plugins && \
|
|
${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} ${BUILD_TARGET}
|
|
|
|
do-install:
|
|
for PROG in ${BUILD_TARGET}; do \
|
|
${INSTALL_PROGRAM} ${WRKSRC}/plugins/$${PROG} \
|
|
${PREFIX}/libexec/netsaint; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|