Page 1 of 1

install gccg in Linux Ubuntu 11.10

Posted: Sat Oct 29, 2011 5:09 pm
by zirilan
Hello,

I have tried to install gccg in Ubuntu 11.10.
Installing ...
SDL_1.2.14, SDL_ttf.2.0.10, SDL_image-1.2.10, SDL_mixer-1.2.11, freetype-2.1.10 worked but while installing SDL_net-1.2.7 it throw an error of missing shared lib. The error asked me to install GUIlib-1.2.1 and while installing this another error appeared "./libtool: line 1282: g++: command not found".

Did someone ran into that error while installing gccg in Ubuntu yet? Any hints?

Re: install gccg in Linux Ubuntu 11.10

Posted: Sun Oct 30, 2011 11:39 pm
by zirilan
Thanks to domse, he told me to install the packages using "synaptic" and not with the "software-center", it is running now.

Re: install gccg in Linux Ubuntu 11.10

Posted: Fri Nov 18, 2011 2:34 am
by zirilan
How to use DC cards in linux?
1st I opened a new terminal and installed subversion

Code: Select all

sudo apt-get install subversion
2nd I created the core folder and changed into that folder

Code: Select all

mkdir core
cd core
3rd I used the svn command to get the data

Code: Select all

svn co https://gccg.svn.sourceforge.net/svnroot/gccg/core
4th I did the same with the metw folder

Code: Select all

cd ..
mkdir metw
cd metw
svn co https://gccg.servebeer.com/ccg/metw
5th accected the certification
now I got two folders core and metw but once I wanna run Metw

Code: Select all

cd ..
cd core
./Metw
it shows me the following:

Code: Select all

You must install package containing program binaries, for example 'linux-i386'.
What else do I need to set up to get it run?

Re: install gccg in Linux Ubuntu 11.10

Posted: Fri Nov 18, 2011 8:37 pm
by wigy
Hmm, aren't those mkdir's and cd's ruining the thing? You'd end up with core/core and metw/metw.

Just

mkdir gccg
cd gccg

end then start 'svn'ing out parts you want.

Re: install gccg in Linux Ubuntu 11.10

Posted: Fri Nov 18, 2011 10:34 pm
by zirilan
wigy wrote:Hmm, aren't those mkdir's and cd's ruining the thing? You'd end up with core/core and metw/metw.

Just

mkdir gccg
cd gccg

end then start 'svn'ing out parts you want.
Yes, I ended up in double folders core/core and metw/metw that way.
Thanks to wigy the following worked for me installing the DCs.

Code: Select all

mkdir gccg
cd gccg
sudo apt-get install subversion
svn co https://gccg.svn.sourceforge.net/svnroot/gccg/core
svn co https://gccg.servebeer.com/ccg/metw
cd core
make all
./Metw
If you got an account allready you can start with

Code: Select all

./Metw --user IhsanShade
(IhsanShade) is my username for example

Or you can edit your Metw script with

Code: Select all

gedit Metw
and add your username there in the last line

Code: Select all

#!/bin/bash
. tools/launch_client
gccg $* --server gccg.councilofelrond.org --user IhsanShade metw.xml

Re: install gccg in Linux Ubuntu 11.10

Posted: Sat Nov 19, 2011 2:12 pm
by domse
Maybe it is important to note, that when changing to the new core release, I had to install the development versions of the SDL libraries, while before normal libraries were sufficient.