Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Other Community Discussions > Tutorials & Tips
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Tutorials & Tips
The place to find Ubuntu related Tips & Tricks.

 
Thread Tools Display Modes
Old December 8th, 2005   #1
sapo
Fresh Brewed Ubuntu
 
sapo's Avatar
 
Join Date: Mar 2005
Location: Brazil
Beans: 1,178
Ubuntu 7.04 Feisty Fawn
Send a message via MSN to sapo
Yo fellows.. i m very happy today.. i ve been waiting for the new release of gaim for a long time, tough it isnt released yet, i just compiled the cvs version, and its great, so as i m a good guy and now i m in a good mood i m writing this quick guide to help you install gaim 2.0 from cvs, or if your lazy just got my .deb.

Screenshot:


First of all, remove your gaim 1.5:

Code:
sudo apt-get remove gaim
Dont mind about the ubuntu-desktop, kubuntu-desktop, or kubuntu-desktop, they are just meta packages.

if you want to use MSN, do this:

Code:
sudo apt-get install libgnutls11-dev
I dont know ALL the dependencies, so if you miss something, post here so we can find out what is missing, i had everything except the libgnutls above.

If you are lazy, just grab the deb:

http://xgn.com.br/fabio/gaim_2.0.0cvs2-1_i386.deb

if you want to compile yourself, here we go:

ps: Ripped from: http://gaim.sourceforge.net/downloads.php

Step 1. Check out the source

Run the following commands in a directory that you have write access to (such as your home directory):

Code:
cvs -d ':pserver:anonymous@cvs.sourceforge.net:/cvsroot/gaim' login
(Just hit enter for the password)
cvs -z3 -d ':pserver:anonymous@cvs.sourceforge.net:/cvsroot/gaim' checkout gaim
You should see it listing all the source files.

Step 2. Build again

Once you've checked gaim out of CVS, run the follwing commands:

Code:
cd gaim
sh autogen.sh
./configure --enable-gnutls=yes
If you see any errors here, you haven't installed everything you need. autogen.sh will also run ./configure for you once it's created, if it's created successfully. If you see any errors related to GLib or GTK, you haven't installed the devel packages.

Now, type:

Code:
make
sudo make install
Tip: if you want to create a deb and install it instead of the make install, dont type sudo make install, instead type this:

Code:
sudo apt-get install checkinstall
The type:

Code:
sudo checkinstall
it you ask you to fill some information, fill them out, and it will install the deb.

Now some tips by bored2k:

If you want to enable sounds in gaim, do this:

Code:
sudo apt-get install esound-clients
Now in the sound preferences of you gaim, chose metod: command, and fill the command field with: esdplay %s

Sugestions by foxy123:

If you want sound support, you need libao:

Code:
sudo apt-get install libao-dev
If you need spellchecking support, you need libgtkspell:

Code:
sudo apt-get install libgtkspell-dev
Enjoy
__________________
Yet Another Coding Blog
Flash Host

Last edited by sapo; December 10th, 2005 at 07:53 PM..
sapo is offline   Reply With Quote
Old December 9th, 2005   #2
Turtle.net
Way Too Much Ubuntu
 
Turtle.net's Avatar
 
Join Date: Apr 2005
Location: Canada
Beans: 229
Ubuntu 9.10 Karmic Koala
Re: HOWTO: Gaim 2.0 CVS - .deb inside

Don't you need to do
Code:
./autogen.sh
before ./configure ?
Turtle.net is offline   Reply With Quote
Old December 9th, 2005   #3
sal
Way Too Much Ubuntu
 
sal's Avatar
 
Join Date: May 2005
Location: Bronx, New York
Beans: 236
Kubuntu 9.04 Jaunty Jackalope
Send a message via MSN to sal Send a message via Skype™ to sal
Re: HOWTO: Gaim 2.0 CVS - .deb inside

