Tk: Difference between revisions

From CBLFS
Jump to navigationJump to search
Manphiz (talk | contribs)
No edit summary
Kalessin (talk | contribs)
I added the package description from BLFS.
Line 6: Line 6:


----
----
== Introduction to Tk ==
The Tk package contains a TCL GUI Toolkit.


== Dependencies ==
== Dependencies ==

Revision as of 00:55, 30 November 2006

Download Source: http://prdownloads.sourceforge.net/tcl/tk8.4.14-src.tar.gz

Introduction to Tk

The Tk package contains a TCL GUI Toolkit.

Dependencies

Required

Non-Multilib

Compile the package:

cd unix &&
./configure --prefix=/usr --enable-threads &&
make

Install the package

make install &&
make install-private-headers &&
ln -v -sf wish8.4 /usr/bin/wish

Multilib

32Bit

Compile the package:

cd unix &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr \
    --enable-threads --x-libraries=${XORG_PREFIX}/lib &&
make

Install the package

make install &&
make install-private-headers

N32

Compile the package:

cd unix &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
    --enable-threads --x-libraries=${XORG_PREFIX}/lib32 &&
make

Install the package

make install &&
make install-private-headers

64Bit

Compile the package:

cd unix &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
    --enable-threads --x-libraries=${XORG_PREFIX}/lib64 &&
make

Install the package

make install &&
make install-private-headers &&
ln -v -sf wish8.4 /usr/bin/wish
Retrieved from "?title=Tk&oldid=4223"