mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
31 lines
566 B
Makefile
31 lines
566 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: winpdb
|
|
# Date created: Feb 15, 2007
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= winpdb
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= An advanced Python debugger
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Crypto/__init__.py:${PORTSDIR}/security/py-pycrypto
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
USE_WX= 2.6
|
|
WX_COMPS= python
|
|
|
|
post-install:
|
|
.for file in rpdb2 winpdb
|
|
@${MV} -f ${PREFIX}/bin/_${file}.py ${PREFIX}/bin/${file}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|