mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
b3ba803466
- Trim header - Convert to new OPTIONS PR: ports/176013 Submitted by: lwhsu Approved by: wen
34 lines
665 B
Makefile
34 lines
665 B
Makefile
# Created by: Wen Heping <wenheping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sympy
|
|
PORTVERSION= 0.7.2
|
|
CATEGORIES= math python
|
|
MASTER_SITES= GOOGLE_CODE \
|
|
CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= A Python Library For Symbolic Mathematics
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
MAN1= isympy.1
|
|
|
|
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>
|