You are not logged in.

#1 2005-08-15 06:57:42

WillySilly
Member
Registered: 2005-01-14
Posts: 268

[request] Galago

" Galago is a desktop presence framework, designed to transmit presence information between programs. To put it in simpler terms, it takes information on who is online and their away/idle states from an instant messenger (such as gaim) or other similar programs and lets other programs (such as Ximian's Evolution) to make use of it."

I've tried my hand at getting it to work with no luck. If someone could make pkgbuilds of it would be great.

Thanks.

Offline

#2 2005-08-15 21:58:00

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: [request] Galago

I was thinking of building it for Beagle.  What do you have so far?

What kind of error messages?


--HAPS

Offline

#3 2005-08-15 22:38:46

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

It's not installed atm. But I remember it could see dbus running. It might have been something in the code from the svn. Or my pkgbuilds. I'm still a beginner at making them, so that might be the case.

Here are the pkgbuilds, don't complain how bad they are. tongue

http://hackerslair.info/galago/

Maybe packaging the current files in the svn might be better when trying to make the pkgbuilds work since these were made before the notification spec was updated.

Offline

#4 2005-08-16 01:57:36

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: [request] Galago

It looked like you had it built, or were close.

pkgname=libgalago
pkgver=0.3.2
pkgrel=1
pkgdesc="Galago is a desktop presence framework"
url="http://www.galago.info/"
license="GPL"
depends=('dbus' 'glib2' 'glibc' )
makedepends=('gcc-g77')
conflicts=()
replaces=()
backup=()
install=
source=("http://www.galago.info/files/releases/source/$pkgname-$pkgver.tar.gz")
md5sums=('0049380f82c1f954dedf834b7521245c')

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./autogen.sh --prefix=/usr
  make || return 1
  make DESTDIR=$startdir/pkg install
}


--HAPS

Offline

#5 2005-08-16 02:34:43

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

Off topic, but to you have a pkgbuild ready for beagle? I want to use a newer version of it than whats in AUR

Offline

#6 2005-08-16 03:02:06

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: [request] Galago

It's a slight update from neotuli's build.

It doesn't quite work the way I want it to.  If you put it in bg mode, it doesn't seem to index, and if you put it in fg, then it runs in debug mode.

You also have to put mono in your PATH.

export PATH=$PATH:/opt/mono/bin

#Contributor: Simo Leone <neotuli@gmail.com>
# Updated froggie<sullivanva@gmail.com>
pkgname=beagle
pkgver=0.0.12
pkgrel=1
pkgdesc="Search tool that ransacks your personal information space"
url="http://www.gnome.org/projects/beagle/"
license=""
depends=('mono' 'gtk-sharp' 'gecko-sharp' 'dbus' 'gmime' 'sqlite2' 'mozilla-firefox')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=("http://ftp.gnome.org/pub/GNOME/sources/beagle/0.0/$pkgname-$pkgver.tar.bz2")
md5sums=('27bfdc64982a471a7d9c2a86c620752d')

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./configure --prefix=/usr
  make || return 1
  make DESTDIR=$startdir/pkg install

}

You also might want to install evolution-sharp from the AUR as well, if you use evolution.


--HAPS

Offline

#7 2005-08-16 23:17:04

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

libgalago-gtk isnt compiling for me. sullivanva have you tried building anything besides libgalago?

Offline

#8 2005-08-17 01:19:50

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: [request] Galago

Post your error messages.

One thing you can always do is download the source rpm, and then use rpm-extract to look at the spec file.  It will usually give you hints on dependencies, where stuff is installed.


--HAPS

Offline

#9 2005-08-17 01:46:04

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

Offline

#10 2005-08-17 03:54:00

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: [request] Galago

The main error is:
../libgalago-gtk/.libs/libgalago-gtk.so: undefined reference to `gtk_dialog_get_response_for_widget'

I tried it a couple of different ways.  I tried your PKGBUILD and got the same results.   So I downloaded the src rpms to see how they were doing it.  The libs are supposed to go in /opt/gnome.  Unfortunately, it didn't make the error go away. 

I did find this link which seemed to indicate that gtk2.6.8 has issues.

http://lists.freedesktop.org/archives/g … 00836.html

I have 2.6.9, but they seem to indicate that 2.7.0 was preferred.

I looked on the gtk+ site and I think they're up to 2.8.

I also looked on the arch page and the package has been flagged out of date.

http://www.archlinux.org/packages.php?id=4106


--HAPS

Offline

#11 2005-08-17 04:35:02

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

hopefully gtk gets updated soon

Offline

#12 2005-08-17 12:19:33

sullivanva
Member
From: Herndon, VA USA
Registered: 2005-07-21
Posts: 126

Re: [request] Galago

This thread doesn't have a lot of views.  I'll start a new one.


--HAPS

Offline

#13 2005-08-17 20:00:38

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

well, libgalago-gtk installed and now im on the presence applet when I get this:

http://pastebin.com/339296

Edit: I tried it with configure instead and it worked.

Offline

#14 2005-08-17 21:38:16

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

when starting galago daemon i get this:

galagod:ERROR: Error connecting to session bus: Unable to determine the address of the message bus
galagod:FATAL: Unable to initialize Galago

Offline

#15 2005-08-17 23:46:11

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: [request] Galago

Is the dbus daemon running?

Offline

#16 2005-08-17 23:47:54

WillySilly
Member
Registered: 2005-01-14
Posts: 268

Re: [request] Galago

Yep

Offline

Board footer

Powered by FluxBB