AlfredoCubitos / qosmic

Automatically exported from code.google.com/p/qosmic
0 stars 1 forks source link

Having trouble configuring qosmic #10

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. configuring qosmic
2.
3.

What is the expected output? What do you see instead?
clean install

What version of the product are you using? On what operating system?
qosmic 1.3.3 on ubuntu 9.04

Please provide any additional information below.

When I try to build qosmic I get this return in terminal:

shawn@HAL:~$ cd /home/shawn/qosmic/qosmic
shawn@HAL:~/qosmic/qosmic$ ./build.sh
Building Qosmic
Project MESSAGE: Generating Makefile for Qosmic version 1.4.4
Project MESSAGE: Qt version : 4.5.0
Project MESSAGE: Default number of rendering threads : 2
Project MESSAGE: Location of flam3-palettes.xml : /flam3-2.7.18
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libxml-2.0', required by 'flam3', not found
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libxml-2.0', required by 'flam3', not found
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libxml-2.0', required by 'flam3', not found
Package lua was not found in the pkg-config search path.
Perhaps you should add the directory containing `lua.pc'
to the PKG_CONFIG_PATH environment variable
No package 'lua' found
Package lua was not found in the pkg-config search path.
Perhaps you should add the directory containing `lua.pc'
to the PKG_CONFIG_PATH environment variable
No package 'lua' found
Package lua was not found in the pkg-config search path.
Perhaps you should add the directory containing `lua.pc'
to the PKG_CONFIG_PATH environment variable
No package 'lua' found
g++ -c -pipe -O2 -D_REENTRANT -w -DNTHREADS=2 -DNAMEVER='"version 1.4.4"'
-DFLAM3DIR='"/flam3-2.7.18"' -DSHAREDIR='"/usr/share"' -DQT_NO_DEBUG
-DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++
-I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4
-Isrc -I.moc -I.ui -o .obj/qosmic.o src/qosmic.cpp
make: g++: Command not found
make: *** [.obj/qosmic.o] Error 127
error while building qosmic
shawn@HAL:~/qosmic/qosmic$ 

I know the paths to libxml-2.0.pc and lua.pc but I don't know what to add
or change in qosmic.pro to tell it where these two files are.

Original issue reported on code.google.com by harlequi...@yahoo.com on 1 Jun 2009 at 5:04

GoogleCodeExporter commented 8 years ago
check issue # 6 at the top there are a list of packages that I installed to get 
it
going. 

Original comment by deefacto...@gmail.com on 1 Jun 2009 at 5:44

GoogleCodeExporter commented 8 years ago
I have installed those. I just need to tell qosmic where to find them.

Original comment by harlequi...@yahoo.com on 1 Jun 2009 at 5:50

GoogleCodeExporter commented 8 years ago
From your error message it looks like g++ (the compiler) is not found.  Do you 
have
gcc installed?

Original comment by bit...@gmail.com on 1 Jun 2009 at 11:10

GoogleCodeExporter commented 8 years ago
I'm not sure, I am not at my computer right now. I will check later.

Original comment by harlequi...@yahoo.com on 2 Jun 2009 at 1:54

GoogleCodeExporter commented 8 years ago
I did a search for files on my hard drive and GCC 4.3 comes up.
The errors are telling me that;

Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
and
Perhaps you should add the directory containing `lua.pc'
to the PKG_CONFIG_PATH environment variable

My question is, what do I put type into qosmic.pro to let qosmic know where to 
find
the files? 

Original comment by harlequi...@yahoo.com on 2 Jun 2009 at 5:38

GoogleCodeExporter commented 8 years ago
I got the xml libraries sussed out. Now I am having trouble with the lua files. 
I
installed lua without problems.

I am trying to install lua. I have put the extracted folder in /home/shawn/ and 
I
want to install it into /home/shawn. What do I put after the "install" command 
to
make this thing work?

Original comment by harlequi...@yahoo.com on 2 Jun 2009 at 6:27

GoogleCodeExporter commented 8 years ago
Here is my qosmic.pro file:

