mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
31 lines
750 B
Makefile
31 lines
750 B
Makefile
# $NetBSD: options.mk,v 1.6 2016/07/09 13:04:02 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.scapy
|
|
|
|
PKG_SUPPORTED_OPTIONS= scapy-crypto gnuplot scapy-pyx
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Add in crypto support for WEP operations
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mscapy-crypto)
|
|
DEPENDS+= ${PYPKGPREFIX}-amkCrypto-[0-9]*:../../security/py-amkCrypto
|
|
.endif
|
|
|
|
###
|
|
### Add in gnuplot support for plotting
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mgnuplot)
|
|
DEPENDS+= ${PYPKGPREFIX}-gnuplot-[0-9]*:../../graphics/py-gnuplot
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-gnuplot
|
|
.endif
|
|
|
|
###
|
|
### Add in TeX support for psdump() and/or pdfdump()
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mscapy-pyx)
|
|
PYTHON_VERSIONED_DEPENDENCIES= X
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.endif
|