You are not logged in.
Pages: 1
I've compiled myself Scribes 0.3 using this modified PKGBUILD:
# Contributor: neodreams <yanbrodeur>
pkgname=scribes
pkgver=0.3
pkgrel=1
pkgdesc="A simple PyGTK+ text editor"
url="http://scribes.sourceforge.net"
license="GPL"
depends=('dbus-python' 'gnome-python-desktop' 'gnome-python-extras' 'gtksourcevi
ew' 'yelp')
makedepends=()
source=(http://neodreams.universfantastiques.org/src/${pkgname}-${pkgver}.tar.bz
2)
md5sums=('2abe30a606fcb6aa310c7322df8e5ab7')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
./configure --prefix=/opt/gnome --disable-scrollkeeper
make || return 1
make DESTDIR=${startdir}/pkg install
}Everything goes fine, but when I try to run Scribes I get following msg:
Traceback (most recent call last):
File "/opt/gnome/bin/scribes", line 39, in ?
main(argv[1:])
File "/opt/gnome/lib/python2.4/site-packages/SCRIBES/dbusmain.py", line 53, in main
from info import dbus_iface
File "/opt/gnome/lib/python2.4/site-packages/SCRIBES/info.py", line 32, in ?
session_bus = SessionBus()
File "/usr/lib/python2.4/site-packages/dbus/_dbus.py", line 266, in __new__
return Bus.__new__(cls, Bus.TYPE_SESSION, use_default_mainloop, private)
File "/usr/lib/python2.4/site-packages/dbus/_dbus.py", line 99, in __new__
bus._connection = dbus_bindings.bus_get(bus_type, private)
File "dbus_bindings.pyx", line 1692, in dbus_bindings.bus_get
dbus_bindings.DBusException: Unable to determine the address of the message bus (try 'man dbus-launch' and 'man dbus-daemon' for help)I've searched Google but nothing found there
Anybody can help?
If a man does not know to what port he is sailing, no wind is favourable
- Seneca
Offline
try restarting dbus?
Offline
Found it! 8)
Need to run:
dbus-launch scribesIf a man does not know to what port he is sailing, no wind is favourable
- Seneca
Offline
Pages: 1