1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/devel/py-simpy/Makefile
David Naylor 755be8a30c Remove obsoleted OPTIONSFILE from devel/py-simpy.
Clean-up from my previous commits.

Approved by:	portsmgr (implicit)
2014-05-13 19:14:05 +00:00

39 lines
793 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= simpy
PORTVERSION= 2.3.1
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP \
SF/${PORTNAME}/${PORTNAME}/SimPy-${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= SimPy-${PORTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= Simulation in Python
LICENSE= LGPL21
NO_ARCH= yes
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_PKGNAME= SimPy
OPTIONS_DEFINE= TKINTER
TKINTER_DESC= py-tkinter for plot
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MTKINTER}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
.endif
.include <bsd.port.mk>