Bug 120133 - dev-lang/{tcl,tk} fails to ./configure, invalid package name
Bug#: 120133 Product:  Gentoo Linux Version: unspecified Platform: All
OS/Version: Linux Status: CLOSED Severity: normal Priority: P2
Resolution: FIXED Assigned To: tcltk@gentoo.org Reported By: Ristioja@gmail.com
Component: Ebuilds
URL: 
Summary: dev-lang/{tcl,tk} fails to ./configure, invalid package name
Keywords:  
Status Whiteboard: 
Opened: 2006-01-23 21:35 0000
Description:   Opened: 2006-01-23 21:35 0000
dev-lang/tk-8.4.11-r1

configure: error: tcl: invalid feature name

I guess this is related to such checks in ./configure:

if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then

These will not work correctly with Estonian locales (et_EE), because the
Estonian alphabet does not end with Z, but with Y:

abcdefghijklmnopqrs

------- Comment #1 From Jaak Ristioja 2006-01-23 21:35:07 0000 -------
dev-lang/tk-8.4.11-r1

configure: error: tcl: invalid feature name

I guess this is related to such checks in ./configure:

if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then

These will not work correctly with Estonian locales (et_EE), because the
Estonian alphabet does not end with Z, but with Y:

abcdefghijklmnopqrsšzžtuvwõäöüxy

Therefore some common English letters like tuvwxy do not fall into the range
a-z. To circumvent this, one must set another locale in /etc/env.d/02locales,
run "env-update" and "source /etc/profile". Using something like "LC_ALL=C
emerge tk" won't work.

------- Comment #2 From Jakub Moc (RETIRED) 2006-01-24 00:04:34 0000 -------
*** Bug 120134 has been marked as a duplicate of this bug. ***

------- Comment #3 From SpanKY 2006-02-02 17:32:46 0000 -------
it's because the package is using old autotools (2.13)

applied the patch used in gcc to 8.4.9 and 8.4.11 ebuilds