diff options
author | mva <mva@FreeBSD.org> | 2013-11-25 04:03:26 +0800 |
---|---|---|
committer | mva <mva@FreeBSD.org> | 2013-11-25 04:03:26 +0800 |
commit | 62e9181d72f5c09464ecf9100ead6aa3c5fd14aa (patch) | |
tree | 95c4a212ccb4705b4370a919225ba72dbd07db24 /devel | |
parent | d0440ce9719e9daebab343572e93c013ff8bc873 (diff) | |
download | freebsd-ports-gnome-62e9181d72f5c09464ecf9100ead6aa3c5fd14aa.tar.gz freebsd-ports-gnome-62e9181d72f5c09464ecf9100ead6aa3c5fd14aa.tar.zst freebsd-ports-gnome-62e9181d72f5c09464ecf9100ead6aa3c5fd14aa.zip |
- Fix the usage of 'python' to get rid of the implicit lang/python
dependency
Approved by: tconfpy@tundraware.com (maintainer)
Diffstat (limited to 'devel')
-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} |