Difference between revisions of "Xchat"
From CBLFS
Jump to navigationJump to search (→Optional) |
|||
Line 26: | Line 26: | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=/usr && | + | ./configure --prefix=/usr --sysconfdir=/etc && |
make | make | ||
Line 42: | Line 42: | ||
export USE_ARCH=32 && | export USE_ARCH=32 && | ||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
− | ./configure --prefix=/usr && | + | ./configure --prefix=/usr --sysconfdir=/etc && |
make | make | ||
Line 54: | Line 54: | ||
export USE_ARCH=n32 && | export USE_ARCH=n32 && | ||
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
− | ./configure --prefix=/usr --libdir=/usr/lib32 | + | ./configure --prefix=/usr --sysconfdir=/etc \ |
− | + | --libdir=/usr/lib32 --enable-tcl=/usr/lib32 && | |
make | make | ||
Line 69: | Line 69: | ||
export USE_ARCH=64 && | export USE_ARCH=64 && | ||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
− | ./configure --prefix=/usr --libdir=/usr/lib64 | + | ./configure --prefix=/usr --sysconfdir=/etc \ |
− | + | --libdir=/usr/lib64 --enable-tcl=/usr/lib64 && | |
make | make | ||
Revision as of 16:13, 27 October 2006
Download Source: | http://www.xchat.org/files/source/2.6/xchat-2.6.6.tar.bz2 |
---|
Contents
Dependencies
Required
Recommended
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc && make
Install the package
make install
Multilib
This package does not provide any external 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 --sysconfdir=/etc && make
Install the package
make install && unset USE_ARCH
N32
export USE_ARCH=n32 && CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --sysconfdir=/etc \ --libdir=/usr/lib32 --enable-tcl=/usr/lib32 && make
Install the package
make install && unset USE_ARCH
64Bit
Compile the package:
export USE_ARCH=64 && CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --sysconfdir=/etc \ --libdir=/usr/lib64 --enable-tcl=/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.