dose this version include the gaim-vv to do audio chats with msn,yahoo,googletalk?
__________________
Kubuntu Gutsy x86 AMD Athlon 64 3500+ 2.2GHz 1024 MB DDR2 PC2-4200
Co-Host UbuntoOS Podcast (http://www.ubuntuos.com) Registered Linux User #398201/http://counter.li.org/
sal is offline   Reply With Quote
Old December 9th, 2005   #4
lizardking
Way Too Much Ubuntu
 
lizardking's Avatar
 
Join Date: Jan 2005
Location: Signa, Florence
Beans: 261
Hardy Heron (Ubuntu Development)
Send a message via ICQ to lizardking Send a message via MSN to lizardking Send a message via Yahoo to lizardking Send a message via Skype™ to lizardking
Re: HOWTO: Gaim 2.0 CVS - .deb inside

some screen or list of new features?
__________________
iAc alias Lizardking - Ubuntu Artwork Team
web: www.iacopomasi.net
mail: iacopo.masi@gmail.com
lizardking is offline   Reply With Quote
Old December 9th, 2005   #5
foxy123
Dark Roasted Ubuntu
 
Join Date: Apr 2005
Beans: 1,101
Re: HOWTO: Gaim 2.0 CVS - .deb inside

libgnutls10-dev wants to remove a lot of KDE dev packages which are used to build amarok from svn
foxy123 is offline   Reply With Quote
Old December 9th, 2005   #6
foxy123
Dark Roasted Ubuntu
 
Join Date: Apr 2005
Beans: 1,101
Re: HOWTO: Gaim 2.0 CVS - .deb inside

OK, several suggestions:

1.
Quote:
if you want to use MSN, do this:
Code:
sudo apt-get install libgnutls10-dev
Ubuntu official package is libgnutls11, you do not need 10. So do
Code:
sudo apt-get install libgnutls11-dev
2. If you want sound support, you need libao:
Code:
sudo apt-get install libao-dev
3. If you need spellchecking support, you need libgtkspell:
Code:
sudo apt-get install libgtkspell-dev
foxy123 is offline   Reply With Quote
Old December 9th, 2005   #7
sapo
Fresh Brewed Ubuntu
 
sapo's Avatar
 
Join Date: Mar 2005
Location: Brazil
Beans: 1,178
Ubuntu 7.04 Feisty Fawn
Send a message via MSN to sapo
Re: HOWTO: Gaim 2.0 CVS - .deb inside

Thanx guys, i ll add those to the howto

I dont know if you need to type autogen.sh first before the ./configure, do you need it?
__________________
Yet Another Coding Blog
Flash Host
sapo is offline   Reply With Quote
Old December 9th, 2005   #8
SirKillalot
Just Give Me the Beans!
 
Join Date: Nov 2005
Location: Regensburg, Germany
Beans: 66
Re: HOWTO: Gaim 2.0 CVS - .deb inside

Gaim 2.0 is great! waiting for the official release..
SirKillalot is offline   Reply With Quote
Old December 9th, 2005   #9
doclivingston
Has an Ubuntu Drip
 
Join Date: Mar 2005
Location: Australia
Beans: 446
The Feisty Fawn Testing
Send a message via AIM to doclivingston Send a message via MSN to doclivingston
Re: HOWTO: Gaim 2.0 CVS - .deb inside

Quote:
Originally Posted by sapo
I dont know if you need to type autogen.sh first before the ./configure, do you need it?
You should always (re-)run autogen.sh when you first get or later update something from cvs (or equivalent). Not doing that can cause problems when compiling.
doclivingston is offline   Reply With Quote
Old December 9th, 2005   #10
foxy123
Dark Roasted Ubuntu
 
Join Date: Apr 2005
Beans: 1,101
Re: HOWTO: Gaim 2.0 CVS - .deb inside

Quote:
Originally Posted by sapo
Thanx guys, i ll add those to the howto

I dont know if you need to type autogen.sh first before the ./configure, do you need it?
yes, you need. also you do not need ./configure, just put all options after ./autogen.sh like:

Code:
./autogen.sh --enable-gnutls=yes
foxy123 is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:51 AM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry