You are not logged in.
Hey im trying to run the installation script for Wolfenstein enemy territory but seems to be missing
some library libgtk-1.2,so probebly missing something else also but this is the erŕor that shows up right now 
Possible to download library packs for that?
Martin
I would love to be able to play games on Slitaz for example this game
http://regnumonline.com.ar/ Regnum Online sweet mmorpg
For sound it used OpenAL
Graphics it needs a OpenGL compatible driver
Installation script runs ok and it updates startmenu correctly.
and ofc True Combat Elite (Wolfenstein enemy territory modification)
http://www.splashdamage.com/wolfet#/
Installation of wolfenstein im still having some issues as noted above
so if any one want to help me get this running i would be eternal greatfull
Sincerally
Martin "Ztealmax"
How about The Mana World? It's an open source MMORPG. I have ManaPlus, the latest unofficial client, on my site @ http://www.trixarian.net/SliTaz
Offline
Trix: That game would be great too 
Been playing the games i mention on my windows box, and now im going all linux, and burning my old windows
but before i do that i really need it to work first hehe
sorry Martin, but I have to clear one thing - Wolfenstein enemy territory is on the place where I live only played by Nazis - and yes I am very happy to tell you, that this stupid game uses gtk1 and will never work in SliTaz
Offline
It is not only in your country kultex, in germany it was banned and even on Wikipedia ther talk about it nazis affiliation. In the game you can see Hilter, etc... Never in SliTaz and gtk1 is obsolet!
Go go antifa!
Offline
yea but im not playing wolfenstein, om playing true combat elite that is a mod.
it like counter-strike but works great with linux mac and windows, i do not play wolfenstein enemy territory, and this is not the regular "WOLFENSTEIN" that Raven software released 2009
http://www.ravensoft.com/games/wolfenstein/view-game/ thats the game that was banned
This game have never been banned and it was released by Splash Damage in 2003 i think:
http://www.splashdamage.com/wolfet#/screens_wet/001_tb.jpg
this is completely different, no nazi symbols in this game.
To clearify Im not a nazi, and would be nice if ppl checked exactly what game im talking about and not just asume and react.................................. 
And finally, got True Combat Elite working without installer on slitaz
installed it on Ubuntu without any problem and just made a copy of installation, but thats not really a solution and gtk1 is obsolet???? so no compatibilty will be present for older software? thats just stupid, never in slitaz?
"Hey im trying to run the installation script for Wolfenstein enemy territory but seems to be missing
some library libgtk-1.2,so probebly missing something else also but this is the erŕor that shows up right now
" -Martin
libgtk-1.2.so is just for graphical install, you can still install it using the terminal.
# su
# /home/user/place/to/the/.run
randomdude: thank you for a strait answer to the point of my question...
sorry Martin, I cannot smell, which mod of Wolfenstein you are playing, but when I just read Wolfenstein enemy territory, my alarm bells are ringing and thanks for clarifying.
I mean linux was all the time a territory, where you did not meet this perverse race. I know there was discussion some years ago about national socialistc gentoo alias Mussolinux, but I think they are just to stupid to create it.
But you never know, times might change and its all the time good to clarify
Thomas
Offline
Eh, I'll just point out that using a decrepit library that can potentially break other packages JUST so you can have a nice graphical installer for Wolf isn't worth it. I think that's pretty much what pankso meant by not supporting GTK 1.
Offline
Well other dists seems to manage it just thought it was weird we couldnt manage compatibility also.
anyways my goals i had i just have to wait for when i have more time to rewrite the installer to work with newer libs, and for now i have way to much going on at work and at home, but thank you for clearifying that its not supported...
Hello to all, to have RTCW working you need to open the teminal like root::
>>su
>>tazpkg -gi slitaz-toolchain
Then writes:
>> tazwok new-tree glib_old
>> tazwok new-tree gtk_old
>> cd /home/slitaz/wok
or
>> cd /home/slitazcoking//wok
Inside the wok it should have two directory glib_old and gtk_old; you go to the first of them:
>>cd glib_old
Now in it types:
>>touch receipt
And opens up with leafpad the recently created file:
>> leafpad receipt
And copy from your browser and paste in leafpad this:
# SliTaz package receipt.
PACKAGE="glib_old"
VERSION="1.2.10"
CATEGORY="x-window"
SHORT_DESC="Old C routines and wrapers."
MAINTAINER="Robertux"
DEPENDS="glibc-base"
BUILD_DEPENDS="gcc"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="http://ftp.gnome.org/pub/gnome/sources/glib/1.2/glib-$VERSION.tar.gz"
# Rules to configure and make the package.
compile_rules()
{
cd $src
./configure \
--prefix=/usr --enable-shared --disable-static \
--with-gnu-ld --infodir=/usr/share/info \
--mandir=/usr/share/man \
$CONFIGURE_ARGS &&
make && make DESTDIR=$PWD/_pkg install
}
# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
mkdir -p $fs/usr/lib
cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
}
You keep the file and you close the editor of text leafpad, you return to the terminal and salts of the directory where you were:
>>cd ..
>>mkdir glib_old-dev
>>mkdir gtk_old-dev
Now copies inside each one of the three empty directories their corresponding receipt:
# SliTaz package receipt.
PACKAGE="gtk_old"
VERSION="1.2.10"
CATEGORY="x-window"
SHORT_DESC="Old Graphics Tool Kit Library."
MAINTAINER="Robertux"
DEPENDS="glib_old xorg"
BUILD_DEPENDS="glib_old-dev xorg-dev xorg-xextproto"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WGET_URL="http://ftp.gnome.org/pub/gnome/sources/gtk+/1.2/gtk+-$VERSION.tar.gz"
# Rules to configure and make the package.
compile_rules()
{
cd $src
./configure \
--prefix=/usr --disable-static \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
$CONFIGURE_ARGS &&
make && make DESTDIR=$PWD/_pkg install
}
# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
mkdir -p $fs/usr/lib $fs/usr/share
cp -a $_pkg/usr/lib/*.s* $fs/usr/lib
cp -a $_pkg/usr/etc $fs
cp -a $_pkg/usr/share/themes $fs/usr/share
cp -a $_pkg/usr/share/locale $fs/usr/share
}
# SliTaz package receipt.
PACKAGE="gtk_old-dev"
VERSION="1.2.10"
CATEGORY="development"
SHORT_DESC="Old Graphics Tool Kit Library devel files."
MAINTAINER="Robertux"
WANTED="gtk_old"
TARBALL="$PACKAGE-$VERSION.tar.gz"
# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
mkdir -p $fs/usr/lib $fs/usr/share/
cp -a $_pkg/usr/bin $fs/usr
cp -a $_pkg/usr/include $fs/usr
cp -a $_pkg/usr/lib/*.la $fs/usr/lib
cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
cp -a $_pkg/usr/share $fs/usr
rm -f -r $fs/usr/share/locale
rm -f -r $fs/usr/share/themes
}
__________________________________________________________
# SliTaz package receipt.
PACKAGE="glib_old-dev"
VERSION="1.2.10"
CATEGORY="development"
SHORT_DESC="Old C routines and wrapers devel files."
MAINTAINER="Robertux"
WANTED="glib_old"
TARBALL="$PACKAGE-$VERSION.tar.gz"
# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
mkdir -p $fs/usr/lib/glib
cp -a $_pkg/usr/bin $fs/usr
cp -a $_pkg/usr/include $fs/usr
cp -a $_pkg/usr/lib/*.la $fs/usr/lib
cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
cp -a $_pkg/usr/lib/glib $fs/usr/lib
cp -a $_pkg/usr/share $fs/usr
}
You finally compile first glib that is a gtk dependence:
>>tazwok compile glib_old
>>tazwok genpkg glib_old
>>tazwok genpkg glib_old-dev
>>tazpkg install glib_old
>>tazpkg install glib_old-dev
Repeat the last steps but with gtk_old and gtk_old_dev and voillá !
Note: This library is something old, but it is perfectly functional; in my PC it is good me to run several other programs as xmms with native Linux support for mp3pro and avscan...
I forgot but it is possible that he/she needs, depending on the hardware of audio that he/she has this package et-sdl-sound-1.tazpkg; install it if their game is silent and another necessary dependence RTCW and all the variants that use its motor to run is: libstdc++compat-2.1.0-2.96-0.83.tazpkg
[ Generated in 0.022 seconds, 7 queries executed - Memory usage: 1.56 MiB (Peak: 1.77 MiB) ]