Installing on OpenSuse

Ask for help regarding any technical issue or report any bug or OS independent issues.
Post Reply
i1abnrk
Newly Registered User
Posts: 1
Joined: 22 Jan 2013, 17:53

Installing on OpenSuse

Post 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!
Ablu
Manasource
Manasource
Posts: 288
Joined: 23 Jul 2011, 08:31
Location: Germany

Re: Installing on OpenSuse

Post 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 ;)
4144
Knight
Knight
Posts: 965
Joined: 03 Aug 2009, 11:57

Re: Installing on OpenSuse

Post 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.
Ablu
Manasource
Manasource
Posts: 288
Joined: 23 Jul 2011, 08:31
Location: Germany

Re: Installing on OpenSuse

Post by Ablu »

Post Reply