Difference between revisions of "Weechat"

From CBLFS
Jump to navigationJump to search
 
 
(11 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://weechat.flashtux.org/download/weechat-{{!weechat-Version}}.tar.bz2
+
| http://weechat.org/files/src/weechat-{{weechat-Version}}.tar.bz2
 
|-
 
|-
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|Weechat is a multi-platform IRC standards compliant client with console, ncurses, wxWidgets, Gtk2, and Qt interfaces.|http://weechat.flashtux.org/index.php}}
  
 
== Dependencies ==
 
== Dependencies ==
  
 
=== Optional ===
 
=== Optional ===
 +
* [[GnuTLS]]
 +
* [[Python]]
 +
* [[Ruby]]
 +
* [[Lua]]
 +
* [[Aspell]]
 +
* [[Gtk2]]
 +
* [[wxWidgets]]
 +
* [[Qt3]]
 +
* [[CMake]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 +
 +
=== With cMake ===
 +
 +
Create a build directory as recommended in the documentation:
 +
 +
mkdir build
 +
cd build
 +
 +
Prepare the package for compilation:
 +
 +
cmake .. -DPREFIX=/usr
 +
 +
The -DPREFIX=/usr ensures that weechat will be installed in /usr directory. Specifify any directory if you want to install it in another location.
  
 
Compile the package:
 
Compile the package:
  
./configure --prefix=/usr --sysconfdir=/etc &&
 
 
  make
 
  make
  
Install the package
+
Finally, as root user, install the package:
  
 
  make install
 
  make install
  
== Multilib ==
+
=== Without cMake ===
'''''This package does not provide any external libraries so only one installation is needed.'''''
 
  
=== 32Bit ===
+
If you don't have cMake installed, you'll use autotools.
  
 
Compile the package:
 
Compile the package:
  
  export USE_ARCH=32 &&
+
  ./configure --prefix=/usr --sysconfdir=/etc &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc &&
 
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
unset USE_ARCH
 
  
=== N32 ===
+
== Multilib ==
 +
 
 +
'''''This package does not provide any external libraries, only plugins, so only one installation is needed.'''''
 +
 
 +
=== 64Bit ===
  
 
Compile the package:
 
Compile the package:
  
export USE_ARCH=N32 &&
+
  CC="gcc ${BUILD64}" USE_ARCH=64 \
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --sysconfdir=/etc &&
+
./configure --prefix=/usr --sysconfdir=/etc \
 +
    --libdir=/usr/lib64 &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install
unset USE_ARCH
 
  
=== 64Bit ===
+
== Contents ==
  
Compile the package:
+
{| style="text-align: left;"
 +
|-valign="top"
 +
!Installed Directories:
 +
|/usr/lib/weechat/plugins
 +
|-valign="top"
 +
!Installed Programs:
 +
|weechat-curses, weechat-gtk
 +
|-valign="top"
 +
!Installed Libraries:
 +
|None
 +
|}
  
export USE_ARCH=64 &&
+
=== Short Descriptions ===
CC="gcc ${BUILD64}" ./configure --prefix=/usr --sysconfdir=/etc &&
 
make
 
  
Install the package
+
{| style="text-align: left;"
 +
|-valign="top"
 +
!weechat-curses
 +
|is the ncurses version of weechat.
 +
|-valign="top"
 +
!weechat-gtk
 +
|is the [[Gtk2]] version of weechat.
 +
|}
  
make install &&
+
[[Category:Non-GUI Clients]]
unset USE_ARCH
 

Latest revision as of 16:14, 3 March 2010

Download Source: http://weechat.org/files/src/weechat-0.3.3.tar.bz2

Introduction to Weechat

Weechat is a multi-platform IRC standards compliant client with console, ncurses, wxWidgets, Gtk2, and Qt interfaces.

Project Homepage: http://weechat.flashtux.org/index.php

Dependencies

Optional

Non-Multilib

With cMake

Create a build directory as recommended in the documentation:

mkdir build
cd build

Prepare the package for compilation:

cmake .. -DPREFIX=/usr

The -DPREFIX=/usr ensures that weechat will be installed in /usr directory. Specifify any directory if you want to install it in another location.

Compile the package:

make

Finally, as root user, install the package:

make install

Without cMake

If you don't have cMake installed, you'll use autotools.

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install

Multilib

This package does not provide any external libraries, only plugins, so only one installation is needed.

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib64 &&
make

Install the package

make install

Contents

Installed Directories: /usr/lib/weechat/plugins
Installed Programs: weechat-curses, weechat-gtk
Installed Libraries: None

Short Descriptions

weechat-curses is the ncurses version of weechat.
weechat-gtk is the Gtk2 version of weechat.