diff options
author | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2025-10-09 23:20:58 -0500 |
---|---|---|
committer | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2025-10-09 23:20:58 -0500 |
commit | f3f0c63972f512170fe10ccf9405cb6c44d3698a (patch) | |
tree | 05ee68742a769a3506c600a152c595f910283643 | |
parent | databases/py-sqlmodel: update to 0.0.27 (diff) |
math/octave: Fix python function.
The python function now calls ${PYTHON_CMD} instead of python3.
Bump portrevision.
-rw-r--r-- | math/octave/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index 634a77477d17..f7e984847317 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -1,5 +1,6 @@ PORTNAME= octave PORTVERSION= ${OCTAVE_VERSION} +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= GNU @@ -49,7 +50,7 @@ LIB_DEPENDS= libamd.so:math/suitesparse-amd \ USES= charsetfix compiler:c++17-lang desktop-file-utils fortran gl \ gmake iconv libtool localbase:ldflags ncurses octave:env perl5 \ - pkgconfig readline tar:xz xorg + pkgconfig readline tar:xz xorg python:3.0+ USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}/${PORTVERSION} USE_PERL5= build GNU_CONFIGURE= yes @@ -112,6 +113,9 @@ ATLAS_USES= blaslapack:atlas BINARY_ALIAS= sed=gsed +post-patch: + ${REINPLACE_CMD} -e s+python3+${PYTHON_CMD}+g ${WRKSRC}/scripts/miscellaneous/python.m + post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in liboctave/liboctave.ps refcard/refcard-a4.ps \ |