You are not logged in.

#1 2005-05-04 19:37:15

mdv
Member
From: Poland
Registered: 2005-04-09
Posts: 145

[solved] kdissert compilation

Hello!
I tried to compilie kdissert from AUR but I get the following error

echo '#include "docsettings.moc"' >> src/kdissert/gui/docsettings.cpp
/opt/qt/bin/moc -o src/kdissert/gui/docsettings.moc src/kdissert/gui/docsettings.h
/opt/qt/bin/uic: error while loading shared libraries: libqt-mt.so.3: cannot open shared object file: No such file or directory
scons: *** [src/kdissert/gui/docsettings.h] Error 127
scons: building terminated because of errors.
==> ERROR: Build Failed.  Aborting...

The PKBUILD is:

pkgname=kdissert
pkgver=0.9.0.23042005
pkgrel=1
pkgdesc="A KDE mindmapping tool"
url="http://www.freehackers.org/~tnagy/kdissert/"
license="gpl"
depends=('kdelibs' 'xorg')
makedepends=('scons')
source=(http://www.freehackers.org/~tnagy/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('3e7556ed22e03837ccaef3a6dabf48b8')

build() {
  mkdir -p $startdir/pkg/opt/kde/
  cd $startdir/src/$pkgname-$pkgver
  scons configure prefix=$startdir/pkg/opt/kde/
  scons || return 1
  scons install
}

I'll be gratious for any help.

Offline

#2 2005-05-04 20:58:23

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: [solved] kdissert compilation

do you have "libqt-mt.so.3" anywhere - kdissert is looking for it and can't find it (try "ls /usr/lib/libqt-mt*" and see wht comes up)

Offline

#3 2005-05-04 21:04:30

IceRAM
Member
From: Bucharest, Romania
Registered: 2004-03-04
Posts: 772
Website

Re: [solved] kdissert compilation

Hmm.. that's weird.
I've compiled kdissert from AUR with no problem.

Offline

#4 2005-05-04 21:27:35

mdv
Member
From: Poland
Registered: 2005-04-09
Posts: 145

Re: [solved] kdissert compilation

IceRAM wrote:

Hmm.. that's weird.
I've compiled kdissert from AUR with no problem.

Yeah, weird. It always happens. I guess my brain generates some soft of radiation responsible for missing sybolic links.

I solved the problem by doing:
# ln -s /opt/qt/lib/libqt-mt.so.3 /usr/lib/libqt-mt.so.3

Offline

#5 2005-05-04 22:25:02

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

Re: [solved] kdissert compilation

mdv wrote:
IceRAM wrote:

Hmm.. that's weird.
I've compiled kdissert from AUR with no problem.

Yeah, weird. It always happens. I guess my brain generates some soft of radiation responsible for missing sybolic links.

I solved the problem by doing:
# ln -s /opt/qt/lib/libqt-mt.so.3 /usr/lib/libqt-mt.so.3

Check your /etc/ld.so.conf file to see if it has the line /opt/qt/lib
If not, add the line and run ldconfig.  This should solve your problem (no link needed).

Offline

Board footer

Powered by FluxBB