pkgsrc/net/mrtg/options.mk
adrianp 89f20fab5a Update to 2.14.5
Package changes include:
- pkglintification
- move to options.mk
- add in extra option for building with snmpv3 support (not tested)
- tidy up MESSAGE (no more html docs)

MRTG changes include:
* updated SNMP_util.pm and Net_SNMP_util.pm
* new: clonedirectory function
* Updated SNMP_Session to 1.08
* SNMP v3 support added Net::SNMP library required for this

For a full list see:
http://people.ee.ethz.ch/~oetiker/webtools/mrtg/pub/CHANGES

Addresses PR# 32811
ok'ed bouyer@
2006-08-09 21:42:42 +00:00

21 lines
461 B
Makefile

# $NetBSD: options.mk,v 1.1 2006/08/09 21:42:42 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mrtg
PKG_SUPPORTED_OPTIONS= inet6 mrtg-snmpv3
.include "../../mk/bsd.options.mk"
###
### Use an external SNMP module to get SNMPv3 support
###
.if !empty(PKG_OPTIONS:Mmrtg-snmpv3)
DEPENDS+= p5-Net-SNMP-[0-9]*:../../net/p5-Net-SNMP
.endif
###
### Support for IPv6 enabled devices
###
.if !empty(PKG_OPTIONS:Minet6)
DEPENDS+= p5-INET6>=2.00:../../net/p5-INET6
.endif