Difference between revisions of "Pidgin"

From CBLFS
Jump to navigationJump to search
(Optional)
 
(27 intermediate revisions by 6 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/gaim/gaim-1.5.0.tar.bz2
+
| http://downloads.sourceforge.net/pidgin/pidgin-{{Pidgin-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|Pidgin is an instant messaging client that can connect with a wide range of networks including AIM, ICQ, MSN, Jabber, IRC, Napster, Gadu-Gadu, Zephyr and Yahoo!|http://pidgin.im/pidgin/home/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 11: Line 13:
 
=== Required ===
 
=== Required ===
 
* [[Gtk2]]
 
* [[Gtk2]]
 +
* [[LibXML2]]
 +
* [[Perl_Module_XML::Parser]]
 +
* [[startup-notification]]
 +
 
=== Optional ===
 
=== Optional ===
 +
* [[D-BUS Glib]] and [[Python]]
 +
* [[GConf]]
 +
* [[GStreamer]]
 +
* [[Avahi]]
 
* [[silc-toolkit]]
 
* [[silc-toolkit]]
 
* [[Audio File]]
 
* [[Audio File]]
 
* [[libao]]
 
* [[libao]]
* [[NAS]]
+
* [[libidn]]
 +
* [[Mono]]
 
* [[TCL]]
 
* [[TCL]]
 
* [[Tk]]
 
* [[Tk]]
 
* [[GtkSpell]]
 
* [[GtkSpell]]
* [[startup-notification]]
 
 
* [[Evolution Data Server]] and [[LibXML2]]
 
* [[Evolution Data Server]] and [[LibXML2]]
 
* [[XScreenSaver]]
 
* [[XScreenSaver]]
* [[GnuTLS]] or [[NSS]]
+
* [[GnuTLS]] or [[NSS]] ( NSS required for MSN )
 
* [[Zephyr]]
 
* [[Zephyr]]
 
* [[Doxygen]]
 
* [[Doxygen]]
 +
* [[Farsight2]]
 +
* [[Meanwhile]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 30: Line 42:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr &&
+
sed -i "s/lib64/lib/g" configure &&
 +
  ./configure --prefix=/usr --sysconfdir=/etc/gnome &&
 
  make  
 
  make  
  
Line 38: Line 51:
  
 
== Multilib ==
 
== Multilib ==
'''''This package does not provide any libraries so only one installation is needed.'''''
 
  
 
=== 32Bit ===
 
=== 32Bit ===
  
 
Compile the package:
 
Compile the package:
  CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 LDFLAGS="-L/usr/lib" \
+
 
  ./configure --prefix=/usr &&
+
export USE_ARCH=32 &&
 +
sed -i "s/lib64/lib/g" configure &&
 +
CPPFLAGS="-I${XORG_PREFIX}/include" \
 +
  CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 +
  ./configure --prefix=/usr --sysconfdir=/etc/gnome &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
unset USE_ARCH
  
 
=== N32 ===
 
=== N32 ===
Line 55: Line 72:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
+
export USE_ARCH=n32 &&
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
sed -i "s/lib64/lib32/g" configure &&
 +
CPPFLAGS="-I${XORG_PREFIX}/include" \
 +
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
 +
  ./configure --prefix=/usr --libdir=/usr/lib32 \
 +
    --sysconfdir=/etc/gnome &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
unset USE_ARCH
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 67: Line 89:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
+
export USE_ARCH=64 &&
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
CPPFLAGS="-I${XORG_PREFIX}/include" \
 +
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 +
  ./configure --prefix=/usr --libdir=/usr/lib64 \
 +
    --sysconfdir=/etc/gnome &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
unset USE_ARCH
  
 +
== Contents ==
  
== Contents ==
+
Pidgin is an instant messaging client that can connect with a wide range of networks including AIM, ICQ, MSN, Jabber, IRC, Napster, Gadu-Gadu, Zephyr and Yahoo!
  
Gaim is an instant messaging client that can connect with a wide range of networks including AIM, ICQ, MSN, Jabber, IRC, Napster, Gadu-Gadu, Zephyr and Yahoo!
+
[[Category:GUI Clients]]

Latest revision as of 15:19, 12 September 2009

Download Source: http://downloads.sourceforge.net/pidgin/pidgin-2.6.4.tar.bz2

Introduction to Pidgin

Pidgin is an instant messaging client that can connect with a wide range of networks including AIM, ICQ, MSN, Jabber, IRC, Napster, Gadu-Gadu, Zephyr and Yahoo!

Project Homepage: http://pidgin.im/pidgin/home/

Dependencies

Required

Optional

Non-Multilib

Compile the package:

sed -i "s/lib64/lib/g" configure &&
./configure --prefix=/usr --sysconfdir=/etc/gnome &&
make 

Install the package

make install

Multilib

32Bit

Compile the package:

export USE_ARCH=32 &&
sed -i "s/lib64/lib/g" configure &&
CPPFLAGS="-I${XORG_PREFIX}/include" \
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

Compile the package:

export USE_ARCH=n32 &&
sed -i "s/lib64/lib32/g" configure &&
CPPFLAGS="-I${XORG_PREFIX}/include" \
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
    --sysconfdir=/etc/gnome &&
make

Install the package

make install &&
unset USE_ARCH

64Bit

Compile the package:

export USE_ARCH=64 &&
CPPFLAGS="-I${XORG_PREFIX}/include" \
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
    --sysconfdir=/etc/gnome &&
make

Install the package

make install &&
unset USE_ARCH

Contents

Pidgin is an instant messaging client that can connect with a wide range of networks including AIM, ICQ, MSN, Jabber, IRC, Napster, Gadu-Gadu, Zephyr and Yahoo!