diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2007-07-30 09:42:28 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2007-07-30 09:42:28 +0000 |
commit | 4942ce5a7d8a3d0cbebaf4d202011850d1f7569f (patch) | |
tree | db1f21912f461000d609ddcd5d130946bcfe9e09 /www/plone | |
parent | b4be9b354e86bd790925c5a9a2e67df8ba20bc00 (diff) |
- Make Python 2.5.1 the default Python version
- Add significantly better support in bsd.python.mk for working with
Python Eggs and the easy_install system
Tested by: pointyhat runs
Approved by: pav (portmgr)
Most work by: perky
Thanks to: pav
Notes
Notes:
svn path=/head/; revision=196700
Diffstat (limited to 'www/plone')
-rw-r--r-- | www/plone/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/plone/Makefile b/www/plone/Makefile index 2c14b212c33b..c31cdee6ec9d 100644 --- a/www/plone/Makefile +++ b/www/plone/Makefile @@ -77,4 +77,10 @@ post-install: @${CAT} ${PKGMESSAGE} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PYTHON_VERSION} != ${PYTHON_DEFAULT_VERSION} && defined(PACKAGE_BUILDING) +IGNORE= can't be built: the default Python version should be ${PYTHON_VERSION} in order to build a package in the build cluster +.endif + +.include <bsd.port.post.mk> |