Xchat: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) m OpenSSL listed twice |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://www.xchat.org/files/source/ | | http://www.xchat.org/files/source/{{Xchat-Version2}}/xchat-{{Xchat-Version}}.tar.bz2 | ||
|} | |} | ||
Revision as of 13:53, 17 December 2006
| Download Source: | http://www.xchat.org/files/source/2.8/xchat-2.8.4.tar.bz2 |
|---|
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.
Dependencies
Required
Recommended
Optional
Non-Multilib
Compile the package:
sed -i "/GCONF_SCHEMA_FILE_DIR =/s:gconf/:gnome/&:" plugins/dbus/Makefile.in && ./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 &&
sed -i "/GCONF_SCHEMA_FILE_DIR =/s:gconf/:gnome/&:" plugins/dbus/Makefile.in &&
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 &&
sed -i "/GCONF_SCHEMA_FILE_DIR =/s:gconf/:gnome/&:" plugins/dbus/Makefile.in &&
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 &&
sed -i "/GCONF_SCHEMA_FILE_DIR =/s:gconf/:gnome/&:" plugins/dbus/Makefile.in &&
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