diff options
author | perry <perry> | 2005-01-08 19:40:37 +0000 |
---|---|---|
committer | perry <perry> | 2005-01-08 19:40:37 +0000 |
commit | dc9be0f17159102d51f2dce8b0e8f293fce18067 (patch) | |
tree | b0c846eb28bf9765a7b0082d59922a832db44886 /devel/py-idle | |
parent | dc7efb8ea46ac965a257fcfdb75296d6a23b0c80 (diff) | |
download | pkgsrc-dc9be0f17159102d51f2dce8b0e8f293fce18067.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/py-idle')
-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 |