Difference between revisions of "Xchat"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) (→Introduction to Xchat) |
|||
Line 10: | Line 10: | ||
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. | ||
+ | |||
+ | <b>Package Homepage:</b> http://www.xchat.org | ||
== Dependencies == | == Dependencies == |
Revision as of 21:57, 11 February 2007
Download Source: | http://www.xchat.org/files/source/2.8/xchat-2.8.4.tar.bz2 |
---|
Contents
Introduction to Xchat
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.
Package Homepage: http://www.xchat.org
Dependencies
Required
Recommended
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc/gnome && 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/gnome && 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/gnome \ --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/gnome \ --libdir=/usr/lib64 --enable-tcl=/usr/lib64 && make
Install the package
make install && unset USE_ARCH