You are not logged in.
hi!
I use the gnome2.13 repo, so I have dbus 0.61 installed.
Right now, I waned to try the mono stuff - banshee & f-spot. and pacman says I need dbus-sharp0.60 which requires dbus with the same version.
I don't have dbus0.60 available for install, only 0.5.
So, I have two options - try to force an install of dbus-sharp0.60, or give up and live unhappy for the rest of my life.;) I prefer the first option, but before I go and break things, I just want to know if it will work. Any other suggestion regarding how I can install those programs will also be happily welcomed.
Thanks in advance!
Someday, I'll be a real boy!
Offline
So you install dbus-sharp-0.61
pkgname=dbus-sharp
pkgver=0.61
pkgrel=1
pkgdesc="Mono bindings for DBUS"
url="http://www.freedesktop.org/software/dbus"
depends=('gtk-sharp' "dbus=$pkgver")
source=("http://dbus.freedesktop.org/releases/dbus-$pkgver.tar.gz")
build() {
[ "$MONO_PATH" = "" ] && . /etc/profile.d/mono.sh
cd $startdir/src/dbus-$pkgver
export MONO_SHARED_DIR=$startdir/src/.wabi
mkdir -p $MONO_SHARED_DIR
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
--enable-mono
--enable-checks
--enable-asserts
--disable-doxygen-docs
--disable-xml-docs
--disable-mono-docs || return 1
cd mono
touch example/echo-{server,client}.exe
mkdir -p $startdir/pkg/usr/lib/pkgconfig
make || return 1
make DESTDIR=$startdir/pkg install || return 1
rm -rf $MONO_SHARED_DIR
install -m644 ../dbus-sharp.pc $startdir/pkg/usr/lib/pkgconfig || return 1
find $startdir/pkg -name '*.la' -exec rm {} ;
}
Offline
Ahh, Thank you wery wery much!
Someday, I'll be a real boy!
Offline