diff options
author | Marcus von Appen <mva@FreeBSD.org> | 2013-11-24 20:03:26 +0000 |
---|---|---|
committer | Marcus von Appen <mva@FreeBSD.org> | 2013-11-24 20:03:26 +0000 |
commit | e458044ade02b81b1666d05c14726c48d97771b9 (patch) | |
tree | 95c4a212ccb4705b4370a919225ba72dbd07db24 | |
parent | - update to 2.2.26 (diff) |
- Fix the usage of 'python' to get rid of the implicit lang/python
dependency
Approved by: tconfpy@tundraware.com (maintainer)
Notes
Notes:
svn path=/head/; revision=334784
-rw-r--r-- | devel/py-tconfpy/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/py-tconfpy/Makefile b/devel/py-tconfpy/Makefile index dd8c241f237c..924a1975afc5 100644 --- a/devel/py-tconfpy/Makefile +++ b/devel/py-tconfpy/Makefile @@ -22,6 +22,11 @@ MAN3= tconfpy.3 PORTDOCS= READ-1ST.txt WHATSNEW.txt tconfpy-license.txt tconfpy.html tconfpy.pdf tconfpy.ps tconfpy.txt test-tc.html test-tc.pdf test-tc.ps test-tc.txt NO_STAGE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|python setup.py|${PYTHON_CMD} setup.py|' \ + ${WRKSRC}/Makefile + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |