diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2011-09-07 19:50:46 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2011-09-07 19:50:46 +0000 |
commit | 9968bd25b3fbb2efc71a80a86b37b9a5e57ff1e1 (patch) | |
tree | e575d771d7ce2abea5d5c99b3a7312da711ed77c /security/zenmap | |
parent | b1f711291ff91ee95492c49dbcf1793dd10111a7 (diff) |
- emulators/wahcade: eliminate py-elementtree dependency [0]
- security/zenmap: eliminate py-pysqlite2x dependency [1]
- deskutils/griffith: eliminate py-pysqlite2x dependency [2]
PR: ports/160049 [0], ports/160071 [1], ports/160161 [2]
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> [0,1,2]
Approved by: bapt (mentor)
Notes
Notes:
svn path=/head/; revision=281394
Diffstat (limited to 'security/zenmap')
-rw-r--r-- | security/zenmap/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/security/zenmap/Makefile b/security/zenmap/Makefile index a5a979ff09e3..02f01e53648e 100644 --- a/security/zenmap/Makefile +++ b/security/zenmap/Makefile @@ -7,7 +7,7 @@ PORTNAME= zenmap PORTVERSION= 5.21 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ http://nmap.ucsd.edu/dist/ \ @@ -21,11 +21,11 @@ MAINTAINER= ports@FreeBSD.org COMMENT= GUI frontend for the nmap scanning utility RUN_DEPENDS= ${LOCALBASE}/bin/nmap:${PORTSDIR}/security/nmap \ - ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 + ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 PYDISTUTILS_PKGVERSION= ${DISTVERSION} USE_BZIP2= yes -USE_PYTHON= yes +USE_PYTHON= 2.5+ USE_GETTEXT= yes USE_GNOME= pygtk2 INSTALLS_EGGINFO= yes @@ -35,11 +35,11 @@ MLINKS= zenmap.1 xnmap.1 .include <bsd.port.pre.mk> -.if ${ARCH} != "i386" +.if ${ARCH} != "i386" || ${PYTHON_REL} > 260 WITHOUT_PSYCO= yes .endif -.ifndef(WITHOUT_PSYCO) +.ifndef(WITHOUT_PSYCO) RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psyco/_psyco.so:${PORTSDIR}/devel/py-psyco .endif |