blob: 73a09e84c4313a1046af3a7f70bf2024dd00dfbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Ports collection makefile for: IPython
# Date created: Nov, 13 2003
# Whom: Dryice Liu
#
# $FreeBSD$
#
PORTNAME= ipython
PORTVERSION= 0.7.2
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= http://ipython.scipy.org/dist/ \
http://dryice.name/computer/FreeBSD/distfiles/
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX}
MAINTAINER= dryice@dryice.name
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= 2.3+
USE_PYDISTUTILS= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha" && ${OSVERSION} < 500000
BROKEN= Coredump during build on alpha 4.x
.endif
.include <bsd.port.post.mk>
|