diff options
author | eadler <eadler@FreeBSD.org> | 2011-09-08 03:50:46 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2011-09-08 03:50:46 +0800 |
commit | 8a3f16869b397863d4a6f7ea09efc5d2a41462a5 (patch) | |
tree | a2fb85527591cfb3cb5346267946587860c612c5 /security | |
parent | d5317d651bd960338060ed42366e082e3acc98d9 (diff) | |
download | freebsd-ports-gnome-8a3f16869b397863d4a6f7ea09efc5d2a41462a5.tar.gz freebsd-ports-gnome-8a3f16869b397863d4a6f7ea09efc5d2a41462a5.tar.zst freebsd-ports-gnome-8a3f16869b397863d4a6f7ea09efc5d2a41462a5.zip |
- 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)
Diffstat (limited to 'security')
-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 |