aboutsummaryrefslogtreecommitdiffstats
path: root/math/taucs
diff options
context:
space:
mode:
authoramdmi3 <amdmi3@FreeBSD.org>2018-04-30 16:33:55 +0800
committeramdmi3 <amdmi3@FreeBSD.org>2018-04-30 16:33:55 +0800
commite31deb721f1fb4d5a01876d356d5be5d7b6961c1 (patch)
treee30558bfbf0c349593a4e36e3a326214371dd4d5 /math/taucs
parentf06b73c867fb33776df505bc9f061ec473f08f34 (diff)
downloadfreebsd-ports-gnome-e31deb721f1fb4d5a01876d356d5be5d7b6961c1.tar.gz
freebsd-ports-gnome-e31deb721f1fb4d5a01876d356d5be5d7b6961c1.tar.zst
freebsd-ports-gnome-e31deb721f1fb4d5a01876d356d5be5d7b6961c1.zip
- Switch to options helpers
- Switch to new test framework
Diffstat (limited to 'math/taucs')
-rw-r--r--math/taucs/Makefile12
1 files changed, 3 insertions, 9 deletions
diff --git a/math/taucs/Makefile b/math/taucs/Makefile
index e577a77bad18..0d7faeaac2ca 100644
--- a/math/taucs/Makefile
+++ b/math/taucs/Makefile
@@ -87,12 +87,12 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/src/*.h ${STAGEDIR}${PREFIX}/include
(cd ${WRKSRC}_SHARED/bin/FreeBSD && \
${INSTALL_PROGRAM} ${BINS} ${STAGEDIR}${PREFIX}/bin)
-.if ${PORT_OPTIONS:MDOCS}
+
+do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${STAGEDIR}${DOCSDIR}
-.endif
-check test: build
+do-test: # XXX: building tests fail
.for t in ${TESTS}
@${PRINTF} "\n%s\n" "Building test_${t}"
@cd ${WRKSRC}_SHARED ; ${FC} ${FFLAGS} -Llib/FreeBSD -L./ \
@@ -106,10 +106,4 @@ check test: build
bin/FreeBSD/test_${t}
.endfor
-#be conservative, and expose a regression test target for amd64 builds only, because
-#some of the tests run amok during i386 tinderbox builds on amd64 hosts
-.if ${ARCH} == "amd64"
-regression-test: check
-.endif
-
.include <bsd.port.mk>