25460ded76
python-nmap is a python library which helps in using nmap port scanner. It allows to easilly manipulate nmap scan results and will be a perfect tool for systems administrators who want to automatize scanning task and reports. It also supports nmap script outputs. ok benoit@
28 lines
587 B
Makefile
28 lines
587 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/10/16 08:58:56 landry Exp $
|
|
|
|
COMMENT = python interface to the nmap scan data
|
|
|
|
MODPY_EGG_VERSION = 0.1.4
|
|
DISTNAME = python-nmap-${MODPY_EGG_VERSION}
|
|
PKGNAME = ${DISTNAME:S/python/py/}
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://xael.org/norman/python/python-nmap/
|
|
MASTER_SITES = ${HOMEPAGE}
|
|
|
|
MAINTAINER = Remi Pointel <remi.pointel@xiri.fr>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
RUN_DEPENDS = ::net/nmap
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|