Xchat: Difference between revisions
From CBLFS
Jump to navigationJump to search
| Line 38: | Line 38: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH | |||
export USE_ARCH=32 && | |||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | |||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
| Line 44: | Line 46: | ||
Install the package | Install the package | ||
make install | make install && | ||
unset USE_ARCH | |||
=== N32 === | === N32 === | ||
| Line 54: | Line 57: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH= | export USE_ARCH=64 && | ||
sed -i '/dirs="$tcl/s:/lib:&64:g' configure && | |||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | |||
./configure --prefix=/usr --libdir=/usr/lib64 | ./configure --prefix=/usr --libdir=/usr/lib64 | ||
make | make | ||
| Line 60: | Line 65: | ||
Install the package | Install the package | ||
make install | make install && | ||
unset USE_ARCH | |||
= Contents = | = Contents = | ||
XChat is an IRC chat program. It allows you to join multiple IRC channels (chat rooms) at the same time, talk publicly, have private one-on-one conversations, etc. File transfers are also possible. | XChat is an IRC chat program. It allows you to join multiple IRC channels (chat rooms) at the same time, talk publicly, have private one-on-one conversations, etc. File transfers are also possible. | ||
Revision as of 12:41, 11 October 2006
| Download Source: | http://www.xchat.org/files/source/2.6/xchat-2.6.6.tar.bz2 |
|---|
Dependencies
Required
Recommended
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
export USE_ARCH=32 &&
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make
Install the package
make install && unset USE_ARCH
N32
TO DO!
64Bit
Compile the package:
export USE_ARCH=64 &&
sed -i '/dirs="$tcl/s:/lib:&64:g' configure &&
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64
make
Install the package
make install && unset USE_ARCH
Contents
XChat is an IRC chat program. It allows you to join multiple IRC channels (chat rooms) at the same time, talk publicly, have private one-on-one conversations, etc. File transfers are also possible.