Page 1 of 1

xiphos installation

PostPosted: May 18th, '15, 17:06
by easy7cz
First, I must say I am new to linux and to Mageia. I downloaded a tar.gz (xiphos bible software) file and unzipped it to its own folder. I then opened the terminal and attempted to configure. The following is the error message:
Code: Select all
[root@localhost xiphos-4.0.2]# ./waf configure --prefix=/usr --debug-level=optimized
Linux detected
Check for program g++ or c++             : not found
/home/live/xiphos-4.0.2/wscript:162: error: The program ['g++', 'c++'] is required

I would assume that the "g++ or c++ program did not download with the initial unzip. Any help would be appreciated

Re: xiphos installation

PostPosted: May 19th, '15, 12:08
by doktor5000
Bibletime does not suit your needs?

For your question, simply install a compiler, you probably should install task-c++-devel

Please first read https://wiki.mageia.org/en/Installing_a ... rrectly.3F
and maybe https://wiki.mageia.org/en/Install_medi ... _beginners
to get started with software management in Mageia.

Re: xiphos installation

PostPosted: May 24th, '15, 04:37
by easy7cz
Thank you for your help, I installed compiler and then ran "./waf configure" again and the following is the the "fail" messages displayed:

Code: Select all
----------------------------------------
Checking for gtk+-3.0 >= 3.12
pkg-config --errors-to-stdout --print-errors --atleast-version=3.12 gtk+-3.0
Requested 'gtk+-3.0 >= 3.12' but version of GTK+ is 3.10.6
fail

----------------------------------------
Checking for gtk+-3.0 >= 3.14
pkg-config --errors-to-stdout --print-errors --atleast-version=3.14 gtk+-3.0
Requested 'gtk+-3.0 >= 3.14' but version of GTK+ is 3.10.6
fail

Code: Select all
----------------------------------------
Checking for libgtkhtml4
pkg-config --errors-to-stdout --print-errors --modversion libgtkhtml-4.0
Package libgtkhtml-4.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libgtkhtml-4.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libgtkhtml-4.0' found
fail

----------------------------------------
Checking for GtkHTML Editor 4.0
pkg-config --errors-to-stdout --print-errors --modversion gtkhtml-editor-4.0
Package gtkhtml-editor-4.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtkhtml-editor-4.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtkhtml-editor-4.0' found
fail

Re: xiphos installation

PostPosted: May 24th, '15, 18:39
by doktor5000
easy7cz wrote:Requested 'gtk+-3.0 >= 3.12' but version of GTK+ is 3.10.6
----------------------------------------
Requested 'gtk+-3.0 >= 3.14' but version of GTK+ is 3.10.6


I think that's pretty clear. It needs library version newer then 3.12 and newer then 3.14 and you only have 3.10.6 installed, so you cannot compile it on Mageia 4.

easy7cz wrote:----------------------------------------
Checking for libgtkhtml4
pkg-config --errors-to-stdout --print-errors --modversion libgtkhtml-4.0
Package libgtkhtml-4.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libgtkhtml-4.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libgtkhtml-4.0' found
fail


You are missing a package which contains at least the pkgconfig file libgtkhtml-4.0.pc and the relevant headers - either lib64gtkhtml4.0-devel or libgtkhtml4.0-devel.
Code: Select all
┌─[doktor5000@Mageia5]─[18:30:13]─[~]                                                                                                                                                                             
└──╼ urpmf libgtkhtml-4.0.pc
lib64gtkhtml4.0-devel:/usr/lib64/pkgconfig/libgtkhtml-4.0.pc
mingw32-gtkhtml3:/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/libgtkhtml-4.0.pc
mingw64-gtkhtml3:/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig/libgtkhtml-4.0.pc
libgtkhtml4.0-devel:/usr/lib/pkgconfig/libgtkhtml-4.0.pc
mingw32-gtkhtml3:/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/libgtkhtml-4.0.pc
mingw64-gtkhtml3:/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig/libgtkhtml-4.0.pc



easy7cz wrote:----------------------------------------
Checking for GtkHTML Editor 4.0
pkg-config --errors-to-stdout --print-errors --modversion gtkhtml-editor-4.0
Package gtkhtml-editor-4.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtkhtml-editor-4.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtkhtml-editor-4.0' found
fail


Same as above, you either need lib64gtkhtml4.0-devel or libgtkhtml4.0-devel
Code: Select all
┌─[doktor5000@Mageia5]─[18:35:40]─[~]
└──╼ urpmf gtkhtml-editor-4.0.pc
lib64gtkhtml4.0-devel:/usr/lib64/pkgconfig/gtkhtml-editor-4.0.pc
mingw32-gtkhtml3:/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/gtkhtml-editor-4.0.pc
mingw64-gtkhtml3:/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig/gtkhtml-editor-4.0.pc
libgtkhtml4.0-devel:/usr/lib/pkgconfig/gtkhtml-editor-4.0.pc
mingw32-gtkhtml3:/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/gtkhtml-editor-4.0.pc
mingw64-gtkhtml3:/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig/gtkhtml-editor-4.0.pc