You are not logged in.

#1 2004-09-22 20:31:33

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Wörms of Prey

http://wormsofprey.org/

anyone tried?


The impossible missions are the only ones which succeed.

Offline

#2 2004-09-22 21:00:55

Abaddon
Member
From: Poland
Registered: 2004-05-03
Posts: 249

Re: Wörms of Prey

Wormux looks better:

http://www.wormux.org/en/


Gnome - The weakest link!
Linux, *not* GNU/Linux!

Offline

#3 2004-09-22 22:51:07

zeppelin
Member
From: Athens, Greece
Registered: 2004-03-05
Posts: 807
Website

Re: Wörms of Prey

Abaddon wrote:

Wormux looks better:
http://www.wormux.org/en/

I like French People. I like gna.org, it has so many clever people there..

the offer a installer that everything is static:
http://download.gna.org/wormux/wormux-s … .0.tar.bz2

why should an AL dev bother?

Offline

#4 2004-09-22 23:03:37

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

Abaddon wrote:

Wormux looks better:

http://www.wormux.org/en/

# $Id: PKGBUILD,v 1.2 2004/04/19 06:21:17 dorphell Exp $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>

pkgname=wormux
pkgver=0.4.0
pkgrel=1
pkgdesc="Wormux is a clone of the worms game"
url="http://www.wormux.org/en/"
depends=('libxml++' 'clanlib' 'gettext')
source=(http://download.gna.org/wormux/$pkgname-src-$pkgver.tgz)


build() {
  cd $startdir/src/$pkgname/src
  make cleanall && make release || return 1
  make DIR=$startdir/pkg/usr install
}

only trouble: it needs clanlib 0.6 and we have 0.7


The impossible missions are the only ones which succeed.

Offline

#5 2004-09-23 16:18:11

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

pohlt wrote:
Abaddon wrote:

Wormux looks better:

http://www.wormux.org/en/

That's right, but the games are totally different. While
Wormux is turn-based, WoP is real-time. Give it a try,
you won't regret it (if you have time to waste that is... big_smile )

Cheers,
Tom (one of the WoP guys)

i tried, but there were some trouble:

the PKGBUILD:

# $Id: PKGBUILD,v 1.2 2004/04/19 06:21:17 dorphell Exp $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>

pkgname=wop
pkgver=0.1a
pkgverdate=2004-09-22
pkgrel=1
pkgdesc="Wörms of Prey is the new and free real-time Worms game for Linux and Windows similar to Liero, Liero AI, Liero Extreme, Yet Another Liero Clone, NiL, and Wurmz!"
url="http://wormsofprey.org"
depends=('sdl>=1.2' 'sdl_net>=1.2.5' 'sdl_image>=1.2' 'sdl_mixer>=1.2' 'sdl_ttf>=2.0')
source=($url/download/$pkgname-$pkgverdate.tar.bz2 
        $url/download/${pkgname}data-$pkgverdate.tar.bz2)


build() {
  cd $startdir/src/$pkgname-$pkgverdate
  make || return 1
  make DESTDIR=$startdir/pkg install

  mkdir -p $startdir/pkg/usr/share/$pkgname/
  cp -r $startdir/src/${pkgname}data-$pkgverdate/* $startdir/pkg/usr/share/$pkgname/
}

the trouble:

g++ -Wall -Wparentheses -fno-exceptions -O3 -DDBG_LEVEL=4 -DLOG_LEVEL=4 -DUSE_SDL -DNEW=new(std::nothrow) -DDELETE=delete(std::nothrow) -I../sdlwidgets -g -I/usr/include/SDL -D_REENTRANT  -c attachableobject.cpp -o attachableobject.o
In file included from attachableobject.hpp:9,
                 from attachableobject.cpp:3:
pvector_t.hpp: In member function `bool PointerVector<T>::insert(PointerVector<T>&, int, bool)':
pvector_t.hpp:462: error: there are no arguments to `PVEC_FN_ERROR' that depend on a template parameter, so a declaration of `PVEC_FN_ERROR' must be available
pvector_t.hpp:462: error: (if you use `-fpermissive', G++ will accept your code, but allowing the use of an undeclared name is deprecated)
make[1]: *** [attachableobject.o] Error 1
make[1]: Leaving directory `/home/damir/cvsARCH/extra/games/wop/src/wop-2004-09-22/src'
make: *** [all] Error 2
==> ERROR: Build Failed.  Aborting...

and i also am confused, if the programm will detect the data under /usr/share/wop/ automatically, or we maybe need to hack something


The impossible missions are the only ones which succeed.

Offline

#6 2004-09-23 16:26:33

Dreameen
Member
From: Poland
Registered: 2004-09-06
Posts: 252

Re: Wörms of Prey

If anyone could make a package with Worms of Prey it would be fantastic. I've tried installing this liero clone but it's not possible with the newest gcc*starts wondering why he upgraded to the latest gcc anyway* lol

Offline

#7 2004-09-23 19:02:46

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

pohlt wrote:

the trouble:

g++ -Wall -Wparentheses -fno-exceptions -O3 -DDBG_LEVEL=4 -DLOG_LEVEL=4 -DUSE_SDL -DNEW=new(std::nothrow) -DDELETE=delete(std::nothrow) -I../sdlwidgets -g -I/usr/include/SDL -D_REENTRANT  -c attachableobject.cpp -o attachableobject.o
In file included from attachableobject.hpp:9,
                 from attachableobject.cpp:3:
pvector_t.hpp: In member function `bool PointerVector<T>::insert(PointerVector<T>&, int, bool)':
pvector_t.hpp:462: error: there are no arguments to `PVEC_FN_ERROR' that depend on a template parameter, so a declaration of `PVEC_FN_ERROR' must be available
pvector_t.hpp:462: error: (if you use `-fpermissive', G++ will accept your code, but allowing the use of an undeclared name is deprecated)
make[1]: *** [attachableobject.o] Error 1
make[1]: Leaving directory `/home/damir/cvsARCH/extra/games/wop/src/wop-2004-09-22/src'
make: *** [all] Error 2
==> ERROR: Build Failed.  Aborting...

What gcc version did you try? We have used 3.3.4 so far.

3.4.2 (ArchLinux CURRENT) ... the "but allowing the use of an undeclared name is deprecated" is typical for 3.4.X on "old" code

pohlt wrote:

and i also am confused, if the programm will detect the data under /usr/share/wop/ automatically, or we maybe need to hack something

We could add a check for a system-wide standard configuration file in /etc/woprc which
points to any location you would prefer, e.g., /usr/share/wop/ . Would that help?
Right now the program only looks for configurations in ./.woprc and ~/.woprc .

yes, this would be ok ... but i cannot imagine another place to be logical than /usr/share/$pkgname/, so wop can assume that the files are in /usr/share/wop/ if no variable is set --- would be also a nice solution


The impossible missions are the only ones which succeed.

Offline

#8 2004-09-24 14:01:55

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: Wörms of Prey

i appreciate it as well - esp. if i can play on a 56k modem without getting kicked!

Offline

#9 2004-09-24 14:06:19

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

pohlt wrote:

The compile error really is an error in the code (a renamed macro). Why didn't 3.3.4 complain? Anyway, we fixed it and it still compiles... wink
Concerning the default search path for .woprc: We have to postpone this issue until Gismo (another WoP developer) is back from holiday. That's his part of the code and I don't want to mess things up...

I really appreciate your help getting WoP to work on ArchLinux! Thanks!

cool - you're welcome

awaiting the next release of wop to compile it successfully and try it out ;-)


The impossible missions are the only ones which succeed.

Offline

#10 2004-09-25 03:51:53

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Wörms of Prey

dp wrote:

only trouble: it needs clanlib 0.6 and we have 0.7

Clanlib 0.6 doesn't compile.  Does someone have a working PKGBUILD?

My PKGBUILD:

pkgname=clanlib0.6
pkgver=0.6.5
pkgrel=1
source=(ClanLib-0.6.5-1.tar.gz)

build() {
  cd $startdir/src/ClanLib-0.6.5
  ./configure --prefix=/usr
  make || return 1
  make prefix=$startdir/pkg/usr install
}

The problem:

Compile command .s = as
Compiling Sources/Core/System/Unix/init_linux.cpp
In file included from Sources/Core/System/Unix/init_linux.cpp:27:
Sources/Core/System/Unix/appconf.h:621: error: class FileConfig::ConfigGroup redeclared with different access
make: *** [Libs/Intermediate/init_linux.o] Error 1
==> ERROR: Build Failed.  Aborting...

Offline

#11 2004-10-05 07:37:46

zeppelin
Member
From: Athens, Greece
Registered: 2004-03-05
Posts: 807
Website

Re: Wörms of Prey

lcasassa wrote:

hi,
is there a package of clanlib 0.6.x? I'm trying to make a package of
pingus (clone of lemmings) among other games. but all them demands the
version 0.6.x and pacman -S clanlib has version 0.7.8..  when I'm
compiling version 0.6.5 an ugly error comes out.. the same error in
the last msg

thanks

again sorry for saying the same all the time.
why make a pkg for pingus? Pingus HAS a WORKING OFFICIAL installer. [i know it works I 've used it]
afterall clanlib 0.6 is OLD

Offline

#12 2004-10-05 12:55:33

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

i wonder when the other wop coder comes back from holidays - i want to try this game in arch and now i'm waiting for the next release


The impossible missions are the only ones which succeed.

Offline

#13 2004-10-08 23:26:04

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

tried to compile the latest 0.1a3:

# $Id: PKGBUILD,v 1.2 2004/04/19 06:21:17 dorphell Exp $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>

pkgname=wop
pkgver=0.1a2
pkgverdate=2004-10-07
dataverdate=2004-09-22
pkgrel=1
pkgdesc="Wörms of Prey is the new and free real-time Worms game for Linux and Windows similar to Liero, Liero AI, Liero Extreme, Yet Another Liero Clone, NiL, and Wurmz!"
url="http://wormsofprey.org"
depends=('sdl>=1.2' 'sdl_net>=1.2.5' 'sdl_image>=1.2' 'sdl_mixer>=1.2' 'sdl_ttf>=2.0')
source=($url/download/$pkgname-$pkgverdate.tar.bz2 
        $url/download/${pkgname}data-$dataverdate.tar.bz2)


build() {
  cd $startdir/src/$pkgname-$pkgverdate
  make || return 1
  make DESTDIR=$startdir/pkg install

  mkdir -p $startdir/pkg/usr/share/$pkgname/
  cp -r $startdir/src/${pkgname}data-$dataverdate/* $startdir/pkg/usr/share/$pkgname/
}
...
g++ -Wall -Wparentheses -fno-exceptions -O3 -DDBG_LEVEL=4 -DLOG_LEVEL=4 -DUSE_SDL -DNEW=new(std::nothrow) -DDELETE=delete(std::nothrow) -I../sdlwidgets -g -I/usr/include/SDL -D_REENTRANT  -c client.cpp -o client.o
In file included from client.cpp:19:
spritesequence.cpp: In member function `void SpriteSequence<T>::setHotSpot(int, int)':
spritesequence.cpp:52: error: there are no arguments to `getSize' that depend on a template parameter, so a declaration of `getSize' must be available
spritesequence.cpp:52: error: (if you use `-fpermissive', G++ will accept your code, but allowing the use of an undeclared name is deprecated)
spritesequence.cpp:53: error: `m_Data' undeclared (first use this function)
spritesequence.cpp:53: error: (Each undeclared identifier is reported only once for each function it appears in.)
...
spriteset.cpp:313: error: `m_Data' undeclared (first use this function)
spriteset.cpp: In member function `bool SpriteSet<T>::checkTemplate() const':
spriteset.cpp:535: error: there are no arguments to `getSize' that depend on a templateparameter, so a declaration of `getSize' must be available
spriteset.cpp:538: error: there are no arguments to `getSize' that depend on a templateparameter, so a declaration of `getSize' must be available
spriteset.cpp:544: error: there are no arguments to `getSize' that depend on a templateparameter, so a declaration of `getSize' must be available
spriteset.cpp:545: error: `m_Data' undeclared (first use this function)
In file included from client.cpp:21:
wopsprites.cpp: In member function `const SpriteSet<T>* WopSprites<T>::getSet(int) const':
wopsprites.cpp:70: error: `m_Data' undeclared (first use this function)
wopsprites.cpp: In member function `const SpriteSet<T>* WopSprites<T>::getColorInstance(int, int) const':
wopsprites.cpp:166: error: `m_Data' undeclared (first use this function)
wopsprites.cpp: In member function `const SpriteSet<T>* WopSprites<T>::getColorInstance(int, const Uint32*, bool)':
wopsprites.cpp:201: error: `m_Data' undeclared (first use this function)
wopsprites.cpp: In member function `bool WopSprites<T>::load(const char*, const char*, ProgressLog*)':
wopsprites.cpp:431: error: `m_Data' undeclared (first use this function)
make[1]: *** [client.o] Error 1
make[1]: Leaving directory `/home/damir/cvsARCH/extra/games/wop/src/wop-2004-10-07/src'
make: *** [all] Error 2
==> ERROR: Build Failed.  Aborting...

:-(


The impossible missions are the only ones which succeed.

Offline

#14 2005-01-27 23:18:08

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Wörms of Prey

Wörms of Prey
News
01/24/05     New release: Wörms of Prey v0.2

I will try to make a package if I have time.

Offline

#15 2005-01-28 11:09:54

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: Wörms of Prey

do these guys build now?

Offline

#16 2005-01-28 15:11:29

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Wörms of Prey

dibblethewrecker wrote:

do these guys build now?

Wörms of Prey  0.2 doesn't build. I get same (or similar) error than dp got for the 0.1a3 version.  Maybe someone should contact the dev. This error is quite old and not corrected in the newest version.

Offline

#17 2005-01-29 07:14:38

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: Wörms of Prey

joy - why can't everyone develop on the latest versions  tongue

Offline

#18 2005-01-29 08:38:03

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Wörms of Prey

I've got it to built (with a minor patch) with the Intel C compiler but it crashes when I start the client:

*** glibc detected *** double free or corruption (out): 0xbfe9ed58 ***
Abort

I don't know if it's due to my patch, my system or another bug in wop.  If someone feels like trying it on its machine, let me know. I will make the package available.

Offline

#19 2005-01-31 23:22:16

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Wörms of Prey

Could you post or put online the patch?

Thanks!

Offline

#20 2005-02-01 05:37:07

Billy Anachronism
Member
Registered: 2004-11-16
Posts: 13

Re: Wörms of Prey

i started downloading the package but now the connection is refused?
Can we get it on unstable or testing or something?

Thanks

Offline

#21 2005-02-01 08:02:36

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: Wörms of Prey

Billy Anachronism wrote:

i started downloading the package but now the connection is refused?
Can we get it on unstable or testing or something?

Thanks

what is needed is the patch


The impossible missions are the only ones which succeed.

Offline

#22 2005-02-05 01:59:40

Cotton
Member
From: Cornwall, UK
Registered: 2004-09-17
Posts: 568

Re: Wörms of Prey

Still not there yet.  What am I doing wrong?  I'm sure I have untarred wop-2005-01-28 to the correct directory.


==> Making package: wop  (Sat Feb  5 01:57:43 GMT 2005)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
==>     Using local copy of wop-0.2-src.tar.bz2
==>     Using local copy of wopdata-2005-01-24.tar.bz2
==> ERROR: wop-2005-01-28 was not found in the build directory and is not a proper URL.
==> Aborting...

Offline

#23 2005-02-05 06:46:09

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Wörms of Prey

If you're using Macfly's PKGBUILD, leave the patch untarred and bzipped in the build directory.  The code will be patched automatically.

Offline

Board footer

Powered by FluxBB