mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
9f7c6a243d
- Take maintainership PR: ports/93293 Submitted by: Anders Troback <freebsd@troback.com>
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
# ports collection makefile for: bigsister
|
|
# Date created: 25 March 2004
|
|
# Whom: Bruce M Simpson <bms@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bigsister
|
|
PORTVERSION= 1.02
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= big-sister-${PORTVERSION}
|
|
|
|
MAINTAINER= freebsd@troback.com
|
|
COMMENT= SNMP-based network and system monitor with web interface
|
|
|
|
RUN_DEPENDS= \
|
|
rrdtool:${PORTSDIR}/net/rrdtool \
|
|
${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \
|
|
${SITE_PERL}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww \
|
|
${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net \
|
|
${SITE_PERL}/SNMP_Session.pm:${PORTSDIR}/net-mgmt/p5-SNMP_Session \
|
|
${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI
|
|
|
|
# net-snmp provides SNMP.pm. ucd-snmp does not; requires p5-SNMP.
|
|
# Depend on net-snmp by default.
|
|
.if defined(WITH_UCDSNMP)
|
|
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/SNMP.pm:${PORTSDIR}/net-mgmt/p5-SNMP
|
|
.else
|
|
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/SNMP.pm:${PORTSDIR}/net-mgmt/net-snmp
|
|
.endif
|
|
|
|
USE_GMAKE= yes
|
|
USE_PERL5= yes
|
|
USE_RC_SUBR= ${PORTNAME}.sh
|
|
NO_BUILD= yes
|
|
HAS_CONFIGURE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/big-sister-${PORTVERSION}
|
|
|
|
BS_USER?= bs
|
|
BS_PERL_EXT?= pl
|
|
BS_URL?= /bs
|
|
BS_CGI_PATH?= /cgi-bin
|
|
CONFIGURE_ARGS= \
|
|
--prefix=${PREFIX}/${PORTNAME} \
|
|
--with-cgi=${BS_CGI_PATH} \
|
|
--with-perlext=${BS_PERL_EXT} \
|
|
--with-url=${BS_URL} \
|
|
--with-user=${BS_USER}
|
|
|
|
pre-install:
|
|
@${SETENV} PKG_PREFIX=${PREFIX}/${PORTNAME} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
|
|
.include <bsd.port.mk>
|