summaryrefslogtreecommitdiff
path: root/math/e-antic/Makefile
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2021-01-23 18:58:34 +0000
committerThierry Thomas <thierry@FreeBSD.org>2021-01-23 18:58:34 +0000
commita964469cc30e342dadc117d9d631f9e3972dfb0d (patch)
treed0c04e3e0a1e3493f47a7b5c3d69638bb51faa92 /math/e-antic/Makefile
parentirc/eggdrop-devel: Update to latest commit (diff)
math/e-antic has been broken since r558890 of math/flint2: upgrade it
to 1.0.0-rc.12 in order to fix it. Release notes at <https://github.com/flatsurf/e-antic/releases>.
Notes
Notes: svn path=/head/; revision=562411
Diffstat (limited to 'math/e-antic/Makefile')
-rw-r--r--math/e-antic/Makefile54
1 files changed, 42 insertions, 12 deletions
diff --git a/math/e-antic/Makefile b/math/e-antic/Makefile
index b233d93bb634..bc1e43e7f53b 100644
--- a/math/e-antic/Makefile
+++ b/math/e-antic/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= e-antic
-PORTVERSION= 0.1.8
+DISTVERSION= 1.0.0-rc.12
#MASTER_SITES= https://www.labri.fr/perso/vdelecro/e-antic/
CATEGORIES= math
@@ -12,25 +12,55 @@ COMMENT= Real Embedded Algebraic Number Theory In C
LICENSE= GPLv3 LGPL3
LICENSE_COMB= dual
-LIB_DEPENDS= libarb.so:math/arb \
- libgmp.so:math/gmp \
- libflint.so:math/flint2
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR}
+LIB_DEPENDS= libarb.so:math/arb \
+ libgmp.so:math/gmp \
+ libantic.so:math/antic \
+ libflint.so:math/flint2 \
+ libbenchmark.so:devel/benchmark \
+ libboost_thread.so:devel/boost-libs
-USE_GITHUB= yes
-GH_ACCOUNT= videlec
+USES= autoreconf compiler:c++11-lang gmake libtool localbase \
+ python:3.7+
-USES= autoreconf compiler:c++11-lang gmake libtool localbase
+USE_GITHUB= yes
+ANTIC_TAG= f4e8a60
+CATCH_TAG= ff349a5
+CEREAL_TAG= 51cbda5
+FLINT_TAG= ae7ec89
+UF_TAG= 0000f42
+GH_ACCOUNT= flatsurf catchorg:c1 USCiLab:c2 wbhart:f flatsurf:u
+GH_PROJECT= ${PORTNAME} antic:a Catch2:c1 cereal:c2 flint2:f \
+ unique-factory:u
+GH_TAGNAME= ${ANTIC_TAG}:a ${CATCH_TAG}:c1 ${CEREAL_TAG}:c2 ${FLINT_TAG}:f \
+ ${UF_TAG}:u
-OPTIONS_DEFINE= DOCS VALGRIND
+CONFIGURE_ARGS= --without-pytest # pytest requires cppyy
LIBS+= "-lm"
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
TEST_TARGET= check
-VALGRIND_DESC= Enable Valgrind on the unit tests
-VALGRIND_BUILD_DEPENDS= valgrind:devel/valgrind
-VALGRIND_TEST_DEPENDS= valgrind:devel/valgrind
-VALGRIND_CONFIGURE_ENABLE= valgrind
+PLIST_SUB= VER=1.0.0rc12
+
+post-extract:
+ ${CP} -R ${WRKDIR}/antic-${ANTIC_TAG}/* ${WRKSRC}/libeantic/upstream/antic/
+ ${CP} -R ${WRKDIR}/Catch2-${CATCH_TAG}/* \
+ ${WRKSRC}/libeantic/test/external/catch2/
+ ${CP} -R ${WRKDIR}/cereal-${CEREAL_TAG}/* \
+ ${WRKSRC}/libeantic/test/external/cereal/
+ ${CP} -R ${WRKDIR}/flint2-${FLINT_TAG}/* ${WRKSRC}/libeantic/upstream/antic/
+ ${CP} -R ${WRKDIR}/unique-factory-${UF_TAG}/* \
+ ${WRKSRC}/libeantic/srcxx/external/unique-factory
+
+post-install:
+ ${REINPLACE_CMD} -e 's|${STAGEDIR}||' \
+ ${STAGEDIR}${PREFIX}/lib/python3.7/site-packages/pyeantic/install_files.txt
+ ${RM} ${STAGEDIR}${PREFIX}/lib/python3.7/site-packages/pyeantic/install_files.txt.bak
+ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -d \
+ ${PYTHONPREFIX_SITELIBDIR} -f ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
+ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -d \
+ ${PYTHONPREFIX_SITELIBDIR} -f ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
.include <bsd.port.mk>