_lots_ of changes In brief: # Revision 1.0.0.7 2005/08/10 20:01:56 pbi # - changed Ether.mysummary() (P. Lalet) # - Update of Sebek protocols (P. Lalet) # Revision 1.0.0.21 2005/09/06 17:05:19 pbi # - new logging/warning facility using the logging module # Revision 1.0.0.24 2005/09/08 14:13:36 pbi # - added RandIP() # Revision 1.0.0.33 2005/09/24 14:29:30 pbi # - completed PrismHeader layer # Revision 1.0.4.98 2006/10/06 16:31:41 pbi # - added additionnal DHCP Options (ticket #11) # Revision 1.0.4.84 2006/09/23 06:52:46 pbi # - improved import_hexcap() to handle more hexdump outputs
28 lines
655 B
Makefile
28 lines
655 B
Makefile
# $NetBSD: options.mk,v 1.1 2007/01/03 15:02:51 adrianp 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)
|
|
. include "../../security/py-amkCrypto/buildlink3.mk"
|
|
.endif
|
|
|
|
###
|
|
### Add in gnuplot support for plotting
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mgnuplot)
|
|
DEPENDS+= ${PYPKGPREFIX}-gnuplot-[0-9]*:../../graphics/py-gnuplot
|
|
.endif
|
|
|
|
###
|
|
### Add in TeX support for psdump() and/or pdfdump()
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mscapy-pyx)
|
|
DEPENDS+= ${PYPKGPREFIX}-X-[0-9]*:../../textproc/py-X
|
|
.endif
|