pkgsrc/net/libnids/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
712 B
Makefile

# $NetBSD: options.mk,v 1.2 2005/05/31 10:01:39 dillo Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libnids
PKG_SUPPORTED_OPTIONS= libnet10 libnet11
PKG_SUGGESTED_OPTIONS= libnet10
.include "../../mk/bsd.options.mk"
###
### Can't support both versions of libnet
###
.if !empty(PKG_OPTIONS:Mlibnet10) && !empty(PKG_OPTIONS:Mlibnet11)
PKG_FAIL_REASON+= "libnet-1.0.x and libnet-1.1.x cannot both be selected." \
"This is due to the packages conflicting."
.endif
###
### libnet 1.0.x branch support
###
.if !empty(PKG_OPTIONS:Mlibnet10)
. include "../../devel/libnet/buildlink3.mk"
.endif
###
### libnet 1.1.x branch support
###
.if !empty(PKG_OPTIONS:Mlibnet11)
. include "../../devel/libnet11/buildlink3.mk"
.endif