blob: 868aaa16c666c7ed4b9d049abc5ce25f9558cc2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: options.mk,v 1.2 2009/03/07 15:02:23 seb 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-IO-Socket-INET6>=2.00:../../net/p5-IO-Socket-INET6
.endif
|