pkgsrc/net/arping/options.mk
dillo f81ae835ad Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's a
user settable variable.  Set PKG_SUGGESTED_OPTIONS instead.  Also,
make use of PKG_OPTIONS_LEGACY_VARS.

Reviewed by wiz.
2005-05-31 10:01:36 +00:00

29 lines
774 B
Makefile

# $NetBSD: options.mk,v 1.2 2005/05/31 10:01:38 dillo Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.arping
PKG_SUPPORTED_OPTIONS= arping1 arping2
PKG_SUGGESTED_OPTIONS= arping1
.include "../../mk/bsd.options.mk"
###
### Can't support both versions of arping
###
.if !empty(PKG_OPTIONS:Marping1) && !empty(PKG_OPTIONS:Marping2)
PKG_FAIL_REASON+= "arping1 and arping2 cannot both be selected." \
"This is due to the conflicting versions of libnet."
.endif
###
### Build arping1 which uses libnet 1.0.x branch as is more tested
###
.if !empty(PKG_OPTIONS:Marping1)
. include "../../devel/libnet/buildlink3.mk"
.endif
###
### Build arping2 which uses libnet 1.1.x branch as is less tested
###
.if !empty(PKG_OPTIONS:Marping2)
. include "../../devel/libnet11/buildlink3.mk"
.endif