summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gellekum <tg@FreeBSD.org>1998-02-27 10:21:35 +0000
committerThomas Gellekum <tg@FreeBSD.org>1998-02-27 10:21:35 +0000
commit006ffd57dec93c396ff1958b569bf5e2d4e9ed34 (patch)
treef6ad83c831b2c56c6e9ef92b1a1752921e31043e
parentFixed source file location on ftp.enlightenment.org. (diff)
Use tk80, not an unsupported alpha version of tk81.
Include locale module.
Notes
Notes: svn path=/head/; revision=9953
Diffstat (limited to '')
-rw-r--r--lang/python+ipv6/Makefile6
-rw-r--r--lang/python+ipv6/files/Setup2
-rw-r--r--lang/python+ipv6/files/Setup.tk4
-rw-r--r--lang/python-devel/Makefile6
-rw-r--r--lang/python-devel/files/Setup2
-rw-r--r--lang/python/Makefile6
-rw-r--r--lang/python/files/Setup2
-rw-r--r--lang/python15/Makefile6
-rw-r--r--lang/python15/files/Setup2
-rw-r--r--lang/python20/Makefile6
-rw-r--r--lang/python20/files/Setup2
-rw-r--r--lang/python21/Makefile6
-rw-r--r--lang/python21/files/Setup2
-rw-r--r--lang/python22/Makefile6
-rw-r--r--lang/python22/files/Setup2
-rw-r--r--lang/python23/Makefile6
-rw-r--r--lang/python23/files/Setup2
-rw-r--r--lang/python24/Makefile6
-rw-r--r--lang/python24/files/Setup2
-rw-r--r--lang/python25/Makefile6
-rw-r--r--lang/python25/files/Setup2
-rw-r--r--lang/python26/Makefile6
-rw-r--r--lang/python26/files/Setup2
-rw-r--r--lang/python27/Makefile6
-rw-r--r--lang/python27/files/Setup2
-rw-r--r--lang/python30/Makefile6
-rw-r--r--lang/python30/files/Setup2
-rw-r--r--lang/python31/Makefile6
-rw-r--r--lang/python31/files/Setup2
-rw-r--r--lang/python32/Makefile6
-rw-r--r--lang/python32/files/Setup2
31 files changed, 62 insertions, 62 deletions
diff --git a/lang/python+ipv6/Makefile b/lang/python+ipv6/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python+ipv6/Makefile
+++ b/lang/python+ipv6/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python+ipv6/files/Setup b/lang/python+ipv6/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python+ipv6/files/Setup
+++ b/lang/python+ipv6/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python+ipv6/files/Setup.tk b/lang/python+ipv6/files/Setup.tk
index 4400b44675dd..ee4eb449e4d0 100644
--- a/lang/python+ipv6/files/Setup.tk
+++ b/lang/python+ipv6/files/Setup.tk
@@ -15,7 +15,7 @@ TKPATH=:lib-tk
# every system.
# *** Always uncomment this (leave the leading underscore in!):
-_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -I${X11BASE}/include -I${PREFIX}/include/tcl8.1 -I${PREFIX}/include/tk8.1 -L${PREFIX}/lib -ltk81 -ltcl81 -L${X11BASE}/lib -lX11
+_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -I${X11BASE}/include -I${PREFIX}/include/tcl8.0 -I${PREFIX}/include/tk8.0 -L${PREFIX}/lib -ltk80 -ltcl80 -L${X11BASE}/lib -lX11
# *** Uncommend and edit to reflect where your X11 header files are:
# -I/usr/X11R6/include \
@@ -36,7 +36,7 @@ _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -I${X11BASE}/include -I${PREFIX}/
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
# -L/usr/local/lib \
# *** Uncomment and edit to reflect your Tcl/Tk versions:
-# -ltk81 -ltcl81 \
+# -ltk80 -ltcl80 \
# *** Uncomment and edit to reflect where your X11 libraries are:
# -L/usr/X11R6/lib \
# *** Or uncomment this for Solaris:
diff --git a/lang/python-devel/Makefile b/lang/python-devel/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python-devel/Makefile
+++ b/lang/python-devel/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python-devel/files/Setup b/lang/python-devel/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python-devel/files/Setup
+++ b/lang/python-devel/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python/Makefile b/lang/python/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python/Makefile
+++ b/lang/python/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python/files/Setup b/lang/python/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python/files/Setup
+++ b/lang/python/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python15/Makefile b/lang/python15/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python15/Makefile
+++ b/lang/python15/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python15/files/Setup b/lang/python15/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python15/files/Setup
+++ b/lang/python15/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python20/Makefile b/lang/python20/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python20/Makefile
+++ b/lang/python20/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python20/files/Setup b/lang/python20/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python20/files/Setup
+++ b/lang/python20/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python21/Makefile b/lang/python21/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python21/Makefile
+++ b/lang/python21/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python21/files/Setup b/lang/python21/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python21/files/Setup
+++ b/lang/python21/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python22/Makefile b/lang/python22/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python22/Makefile
+++ b/lang/python22/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python22/files/Setup b/lang/python22/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python22/files/Setup
+++ b/lang/python22/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python23/Makefile b/lang/python23/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python23/Makefile
+++ b/lang/python23/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python23/files/Setup b/lang/python23/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python23/files/Setup
+++ b/lang/python23/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python24/Makefile b/lang/python24/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python24/Makefile
+++ b/lang/python24/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python24/files/Setup b/lang/python24/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python24/files/Setup
+++ b/lang/python24/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python25/Makefile b/lang/python25/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python25/Makefile
+++ b/lang/python25/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python25/files/Setup b/lang/python25/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python25/files/Setup
+++ b/lang/python25/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python26/Makefile b/lang/python26/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python26/Makefile
+++ b/lang/python26/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python26/files/Setup b/lang/python26/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python26/files/Setup
+++ b/lang/python26/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python27/Makefile b/lang/python27/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python27/Makefile
+++ b/lang/python27/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python27/files/Setup b/lang/python27/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python27/files/Setup
+++ b/lang/python27/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python30/Makefile b/lang/python30/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python30/Makefile
+++ b/lang/python30/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python30/files/Setup b/lang/python30/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python30/files/Setup
+++ b/lang/python30/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python31/Makefile b/lang/python31/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python31/Makefile
+++ b/lang/python31/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python31/files/Setup b/lang/python31/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python31/files/Setup
+++ b/lang/python31/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default:
diff --git a/lang/python32/Makefile b/lang/python32/Makefile
index dd13841445e2..90703f216167 100644
--- a/lang/python32/Makefile
+++ b/lang/python32/Makefile
@@ -3,12 +3,12 @@
# Date created: 08 August 1995
# Whom: jkh
#
-# $Id: Makefile,v 1.20 1998/01/07 08:32:53 tg Exp $
+# $Id: Makefile,v 1.21 1998/02/24 21:43:19 jseger Exp $
#
DISTNAME= python1.5
PKGNAME= python-1.5
-CATEGORIES= lang tk81
+CATEGORIES= lang tk80
MASTER_SITES= ftp://www.python.org/pub/python/src/ \
ftp://ftp.cwi.nl/pub/python/src/
@@ -34,7 +34,7 @@ SETUP_FILE= Setup
#
WITH_TK?= yes
.if defined(WITH_TK) && $(WITH_TK) == yes
-TK_DEPENDS= tk81\\.1\\.:${PORTSDIR}/x11/tk81
+TK_DEPENDS= tk80\\.1\\.:${PORTSDIR}/x11/tk80
SETUP_LOCAL= Setup.tk
.endif
diff --git a/lang/python32/files/Setup b/lang/python32/files/Setup
index 96811ee9823c..41350fd89059 100644
--- a/lang/python32/files/Setup
+++ b/lang/python32/files/Setup
@@ -127,7 +127,7 @@ struct structmodule.c # binary structure packing/unpacking
time timemodule.c # time operations and variables
operator operator.c # operator.add() and similar goodies
-#_locale _localemodule.c # access to ISO C locale support
+_locale _localemodule.c # access to ISO C locale support
# Modules with some UNIX dependencies -- on by default: