mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
a117c911f2
- remove 4.x stuff - depends on ctypes if not Python2.5 - add MIRROR - update my mail address PR: 111468 Submitted by: Li-Wen Hsu <lwhsu@freebsd.org> Approved by: itetcu (mentor, implicit)
37 lines
775 B
Makefile
37 lines
775 B
Makefile
# Ports collection makefile for: IPython
|
|
# Date created: Nov, 13 2003
|
|
# Whom: Dryice Liu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ipython
|
|
PORTVERSION= 0.8.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://ipython.scipy.org/dist/ \
|
|
${MASTER_SITE_LOCAL} \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
MASTER_SITE_SUBDIR= dryice
|
|
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= dryice@FreeBSD.org
|
|
COMMENT= An enhanced Interactive Python shell
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pexpect.py:${PORTSDIR}/misc/py-pexpect
|
|
|
|
MAN1= ipython.1 pycolor.1
|
|
MANCOMPRESSED= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 250
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_ctypes.so:${PORTSDIR}/devel/py-ctypes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|