Page 3 of 9 FirstFirst 12345 ... LastLast
Results 21 to 30 of 85

Thread: HOWTO: Gaim 2.0 beta cookbook

  1. #21
    Join Date
    Nov 2005
    Beans
    2,322
    Distro
    Ubuntu Intrepid Ibex (testing)

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by evilhomer View Post
    just fyi, adept updater wants to take gaim from 1:2.0.0 back to 2:2.0.0 so it's a package in my sources.list
    You could pin it down. Some other repository is using different versioning, and APT thinks it's newer.


    To install gaim-extendedprefs plugin, try this

    • add to your /etc/apt/sources.list
      Code:
      deb http://www.elisanet.fi/mlind/ubuntu dapper main
    • then import gpg key (not absolutely necessary)
      Code:
      gpg --keyserver pgp.mit.edu --recv-key D0AFFF5E937215FF
      gpg -a --export D0AFFF5E937215FF | sudo apt-key add -
    • Then install plugin
      Code:
      sudo aptitude update && sudo aptitude install gaim-exetendedprefs
    Last edited by mlind; July 28th, 2006 at 12:30 AM. Reason: typo
    Building on Ubuntu using [pbuilder]
    Other resources [Upgrading from CVS, Gaim2, Anjuta, Rhythmbox]

  2. #22
    Join Date
    May 2006
    Beans
    50

    Re: HOWTO: Gaim 2.0 beta cookbook

    Ah excellent! You're the man Now Gaim 2.0 is working great!


    p.s. just fyi,

    I got errors on the key:

    gpg: no keyserver known (use option --keyserver)
    gpg: keyserver receive failed: bad URI

  3. #23
    Join Date
    Nov 2005
    Beans
    2,322
    Distro
    Ubuntu Intrepid Ibex (testing)

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by evilhomer View Post
    Ah excellent! You're the man Now Gaim 2.0 is working great!


    p.s. just fyi,

    I got errors on the key:

    gpg: no keyserver known (use option --keyserver)
    gpg: keyserver receive failed: bad URI
    You're welcome, I hope it works okay.

    That command maybe needs --keyserver pgp.mit.edu
    to work. I guess I have added default keyserver somewhere on my configs.
    Building on Ubuntu using [pbuilder]
    Other resources [Upgrading from CVS, Gaim2, Anjuta, Rhythmbox]

  4. #24
    Join Date
    May 2006
    Beans
    50

    Re: HOWTO: Gaim 2.0 beta cookbook

    Ah you called it. Doesn't work right. Doesn't remove the Buddy List from the taskbar. Oh well, everything else is working great. Thanks.



    Still no luck with gpg

    $gpg --keyserver pgp.mit.edu --recv-key D0AFFF5E937215FF
    gpg: requesting key 937215FF from hkp server pgp.mit.edu
    ?: pgp.mit.edu: Connection refused
    gpgkeys: HKP fetch error: Connection refused
    gpg: no valid OpenPGP data found.
    gpg: Total number processed: 0

  5. #25
    Join Date
    Nov 2005
    Beans
    2,322
    Distro
    Ubuntu Intrepid Ibex (testing)

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by evilhomer View Post
    Still no luck with gpg
    Well it doesn't matter. For some reason that keyserver isn't answering.
    Building on Ubuntu using [pbuilder]
    Other resources [Upgrading from CVS, Gaim2, Anjuta, Rhythmbox]

  6. #26
    Join Date
    Feb 2006
    Location
    North Dakota
    Beans
    224
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: HOWTO: Gaim 2.0 beta cookbook

    Tried the instructions, but nothing after this line:
    Code:
    Edit debian/control file and remove version requirement from cdbs which is on Build-Depends line
    would work for me.

    The debs you threw up work great, though, but it looks like unless I build gaim myself I can't build other packages against gaim. Is this true? I started on this road because I had gaim2beta3 from automatix and wanted guifications and guifications plugin_pack. Now thanks to your debs I have guifications, but when I try to run ./configure for the plugin pack I get an error about GAIM package not found. I'm assuming this is because I don't have the gaim binary only and not the headers. Does this sound right? Is there anyway I can get just the headers, or do I need try and make it compile properly?
    Last edited by bobpaul; July 15th, 2006 at 05:53 PM. Reason: added e-mail notification

  7. #27
    Join Date
    Nov 2005
    Beans
    2,322
    Distro
    Ubuntu Intrepid Ibex (testing)

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by bobpaul View Post
    Tried the instructions, but nothing after this line:
    Code:
    Edit debian/control file and remove version requirement from cdbs which is on Build-Depends line
    would work for me.

    The debs you threw up work great, though, but it looks like unless I build gaim myself I can't build other packages against gaim. Is this true? I started on this road because I had gaim2beta3 from automatix and wanted guifications and guifications plugin_pack. Now thanks to your debs I have guifications, but when I try to run ./configure for the plugin pack I get an error about GAIM package not found. I'm assuming this is because I don't have the gaim binary only and not the headers. Does this sound right? Is there anyway I can get just the headers, or do I need try and make it compile properly?
    Yes, you need the gaim-dev package to compile gaim plugins. Could you describe what fails after you've edited debian/control file?
    I suggest you to try pbuilder for building the package instead.
    Building on Ubuntu using [pbuilder]
    Other resources [Upgrading from CVS, Gaim2, Anjuta, Rhythmbox]

  8. #28
    Join Date
    Feb 2006
    Location
    North Dakota
    Beans
    224
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by mlind View Post
    Could you describe what fails after you've edited debian/control file?
    *rabble, rabble rabble* I expected that response as soon as I posted, but unfortunately I had already undone all that work as soon as it failed as I then noticed you had packages... just hadn't realized plugin_pack and guifications weren't the same thing ...

    So, I'll redo everything and later edit this post with the errors I was/am recieving.

    [Edit]
    Hrmpf! I was missing libxml-parser-perl.
    Code:
    $sudo apt-get install libxml-parser-perl
    resolved the issue. Thanks for making me go back! Maybe you should include that package in your howto...

    [Edit2]
    Stupid offlinemsg plug from the plugin pack still won't compile, but I successfully created *.debs for gaim, so that's got to count for something.
    Last edited by bobpaul; July 16th, 2006 at 06:33 PM. Reason: I always keep my promises

  9. #29
    Join Date
    Nov 2005
    Beans
    2,322
    Distro
    Ubuntu Intrepid Ibex (testing)

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by bobpaul View Post
    *rabble, rabble rabble* I expected that response as soon as I posted, but unfortunately I had already undone all that work as soon as it failed as I then noticed you had packages... just hadn't realized plugin_pack and guifications weren't the same thing ...

    So, I'll redo everything and later edit this post with the errors I was/am recieving.

    [Edit]
    Hrmpf! I was missing libxml-parser-perl.
    Code:
    $sudo apt-get install libxml-parser-perl
    resolved the issue. Thanks for making me go back! Maybe you should include that package in your howto...

    [Edit2]
    Stupid offlinemsg plug from the plugin pack still won't compile, but I successfully created *.debs for gaim, so that's got to count for something.

    Okay, good you got it working. I added the missing package, thanks for that.

    I'll check out the plugin pack if I can get it to build.
    Building on Ubuntu using [pbuilder]
    Other resources [Upgrading from CVS, Gaim2, Anjuta, Rhythmbox]

  10. #30
    Join Date
    Nov 2005
    Beans
    2,322
    Distro
    Ubuntu Intrepid Ibex (testing)

    Re: HOWTO: Gaim 2.0 beta cookbook

    Quote Originally Posted by 13121982 View Post
    Make gaim-svn version maybe easy.
    You can download gaim2 svn version (+source package) from
    Code:
    deb http://www.elisanet.fi/mlind/ubuntu dapper experimental
    Building on Ubuntu using [pbuilder]
    Other resources [Upgrading from CVS, Gaim2, Anjuta, Rhythmbox]

Page 3 of 9 FirstFirst 12345 ... 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
  •