You are not logged in.
On the majority of kde related packages i try to build (today there have been two; ksystemlog, superkaramba) i have been getting this error:
make all-recursive
make[1]: Entering directory `/var/abs/local/ksystemlog/src/ksystemlog'
Making all in doc
make[2]: Entering directory `/var/abs/local/ksystemlog/src/ksystemlog/doc'
Making all in .
make[3]: Entering directory `/var/abs/local/ksystemlog/src/ksystemlog/doc'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/var/abs/local/ksystemlog/src/ksystemlog/doc'
Making all in en
make[3]: Entering directory `/var/abs/local/ksystemlog/src/ksystemlog/doc/en'
/opt/kde/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
/bin/sh: line 1: 30166 Segmentation fault /opt/kde/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: *** [index.cache.bz2] Error 139
make[3]: Leaving directory `/var/abs/local/ksystemlog/src/ksystemlog/doc/en'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/abs/local/ksystemlog/src/ksystemlog/doc'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/abs/local/ksystemlog/src/ksystemlog'
make: *** [all] Error 2
In this case i'm trying to compile ksystemlog. Seeming as this is happening on so many kde packages and it is clearly related to docbook i presume there is an issue with a related package, libxml etc. I've tried reinstalling the different variants of libxml, but have had no luck. I haven't had any luck searching with google either. :?
Thanks,
Dan
Offline
meinproc is part of kdelibs. You can try to reinstall kdelibs. I've build several KDE programs (not the ones you mentionned) without this problem.
EDIT: It could also be a problem (bug) with meinproc. Have you checked the KDE bugtracker/web site?
Offline
thanks for your help, unfortunately neither of your suggestions have lead to a solution. It's useful to know that meinproc is part of kdelibs, i should try refining my searches with that in mind.
Dan
Offline
I built ksystemlog without any problem. There's probably something wrong with your meinproc. Is your system up-to-date (pacman -Syu)? Here's the PKGBUILD I used:
pkgname=ksystemlog
pkgver=0.1.1
pkgrel=1
pkgdesc=""
url=""
license=""
depends=()
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=($pkgname-$pkgver.tar.bz2)
md5sums=()
build() {
cd $startdir/src/$pkgname
./configure --prefix=/opt/kde
make || return 1
make DESTDIR=$startdir/pkg install
}
Offline
Your PKGBUILD is identical to mine, and my system is up to date. :? Maybe i should try fully removing kde - i presume i can't remove kdelibs alone due to dependencies.
Offline