f6dd9d2f87
For the Python 3.8 default switch.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.32 2020/12/04 20:45:36 nia Exp $
|
|
|
|
DISTNAME= scapy-2.4.3
|
|
PKGREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=secdev/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.secdev.org/projects/scapy/
|
|
COMMENT= Interactive packet manipulation program
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
NO_BUILD= yes
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 37 36 27 # 3.8 not officially supported yet
|
|
|
|
INSTALLATION_DIRS+= share/examples/scapy
|
|
|
|
.include "options.mk"
|
|
|
|
CONF_FILES= ${PREFIX}/share/examples/scapy/ethertypes \
|
|
${PKG_SYSCONFDIR}/ethertypes
|
|
|
|
SUBST_CLASSES+= config
|
|
SUBST_STAGE.config= pre-configure
|
|
SUBST_FILES.config= scapy/data.py setup.py
|
|
SUBST_VARS.config= PKG_SYSCONFDIR
|
|
SUBST_SED.config+= -e "s|share/man|${PKGMANDIR}|g"
|
|
SUBST_MESSAGE.config= Fixing paths.
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/ethertypes ${WRKSRC}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/ethertypes ${DESTDIR}${PREFIX}/share/examples/scapy/
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/test && ${SETENV} PYTHON=${PYTHONBIN} ./run_tests
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|