blob: dd7304d0bebb3f95e39fcf28b55c030acc071814 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Created by: Elisey Savateev <b3k@mail.ru>
# $FreeBSD$
PORTNAME= umit
PORTVERSION= 1.0
PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= SF
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT= UMIT is the nmap frontend developed with Python and PyGTK
RUN_DEPENDS= ${LOCALBASE}/bin/nmap:${PORTSDIR}/security/nmap \
${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
INSTALLS_ICONS= yes
USES= tar:bzip2
USE_GNOME= pygtk2
USE_PYTHON= yes
USE_PYDISTUTILS= yes
NO_STAGE= yes
post-patch:
${REINPLACE_CMD} \
-e 's/self.build_html_doc()//' \
-e 's,distutils\.command\.install ,setuptools\.command\.install ,' \
${WRKSRC}/setup.py
.include <bsd.port.mk>
|