summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2005-05-29 06:39:11 +0000
committerminskim <minskim@pkgsrc.org>2005-05-29 06:39:11 +0000
commitbfe28d6d1493218f4b7de0d5cc71f8c524df15ed (patch)
tree921bbe3cf1e80fe6e2d0c60057d8ebbb31088806 /lang
parent78f44bb81309ccd137551b4cd0836038b2a23329 (diff)
downloadpkgsrc-bfe28d6d1493218f4b7de0d5cc71f8c524df15ed.tar.gz
Explicitly disable the tkinter module, which is provided by x11/py-Tk.
Diffstat (limited to 'lang')
-rw-r--r--lang/python21/distinfo4
-rw-r--r--lang/python21/patches/patch-ac11
2 files changed, 12 insertions, 3 deletions
diff --git a/lang/python21/distinfo b/lang/python21/distinfo
index 5574a263e2a..b8925f74a28 100644
--- a/lang/python21/distinfo
+++ b/lang/python21/distinfo
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.14 2005/02/24 09:03:11 agc Exp $
+$NetBSD: distinfo,v 1.15 2005/05/29 06:39:11 minskim Exp $
SHA1 (Python-2.1.3.tgz) = 7042a5c5fd60d334c0ac227885d68a4c305713b4
RMD160 (Python-2.1.3.tgz) = d7216480cf884507d97bf7932767871977fc1ccc
Size (Python-2.1.3.tgz) = 6194432 bytes
SHA1 (patch-aa) = 8273acc49a9eedad6e09685098178f3b7fb8f1c6
SHA1 (patch-ab) = f87a4d5c76182ab27ba79b42f00e8a2ff63bcf2b
-SHA1 (patch-ac) = 6f3435e1e66c1a6232c76a3c008f540ccd98ea37
+SHA1 (patch-ac) = ea4f6cfe74095be2877376f9edd2f3b8cea6335b
SHA1 (patch-ad) = 769bcd7803723c8d538a74173792ffcc491fa414
SHA1 (patch-af) = e17c20f83ba1219860a6aefd959364147c7963e1
SHA1 (patch-ah) = 637dfe0cb4d031760f1085fb7921c0ae77158221
diff --git a/lang/python21/patches/patch-ac b/lang/python21/patches/patch-ac
index 92eec8cc1c5..b2edb7a7b91 100644
--- a/lang/python21/patches/patch-ac
+++ b/lang/python21/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.5 2004/05/16 20:01:59 minskim Exp $
+$NetBSD: patch-ac,v 1.6 2005/05/29 06:39:12 minskim Exp $
--- setup.py.orig 2001-12-27 15:51:02.000000000 -0600
+++ setup.py
@@ -106,6 +106,15 @@ $NetBSD: patch-ac,v 1.5 2004/05/16 20:01:59 minskim Exp $
# Interface to the Expat XML parser
#
+@@ -515,7 +500,7 @@ class PyBuildExt(build_ext):
+ self.extensions.extend(exts)
+
+ # Call the method for detecting whether _tkinter can be compiled
+- self.detect_tkinter(inc_dirs, lib_dirs)
++ #self.detect_tkinter(inc_dirs, lib_dirs)
+
+
+ def detect_tkinter(self, inc_dirs, lib_dirs):
@@ -609,7 +594,7 @@ def main():
ext_modules=[Extension('struct', ['structmodule.c'])],