diff options
author | wg <wg@FreeBSD.org> | 2013-12-15 17:17:09 +0000 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-12-15 17:17:09 +0000 |
commit | 0867f4be94607a3ad12daf460b2a80d0f6496231 (patch) | |
tree | 6217f522324b251d06de85243c10d0487c9bed0e | |
parent | fc255df875c11187307ec94b64beb98e9044024c (diff) | |
download | FreeBSD-ports-0867f4be94607a3ad12daf460b2a80d0f6496231.zip FreeBSD-ports-0867f4be94607a3ad12daf460b2a80d0f6496231.tar.gz |
math/biggles: fix python usage
Reported by: exp-run (PR 184591)
Approved by: portmgr (blanket)
-rw-r--r-- | math/biggles/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/biggles/Makefile b/math/biggles/Makefile index 32687ef..ac09f80 100644 --- a/math/biggles/Makefile +++ b/math/biggles/Makefile @@ -17,11 +17,12 @@ BUILD_DEPENDS= ${PYNUMPY} LIB_DEPENDS= libplot.so:${PORTSDIR}/graphics/plotutils USES= gmake -USE_PYTHON= yes +USE_PYTHON= 2 MAKE_ARGS= CC="${CC}" \ CFLAGS="${CFLAGS} -fPIC" \ LIBPLOT_CPPFLAGS="-I${LOCALBASE}/include" \ - LIBPLOT_LDFLAGS="-L${LOCALBASE}/lib -lplot" + LIBPLOT_LDFLAGS="-L${LOCALBASE}/lib -lplot" \ + PYTHON="${PYTHON_CMD}" NO_STAGE= yes post-patch: |