1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

Fix python detection.

This port still does not build on 10+.
This commit is contained in:
Adam Weinberger 2014-09-08 16:23:56 +00:00
parent 6861e0196b
commit 5c9dd5f44a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=367651
2 changed files with 11 additions and 7 deletions

View File

@ -21,7 +21,8 @@ MAKE_ARGS= PREFIX="${PREFIX}" \
AR="${AR}" \
CPP="${CXX} ${LDFLAGS}" \
CPPFLAGS="${CXXFLAGS} ${CPPFLAGS}" \
CXX="${CXX}"
CXX="${CXX}" \
PYTHON="${PYTHON_CMD}"
ALL_TARGET= all pythonwrap
INSTALL_TARGET= install

View File

@ -1,5 +1,5 @@
--- Makefile.orig Mon Sep 27 16:59:48 2004
+++ Makefile Sun Jun 5 01:14:44 2005
--- Makefile.orig 2004-09-27 03:59:48.000000000 -0400
+++ Makefile 2014-09-08 12:19:12.246360998 -0400
@@ -58,10 +58,10 @@
$(CPP) -o envtest envtest.o gracetmpl.o
@ -15,20 +15,23 @@
gracetmpl-config: gracetmpl-config.in Makefile.defs
sed -e 's!__PREFIX__!$(PREFIX)!g' \
@@ -79,7 +79,7 @@
@@ -78,16 +78,16 @@
rm -f *~ \#*\#
pythonwrap:
@if python python/prereq.py 2>/dev/null; then \
- @if python python/prereq.py 2>/dev/null; then \
- (cd python; make); \
+ @if $(PYTHON) python/prereq.py 2>/dev/null; then \
+ (cd python; $(MAKE)); \
else \
echo missing python numarray extension.; \
echo not building python stuff; \
@@ -87,7 +87,7 @@
fi
pythonwrap_install:
@if python python/prereq.py 2>/dev/null; then \
- @if python python/prereq.py 2>/dev/null; then \
- (cd python; make install); \
+ @if $(PYTHON) python/prereq.py 2>/dev/null; then \
+ (cd python; $(MAKE) install); \
else \
echo not installing python stuff; \