Page 1 of 1

Installing on OpenSuse

Posted: 22 Jan 2013, 18:01
by i1abnrk
I installed Mana on OpenSuse 11.4. Here is a synopsis of my experience.
First I cloned the Git repo and installed RPMs of all dependencies.
Unfortunately, none of the RPMs for SDL install the libraries where cmake looks for them. :roll:
I fixed this by downloading the SDL tarballs, untarring them and doing

Code: Select all

./autoconf.sh && ./config && make && sudo make install
for each one.
After this extra work, cmake executed perfectly.
See you all soon!

Re: Installing on OpenSuse

Posted: 22 Jan 2013, 18:08
by Ablu
It should work if you install this via your package manager:

Code: Select all

:  SDL_gfx-devel
:  SDL_image-devel
:  SDL_mixer-devel
:  SDL_net-devel
:  SDL_ttf-devel
:  cmake
:  gcc-c++
:  gettext
:  guichan-devel
:  libcurl-devel
:  libpng-devel
:  physfs-devel
:  libxml
There is no need to compile SDL by hand and i strongly advise not to do it.
Just make sure you have all -devel packages installed

Regards
Ablu

EDIT: I only copied this over from my specfile for building for opensuse. I think packages like gcc-c++ and cmake are already installed ;)

Re: Installing on OpenSuse

Posted: 22 Jan 2013, 19:38
by 4144
i1abnrk wrote:I installed Mana on OpenSuse 11.4. Here is a synopsis of my experience.
First I cloned the Git repo and installed RPMs of all dependencies.
Unfortunately, none of the RPMs for SDL install the libraries where cmake looks for them. :roll:
I fixed this by downloading the SDL tarballs, untarring them and doing

Code: Select all

./autoconf.sh && ./config && make && sudo make install
for each one.
After this extra work, cmake executed perfectly.
See you all soon!
If you dont want compile from sources you can use bit other client from repository:
http://download.opensuse.org/repositori ... naPlus.ymp

Also if want compile from sources here used automake and should work without any tarball extraction.

Re: Installing on OpenSuse

Posted: 22 Jan 2013, 19:45
by Ablu