diff options
author | perry <perry@pkgsrc.org> | 2005-01-08 19:40:37 +0000 |
---|---|---|
committer | perry <perry@pkgsrc.org> | 2005-01-08 19:40:37 +0000 |
commit | a803ed79fc1a2a1dffcf95f327112b2f73deb62e (patch) | |
tree | b0c846eb28bf9765a7b0082d59922a832db44886 /devel | |
parent | 4a41cfb22e59376828e159b245519192e0ad5cb5 (diff) | |
download | pkgsrc-a803ed79fc1a2a1dffcf95f327112b2f73deb62e.tar.gz |
Make idle work with python 24pth
Note that this probably should be done more cleanly but I'm not clear
on how that would be done best.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-idle/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/py-idle/Makefile b/devel/py-idle/Makefile index cdcc397ae18..3a27eb92e64 100644 --- a/devel/py-idle/Makefile +++ b/devel/py-idle/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/10/03 00:13:33 tv Exp $ +# $NetBSD: Makefile,v 1.15 2005/01/08 19:40:37 perry Exp $ # PKGNAME= ${PYPKGPREFIX}-idle-0 @@ -27,9 +27,9 @@ do-patch: # With Python-2.3, the Idle code is part of the base library. # We just install a wrapper script. Also, threads are required now. # -PYTHON_VERSIONS_ACCEPTED= 20 20pth 21 21pth 22 22pth 23pth +PYTHON_VERSIONS_ACCEPTED= 20 20pth 21 21pth 22 22pth 23pth 24pth .include "../../lang/python/extension.mk" -.if ${PYPKGPREFIX} != "py23pth" +.if (${PYPKGPREFIX} != "py23pth") && (${PYPKGPREFIX} != "py24pth") EXTRACT_ELEMENTS= ${PYSUBDIR}/Tools/idle/* PYTHON_PATCH_SCRIPTS= Tools/idle/idle.py |