mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
925eb88fa4
- new OPTIONS PR: 104649 Submitted by: Anton Karpov Approved by: VANHULLEBUS Yvan (maintainer)
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# New ports collection makefile for: scapy
|
|
# Date created: 08 dec 2005
|
|
# Whom: vanhu <vanhu@netasq.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# TODO: - configurable --enable-xxx for various additional dependancies
|
|
|
|
PORTNAME= scapy
|
|
PORTVERSION= 1.0.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://secdev.org/projects/scapy/files/
|
|
|
|
MAINTAINER= vanhu@netasq.com
|
|
COMMENT= Powerful interactive packet manipulation program in python
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/dnet.so:${PORTSDIR}/net/py-libdnet \
|
|
${PYTHON_SITELIBDIR}/pcap.py:${PORTSDIR}/net/py-pcap
|
|
|
|
MAN1= scapy.1
|
|
MANCOMPRESSED= no
|
|
|
|
PLIST_FILES= bin/scapy
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS= PYX "Support for PostScript and PDF graphs drawing" off \
|
|
PYCRYPTO "Support for py-crypto for WEP decoding" off \
|
|
PYGNUPLOT "Support for py-gnuplot wrapper to plot graphs" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PYX)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pyx/__init__.py:${PORTSDIR}/graphics/py-PyX
|
|
.endif
|
|
|
|
.if defined(WITH_PYCRYPTO)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Crypto/__init__.py:${PORTSDIR}/security/py-pycrypto
|
|
.endif
|
|
|
|
.if defined(WITH_PYGNUPLOT)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Gnuplot/__init__.py:${PORTSDIR}/math/py-gnuplot
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scapy.py ${PREFIX}/bin/scapy
|
|
${INSTALL_MAN} ${WRKSRC}/scapy.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.post.mk>
|