You are not logged in.

Dear visitor, welcome to KDE-Forum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Saturday, June 18th 2005, 4:07am

Error making Kopete

Hi everyone out there, Please help me!! I successfully run ./configure, but when I run "make", I always end up with the following error!

make[3]: *** [index.cache.bz2] Error 1
make[3]: Leaving directory `/root/kopete-0.10.1/doc/fr'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/root/kopete-0.10.1/doc'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/kopete-0.10.1'
make: *** [all] Error 2

Thanks in advance!

Regards,
Stanley

2

Saturday, June 18th 2005, 10:21pm

RE: Error making Kopete

The error is printed above this lines. Can you post more lines of the error message?

It is not neccesairy to compile programs as root. You can download, unpack, ./configure and make the program as normal user. Only for installing, you need to be root. That can also be done easily in a command line with the

Source code

1
su -c "make install"
command.

3

Sunday, June 19th 2005, 3:50am

RE: Error making Kopete

Thanks for reply! This is the error log I got! I think this can help you to solve me problem! Thanks! Anyway, I logged as Root!
.........
fast creating po/se/Makefile
fast creating po/sk/Makefile
fast creating po/sl/Makefile
fast creating po/sr/Makefile
fast creating po/sr@Latn/Makefile
fast creating po/sv/Makefile
fast creating po/ta/Makefile
fast creating po/tg/Makefile
fast creating po/tr/Makefile
fast creating po/uk/Makefile
fast creating po/uz/Makefile
fast creating po/ven/Makefile
fast creating po/xh/Makefile
fast creating po/zh_CN/Makefile
fast creating po/zu/Makefile
config.pl: fast created 226 file(s).
config.status: creating config.h
config.status: executing depfiles commands

Good - your configure finished. Start make now

root@auditor:~/kopete-0.10.1#
root@auditor:~/kopete-0.10.1# make
make all-recursive
make[1]: Entering directory `/root/kopete-0.10.1'
Making all in doc
make[2]: Entering directory `/root/kopete-0.10.1/doc'
Making all in .
make[3]: Entering directory `/root/kopete-0.10.1/doc'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/root/kopete-0.10.1/doc'
Making all in kopete
make[3]: Entering directory `/root/kopete-0.10.1/doc/kopete'
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: Leaving directory `/root/kopete-0.10.1/doc/kopete'
Making all in da
make[3]: Entering directory `/root/kopete-0.10.1/doc/da'
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: Leaving directory `/root/kopete-0.10.1/doc/da'
Making all in de
make[3]: Entering directory `/root/kopete-0.10.1/doc/de'
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: Leaving directory `/root/kopete-0.10.1/doc/de'
Making all in es
make[3]: Entering directory `/root/kopete-0.10.1/doc/es'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/root/kopete-0.10.1/doc/es'
Making all in et
make[3]: Entering directory `/root/kopete-0.10.1/doc/et'
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
make[3]: Leaving directory `/root/kopete-0.10.1/doc/et'
Making all in fr
make[3]: Entering directory `/root/kopete-0.10.1/doc/fr'
/usr/bin/meinproc --check --cache index.cache.bz2 ./index.docbook
index.docbook:101: parser error : Entity 'traducteurPatricePawlak' not defined
&traducteurCedricPasteur;&traducteurPatricePawlak;
^
index.docbook:1878: parser error : Entity 'PatricePawlak' not defined
>Traduction française par &CedricPasteur; et &PatricePawlak;</para
^
make[3]: *** [index.cache.bz2] Error 1
make[3]: Leaving directory `/root/kopete-0.10.1/doc/fr'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/root/kopete-0.10.1/doc'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/kopete-0.10.1'
make: *** [all] Error 2
root@auditor:~/kopete-0.10.1#
-----------

4

Sunday, June 19th 2005, 9:53am

RE: Error making Kopete

This is caused by a missing entity. Entities are used in documentation to change email adresses of a person by editing one line instead of editing that line in all documentation a person had written (or translated). In this case, a person who did the French translation is added to the Franch entity, but that file isn't updated in your setup.

Entities are part of kdelibs. What should work is updating kdelibs to kde 3.4.1.

Another option is only make Kopete, not the docs. For that, press

Source code

1
cd kopete
after

Source code

1
./configure
and then press

Source code

1
2
make
make install
(if loggeed in as root), or

Source code

1
2
make
su -c "make install"
(if logged in as user).

What possible also works is updating the entity file from subversion. First, you need the file. You can get is from http://websvn.kde.org/branches/KDE/3.4/k…r/user.entities .
After that, set that file in $KDEDIR/share/apps/ksgmltools2/customization/fr/user.entities. Don't forget to backup the file you replace. I haven't tried it, this is just a guess that might work.