pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-idle The last change did not work. The PREFI...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1167786a2210
branches:  trunk
changeset: 487406:1167786a2210
user:      darcy <darcy%pkgsrc.org@localhost>
date:      Thu Jan 13 21:51:42 2005 +0000

description:
The last change did not work.  The PREFIX variable was not evaluated until
after the .if.  Changed it back but added more comments about it.

diffstat:

 devel/py-idle/Makefile |  11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diffs (42 lines):

diff -r 7eb2a935a086 -r 1167786a2210 devel/py-idle/Makefile
--- a/devel/py-idle/Makefile    Thu Jan 13 21:51:19 2005 +0000
+++ b/devel/py-idle/Makefile    Thu Jan 13 21:51:42 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2005/01/10 16:07:55 darcy Exp $
+# $NetBSD: Makefile,v 1.17 2005/01/13 21:51:42 darcy Exp $
 #
 
 PKGNAME=       ${PYPKGPREFIX}-idle-0
@@ -24,11 +24,13 @@
        done)
 
 #
-# With Python-2.3, the Idle code is part of the base library.
+# With Python-2.3 and up, the Idle code is part of the base library.
 # We just install a wrapper script. Also, threads are required now.
+# NOTE: if you add a new version of Python here, add to the following test
 #
 PYTHON_VERSIONS_ACCEPTED=      24pth 23pth 22pth 22 21pth 21 20pth 20
-.if !exists(${PREFIX}/${PYLIB}/idlelib/)
+.include "../../lang/python/extension.mk"
+.if (${PYPKGPREFIX} != "py23pth") && (${PYPKGPREFIX} != "py24pth")
 
 EXTRACT_ELEMENTS=      ${PYSUBDIR}/Tools/idle/*
 PYTHON_PATCH_SCRIPTS=  Tools/idle/idle.py
@@ -47,7 +49,7 @@
        (cd ${PREFIX}; ${FIND} -d ${PYSITELIB}/idle -type d -print | \
                ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
 
-.else # py23pth
+.else # py23pth and up
 
 EXTRACT_ELEMENTS=      ${PYSUBDIR}/Tools/scripts/idle
 PYTHON_PATCH_SCRIPTS= Tools/scripts/idle
@@ -60,7 +62,6 @@
 
 .endif # py23pth and up
 
-.include "../../lang/python/extension.mk"
 .include "../../lang/python/srcdist.mk"
 .include "../../lang/python/application.mk"
 .include "../../x11/py-Tk/buildlink3.mk"



Home | Main Index | Thread Index | Old Index