Page 1 of 6 123 ... LastLast
Results 1 to 10 of 53

Thread: HowTo: Update GAIM to Pidgin (Two Easy Steps)

  1. #1
    Join Date
    Aug 2006
    Location
    United Kingdom
    Beans
    989
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    HowTo: Update GAIM to Pidgin (Two Easy Steps)

    Step One: Download Pidgin (from GetDeb, Debain installation file for Debain/Ubuntu)*
    Step Two: Download Transition Package (Install after installing Pidgin to replace GAIM on Ubuntu)

    No terminal, no file editing. Just two nice and easy installations!

    Source: http://www.mbhoy.com/14-06-2007/pidgin-201

    ** Updated as of Pidgin 2.1.1 release. This guide now takes you to the latest version **
    ** Updated as of Pidgin 2.1.0 release. Click here to check What's New. **
    Last edited by Old Pink; August 24th, 2007 at 06:02 PM.

  2. #2
    Join Date
    Nov 2005
    Location
    Leeds, UK
    Beans
    1,634
    Distro
    Ubuntu Development Release

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    cool, thanks

  3. #3
    Join Date
    Nov 2006
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    Great and simple tutorial - thanks a bunch!

  4. #4
    Join Date
    Mar 2006
    Beans
    180

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    How to upgrade to the latest version? 2.0.2.

  5. #5
    Join Date
    Nov 2006
    Beans
    198
    Distro
    Ubuntu

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    This is a good idea, but you might want to get it from an external repo for the use of updates.

    You can see either my post here, or jamyski's post here for some Pidgin repos.
    Sincerely,
    Zachary Waldowski
    Dizzy Technology

  6. #6
    Join Date
    Feb 2006
    Beans
    503
    Distro
    Kubuntu 7.10 Gutsy Gibbon

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    The easiest way to do this is to compile from the source code the Pidgin dev's provide at their site. Contrary to popular opinion, it's actually not that hard at all to compile something from source, as long as Ubuntu's package manager has a list of packages that the program is dependent on (in Pidgin's case, we just use Gaim's dependencies, since they are the same program). That way, you can get the newest version of Pidgin, instead of being stuck with an old version, which is what most of the repositories have.
    1. You run
    Code:
    sudo apt-get build-dep gaim
    to satisfy all dependencies for compiling Pidgin.
    2. You download the source code from http://www.pidgin.im/
    3. Open a terminal, cd to the directory that contains the Pidgin tarball and do
    Code:
    tar xvfj pidgin-*
    4. cd to the extracted Pidgin folder and run
    Code:
    ./configure
    5. Run
    Code:
    make
    6. Run
    Code:
    sudo make install
    7. Now you can launch Pidgin from the command line with
    Code:
    pidgin
    or by doing Alt+F2 and typing in "pidgin"
    8. For those of you that want an icon in the GNOME panel/KMenu, copy the pidgin.desktop file from the extracted pidgin archive to /usr/share/applications



    You can do this for any software that you want to update, but isn't available in the repositories yet. Unfortunately, compiling code like this without being able to use the build-dep command to satisfy all dependencies can make it nearly impossible to successfully complete, so if there isn't at least an older version of a program available in the repositories to build-dep with, you're going to have a hell of a time getting the configure script to work.
    Last edited by srunni; June 16th, 2007 at 11:11 PM.

  7. #7
    Join Date
    Sep 2005
    Beans
    119

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    Hmm, I get dependency problems. Any suggestions?

    EDIT: Nevermind, I got it going. Thanks for the howto.
    Last edited by Greeface; June 22nd, 2007 at 08:07 AM.

  8. #8
    Join Date
    Jun 2007
    Location
    Brazil
    Beans
    4
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    Quote Originally Posted by srunni View Post
    The easiest way to do this is to compile from the source code the Pidgin dev's provide at their site. Contrary to popular opinion, it's actually not that hard at all to compile something from source, as long as Ubuntu's package manager has a list of packages that the program is dependent on (in Pidgin's case, we just use Gaim's dependencies, since they are the same program). That way, you can get the newest version of Pidgin, instead of being stuck with an old version, which is what most of the repositories have.
    1. You run
    Code:
    sudo apt-get build-dep gaim
    to satisfy all dependencies for compiling Pidgin.
    2. You download the source code from http://www.pidgin.im/
    3. Open a terminal, cd to the directory that contains the Pidgin tarball and do
    Code:
    tar xvfj pidgin-*
    4. cd to the extracted Pidgin folder and run
    Code:
    ./configure
    5. Run
    Code:
    make
    6. Run
    Code:
    sudo make install
    7. Now you can launch Pidgin from the command line with
    Code:
    pidgin
    or by doing Alt+F2 and typing in "pidgin"
    8. For those of you that want an icon in the GNOME panel/KMenu, copy the pidgin.desktop file from the extracted pidgin archive to /usr/share/applications



    You can do this for any software that you want to update, but isn't available in the repositories yet. Unfortunately, compiling code like this without being able to use the build-dep command to satisfy all dependencies can make it nearly impossible to successfully complete, so if there isn't at least an older version of a program available in the repositories to build-dep with, you're going to have a hell of a time getting the configure script to work.
    Thanks .. worked greatly!

  9. #9
    Join Date
    Aug 2006
    Location
    United Kingdom
    Beans
    989
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    Quote Originally Posted by srunni View Post
    The easiest way to do this is to compile from the source code the Pidgin dev's provide at their site. Contrary to popular opinion, it's actually not that hard at all to compile something from source, as long as Ubuntu's package manager has a list of packages that the program is dependent on (in Pidgin's case, we just use Gaim's dependencies, since they are the same program). That way, you can get the newest version of Pidgin, instead of being stuck with an old version, which is what most of the repositories have.
    1. You run
    Code:
    sudo apt-get build-dep gaim
    to satisfy all dependencies for compiling Pidgin.
    2. You download the source code from http://www.pidgin.im/
    3. Open a terminal, cd to the directory that contains the Pidgin tarball and do
    Code:
    tar xvfj pidgin-*
    4. cd to the extracted Pidgin folder and run
    Code:
    ./configure
    5. Run
    Code:
    make
    6. Run
    Code:
    sudo make install
    7. Now you can launch Pidgin from the command line with
    Code:
    pidgin
    or by doing Alt+F2 and typing in "pidgin"
    8. For those of you that want an icon in the GNOME panel/KMenu, copy the pidgin.desktop file from the extracted pidgin archive to /usr/share/applications



    You can do this for any software that you want to update, but isn't available in the repositories yet. Unfortunately, compiling code like this without being able to use the build-dep command to satisfy all dependencies can make it nearly impossible to successfully complete, so if there isn't at least an older version of a program available in the repositories to build-dep with, you're going to have a hell of a time getting the configure script to work.
    I know how to compile, it's the same as compiling for any application, essentially.

    I was offering an entirely GUI based substitute for those who prefer to avoid terminal.

    As you can see, my tutorial was two steps, yours was seven.

    Don't hijack threads.

  10. #10
    Join Date
    May 2007
    Location
    Maryland
    Beans
    539
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: HowTo: Update GAIM to Pidgin (Two Easy Steps)

    Now now we´re suppose to be learning and helping each other. Itś what makes Ubuntu great. For example, I´m relatively unfamilar with compiling, so I just learned how to compile and now I have the benefit of using your two step method to save myself some time.
    "I thought what I'd do was I'd pretend I was one of those deaf-mutes"
    Desktop: Ubuntu 9.10, Windows XP
    Laptop: Ubuntu 9.10, Windows Vista (soon to be replaced by Windows 7)
    n800: Diablo/Maemo 4 (one day Mer..)

Page 1 of 6 123 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •