diff options
author | vsevolod <vsevolod@FreeBSD.org> | 2005-07-23 12:31:53 +0000 |
---|---|---|
committer | vsevolod <vsevolod@FreeBSD.org> | 2005-07-23 12:31:53 +0000 |
commit | 2fd0bcf1e884d905774115b8d3f409cb4f1e73cd (patch) | |
tree | aa5e76a4feb1c8875421d1d660b4ec38aeb7c1c2 /devel/drpython/Makefile | |
parent | f5c02a6a467f17383767fe2c5e89bacc76e77c2a (diff) | |
download | FreeBSD-ports-2fd0bcf1e884d905774115b8d3f409cb4f1e73cd.zip FreeBSD-ports-2fd0bcf1e884d905774115b8d3f409cb4f1e73cd.tar.gz |
Add devel/drpython - highly customizable cross-platform ide to aid
programming in Python.
Approved by: perky (mentor)
Diffstat (limited to 'devel/drpython/Makefile')
-rw-r--r-- | devel/drpython/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/drpython/Makefile b/devel/drpython/Makefile new file mode 100644 index 0000000..8a0858a --- /dev/null +++ b/devel/drpython/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: drpython +# Date created: 2005-07-22 +# Whom: vsevolod +# +# $FreeBSD$ +# + +PORTNAME= drpython +PORTVERSION= 3.10.13 +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} + +MAINTAINER= vsevolod@FreeBSD.org +COMMENT= Highly customizable cross-platform ide to aid programming in Python + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/wx-2.6-gtk2-ansi/wx/__init__.py:${PORTSDIR}/x11-toolkits/py-wxPython26 + +USE_ZIP= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +post-install: + @${ECHO} '#!/bin/sh' > ${WRKDIR}/drpython.sh + @${ECHO} '(cd ${PYTHONPREFIX_SITELIBDIR}/drpython && ${PYTHON_CMD} drpython.py)' >> ${WRKDIR}/drpython.sh + @${INSTALL_SCRIPT} ${WRKDIR}/drpython.sh ${PREFIX}/bin/drpython + +.include <bsd.port.mk> |