2d252eb383
The goal of IPython is to create a comprehensive environment for interactive and exploratory computing. To support this goal, IPython has two main components: * An enhanced interactive Python shell. * An architecture for interactive parallel computing.
27 lines
727 B
Makefile
27 lines
727 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2012/01/29 13:22:51 obache Exp $
|
|
#
|
|
|
|
DISTNAME= ipython-0.10.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel lang
|
|
MASTER_SITES= http://archive.ipython.org/release/0.10.2/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://ipython.org/
|
|
COMMENT= Interactive computing environment for Python
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-readline-[0-9]*:../../devel/py-readline
|
|
DEPENDS+= ${PYPKGPREFIX}-pexpect-[0-9]*:../../devel/py-pexpect
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # none
|
|
USE_TOOLS+= gunzip
|
|
|
|
# let not to install compressed man pages.
|
|
pre-configure:
|
|
${RUN}cd ${WRKSRC}/docs/man; gunzip *.1.gz
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|