mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
1d44af5898
Since the previous update changed USES=python from 3.6+ to 3.7+, all dependent ports must have USES=python:3.7+ as well, otherwise it breaks the @py36 flavor. PR: 255347 Reported by: sunpoet
36 lines
884 B
Makefile
36 lines
884 B
Makefile
PORTNAME= lcapy
|
|
DISTVERSION= g20171202
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= cad python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= Symbolic MDA Analysis Package for Linear Circuits
|
|
|
|
LICENSE= LGPL21
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR}
|
|
|
|
USES= python:3.7+
|
|
USE_PYTHON= distutils concurrent autoplist
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mph-
|
|
GH_TAGNAME= 23c940f
|
|
PORTEXAMPLES= netlists \
|
|
networks \
|
|
notebooks \
|
|
schematics
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/doc/examples && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|