blob: 471fc48047ab836a2ee8e536296233d58b455cca (
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.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
|