Difference between revisions of "Xchat"

From CBLFS
Jump to navigationJump to search
(Multilib)
 
(17 intermediate revisions by 5 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://www.xchat.org/files/source/2.6/xchat-2.6.6.tar.bz2
+
| http://www.xchat.org/files/source/{{Xchat-Version2}}/xchat-{{Xchat-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|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.|http://www.xchat.org}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 11: Line 13:
 
=== Required ===
 
=== Required ===
 
* [[Glib2]]
 
* [[Glib2]]
 +
 
=== Recommended ===
 
=== Recommended ===
 
* [[Gtk2]]
 
* [[Gtk2]]
 +
 
=== Optional ===
 
=== Optional ===
* [[DBUS]]
+
* [[D-BUS Glib]]
 
* [[OpenSSL]]
 
* [[OpenSSL]]
 
* [[Python]]
 
* [[Python]]
 
* [[TCL]]
 
* [[TCL]]
* [[OpenSSL]]
 
 
* [[libsexy]] or [[GtkSpell]]
 
* [[libsexy]] or [[GtkSpell]]
 +
* [[GConf]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 25: Line 29:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr &&
+
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
 +
  ./configure --prefix=/usr --sysconfdir=/etc/gnome &&
 
  make  
 
  make  
  
Line 40: Line 45:
  
 
  export USE_ARCH=32 &&
 
  export USE_ARCH=32 &&
 +
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
 
  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/gnome &&
 
  make
 
  make
  
Line 52: Line 58:
  
 
  export USE_ARCH=n32 &&
 
  export USE_ARCH=n32 &&
 +
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
 
  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/gnome \
    --enable-tcl=/usr/lib32 &&
+
    --libdir=/usr/lib32 --enable-tcl=/usr/lib32 &&
 
  make
 
  make
  
Line 67: Line 74:
  
 
  export USE_ARCH=64 &&
 
  export USE_ARCH=64 &&
 +
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
 
  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/gnome \
    --enable-tcl=/usr/lib64 &&
+
    --libdir=/usr/lib64 --enable-tcl=/usr/lib64 &&
 
  make
 
  make
  
Line 79: Line 87:
 
= 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.
+
{|style="text-align: left"
 +
|-valign="top"
 +
!Installed Directories:
 +
|None
 +
|-valign="top"
 +
!Installed Programs:
 +
|xchat, xchat-remote
 +
|-valign="top"
 +
!Installed Libraries:
 +
|python.la, perl.la, tcl.la, dbus.la
 +
|}
 +
 
 +
== Short Descriptions ==
 +
 
 +
{|style="text-align: left"
 +
|-valign="top"
 +
!xchat
 +
|
 +
|-valign="top"
 +
!xchat-remote
 +
|
 +
|}
 +
 
 +
[[Category:GUI Clients]]

Latest revision as of 11:18, 7 March 2009

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.

Project Homepage: http://www.xchat.org

Dependencies

Required

Recommended

Optional

Non-Multilib

Compile the package:

sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
./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 &&
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
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 &&
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
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 &&
sed -i "s/GtkType/GType/g" src/fe-gtk/xtext.h &&
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

Contents

Installed Directories: None
Installed Programs: xchat, xchat-remote
Installed Libraries: python.la, perl.la, tcl.la, dbus.la

Short Descriptions

xchat
xchat-remote