blob: b9183fbe6d13aae5258475545ade762e34960606 (
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
|
# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= sympy
PORTVERSION= 0.7.5
CATEGORIES= math python
MASTER_SITES= GOOGLE_CODE \
CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Python Library For Symbolic Mathematics
LICENSE= BSD3CLAUSE
USES= python
USE_PYTHON= distutils autoplist
OPTIONS_DEFINE= PYGLET
PYGLET_DESC= Enable plotting support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPYGLET}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pyglet>=1.1.2:${PORTSDIR}/graphics/py-pyglet
.endif
post-patch:
@${REINPLACE_CMD} -e "s#share/man/man1#man/man1#" ${WRKSRC}/setup.py
.include <bsd.port.mk>
|