##############################################################################
##################### qmake tunables for qosmic application ##################

## Installation prefix on *nix/osx
PREFIX = /usr

## The translations are installed in SHARED/translations.
## Icons are installed in SHARED/icons.
SHARED = $$PREFIX/share

## Default number of pthreads to use in libflam3
THREADS = 2

## Add your non-english locale here to install the translations.
## Only a naive set of french translations is available.
#CONFIG += ts_fr

## Uncomment to install qosmic application icons
CONFIG += install_icons

## Add search paths for headers and libraries here using either pkg-config to
## find the include paths,
CONFIG += link_pkgconfig
PKGCONFIG = flam3 lua

## The directory that contains flam3-palettes.xml must be set here.  If your
## system has pkg-config this should find the palettes.
FLAM3_PALETTES = $$system(pkg-config --variable=datarootdir flam3)/flam3

### or uncomment these to set the paths by hand
#INCLUDEPATH += /usr/include/libxml2
#LIBS += -L/usr/lib/libxml2 -lflam3 -lm -ljpeg -lxml2 -llua

## Build style flags.  Adding debug enables more verbose logging.
CONFIG += release warn_off
#CONFIG += debug warn_on
#CONFIG += debug warn_off

### set cflags here if needed ###
#QMAKE_CFLAGS="-march=nocona -m64 -O2 -pipe"
#QMAKE_CXXFLAGS=$$QMAKE_CFLAGS

##############################################################################

Original comment by harlequi...@yahoo.com on 2 Jun 2009 at 8:07

GoogleCodeExporter commented 8 years ago
So nobody is going to help me on this?

Original comment by harlequi...@yahoo.com on 3 Jun 2009 at 5:04

GoogleCodeExporter commented 8 years ago
I've made an Ubuntu 9.04 amd64 package for Qosmic.  It's in the download area.  
You
can install it using dpkg after downloading.

Since it's not in a repository you will need to make sure the package 
dependencies are
satisfied instead of relying on the package manager to do this.  I'm working on
getting it into a repository, but that may take a little while.

Original comment by bit...@gmail.com on 3 Jun 2009 at 7:14

GoogleCodeExporter commented 8 years ago
so is it for 64 bit systems?

Original comment by harlequi...@yahoo.com on 3 Jun 2009 at 7:26

GoogleCodeExporter commented 8 years ago
This is really getting stupid. Two days on this post and nothing helpful?
I hope the program is better than the technical support by the people who wrote 
it.

Original comment by harlequi...@yahoo.com on 3 Jun 2009 at 9:52

GoogleCodeExporter commented 8 years ago
Yes it's for 64bit systems.

Your problem is not with the Qosmic.  Your problem is installing Qosmic on your 
Ubuntu
system.  This is a problem that lies between you, your system, and your system's
package manager.  I suggest you contact an Ubuntu developer to get support for
compiling any software from the source code on your Ubuntu system.

Original comment by bit...@gmail.com on 3 Jun 2009 at 10:43

GoogleCodeExporter commented 8 years ago

Original comment by bit...@gmail.com on 4 Jun 2009 at 1:04

GoogleCodeExporter commented 8 years ago
My problem is with trying to build qosmic and having to tell qosmic.pro where 
lua.pc 
is. If someone would just answer the question I asked then I would get out of 
your 
hair. Instead, I have everyone giving me suggestions for everything else.

Original comment by harlequi...@yahoo.com on 4 Jun 2009 at 12:43

GoogleCodeExporter commented 8 years ago
And why in the hell doesn't issue 10 show up on the list of issues?

Original comment by harlequi...@yahoo.com on 4 Jun 2009 at 12:46

GoogleCodeExporter commented 8 years ago
What, you aren't able to tell me the line of code to write in to make this 
build work?

Original comment by harlequi...@yahoo.com on 4 Jun 2009 at 5:53

GoogleCodeExporter commented 8 years ago
Issue 11 has been merged into this issue.

Original comment by bit...@gmail.com on 13 Jul 2009 at 7:29