The Tk package contains a TCL GUI Toolkit.
Download (HTTP): http://downloads.sourceforge.net/tcl/tk8.4.13-src.tar.gz
Download MD5 sum: 0a16d4d9398e43cbb85784c85fb807a4
Download size: 3.2 MB
Estimated disk space required: 23.3 MB
Estimated build time: 0.4 SBU
X Window System and Tcl-8.4.13
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/tk
Install Tk by running the following commands:
cd unix && ./configure --prefix=/usr --enable-threads && make
Running the tests is not recommended. Some tests may crash your X Server. To test the results anyway, issue: make test. Ensure you run it from an X Window display device with the GLX extensions loaded, else the tests will hang.
Now, as the root user:
make install && make install-private-headers && ln -v -sf wish8.4 /usr/bin/wish
--enable-threads: This switch forces the package to build with thread support.
make install-private-headers: This command is used to install the Tk library interface headers used by other packages if they link to the Tk library.
ln -v -sf wish8.4 /usr/bin/wish: This command is used to create a compatibility symbolic link to the wish8.4 file as many packages expect a file named wish.
Last updated on 2007-01-15 17:25:53 -0600