pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/xevil Initial import of xevil from pkgsrc-wip, p...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9c4b5b414713
branches:  trunk
changeset: 488191:9c4b5b414713
user:      xtraeme <xtraeme%pkgsrc.org@localhost>
date:      Tue Jan 25 15:59:27 2005 +0000

description:
Initial import of xevil from pkgsrc-wip, packaged by Soren Jacobsen.

XEvil is a 3rd person, side-view, fast-action, kill-them-before-they-kill-you
game. Fight against either computer-controlled enemies, or another player.

You sinned in life. And now you must pay. Satan pits the recently deceased
against each other to fight for rank in Hell. Your skill determines your fate
for all eternity. This contest is known as XEvil.

diffstat:

 games/xevil/DESCR            |  11 ++++++-----
 games/xevil/PLIST            |  10 ++++++++--
 games/xevil/patches/patch-ad |  31 ++++++++++++-------------------
 games/xevil/patches/patch-ae |  32 ++++++++++----------------------
 games/xevil/patches/patch-af |  28 ++++++++++------------------
 games/xevil/patches/patch-ag |  40 ++++++++++++++++++++++++++++++++++++++++
 games/xevil/patches/patch-ah |  14 ++++++++++++++
 games/xevil/patches/patch-ai |  17 +++++++++++++++++
 games/xevil/patches/patch-aj |  14 ++++++++++++++
 games/xevil/patches/patch-ak |  18 ++++++++++++++++++
 games/xevil/patches/patch-al |  14 ++++++++++++++
 games/xevil/patches/patch-am |  13 +++++++++++++
 games/xevil/patches/patch-an |  19 +++++++++++++++++++
 games/xevil/patches/patch-ao |  20 ++++++++++++++++++++
 games/xevil/patches/patch-ap |  14 ++++++++++++++
 games/xevil/patches/patch-aq |  14 ++++++++++++++
 games/xevil/patches/patch-ar |  14 ++++++++++++++
 games/xevil/patches/patch-as |  14 ++++++++++++++
 games/xevil/patches/patch-at |  14 ++++++++++++++
 19 files changed, 285 insertions(+), 66 deletions(-)

diffs (truncated from 441 to 300 lines):

diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/DESCR
--- a/games/xevil/DESCR Tue Jan 25 15:59:14 2005 +0000
+++ b/games/xevil/DESCR Tue Jan 25 15:59:27 2005 +0000
@@ -1,5 +1,6 @@
-Death, kill, maim, extreme violence. XEvil is a side-view,
-fast-action, kill everything game. Play is against human or computer
-players. XEvil is keyboard controlled with configurable controls. A
-game can be played on one or more X workstations (over the net by
-opening multiple X displays).
+XEvil is a 3rd person, side-view, fast-action, kill-them-before-they-kill-you
+game. Fight against either computer-controlled enemies, or another player.
+
+You sinned in life. And now you must pay. Satan pits the recently deceased
+against each other to fight for rank in Hell. Your skill determines your fate
+for all eternity. This contest is known as XEvil.
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/PLIST
--- a/games/xevil/PLIST Tue Jan 25 15:59:14 2005 +0000
+++ b/games/xevil/PLIST Tue Jan 25 15:59:27 2005 +0000
@@ -1,3 +1,9 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:56:43 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
 bin/xevil
-man/man6/xevil.6
+share/doc/xevil/UNIXSetControls.gif
+share/doc/xevil/UNIXShowControls.gif
+share/doc/xevil/UNIXmenu.gif
+share/doc/xevil/instructions.html
+share/doc/xevil/keysdlg.gif
+share/doc/xevil/optionsdlg.gif
+@dirrm share/doc/xevil
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-ad
--- a/games/xevil/patches/patch-ad      Tue Jan 25 15:59:14 2005 +0000
+++ b/games/xevil/patches/patch-ad      Tue Jan 25 15:59:27 2005 +0000
@@ -1,21 +1,14 @@
-$NetBSD: patch-ad,v 1.1 2004/03/26 01:34:08 kristerw Exp $
+$NetBSD: patch-ad,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
 
---- locator.C.orig     Fri Mar 26 02:20:24 2004
-+++ locator.C  Fri Mar 26 02:21:09 2004
-@@ -22,6 +22,7 @@
-     hardts%alum.mit.edu@localhost
-     http://graphics.lcs.mit.edu/~hardts/xevil.html
- */
+--- cmn/area.cpp.orig  2003-11-22 10:53:19.000000000 -0800
++++ cmn/area.cpp       2003-11-22 10:53:47.000000000 -0800
+@@ -34,7 +34,8 @@
+ extern "C" {
+ #include <limits.h> // For INT_MAX
+ }
+-#include <iostream.h>
++#include <iostream>
 +using namespace std;
- 
- #ifndef NO_PRAGMAS
- #pragma implementation "locator.h"
-@@ -210,7 +211,7 @@
- void Locator::get_nearby(PhysicalP nearby[OL_NEARBY_MAX],int &nitems,
-                        PhysicalP p,int radius)
- {
--  int glocRadius = (int)ceil(radius / OL_GRID_SIZE_MAX);
-+  int glocRadius = (int)ceil((float)(radius / OL_GRID_SIZE_MAX));
-   int radius_2 = radius * radius;
-   nitems = 0;
- 
+ #include "utils.h"
+ #include "coord.h"
+ #include "area.h"
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-ae
--- a/games/xevil/patches/patch-ae      Tue Jan 25 15:59:14 2005 +0000
+++ b/games/xevil/patches/patch-ae      Tue Jan 25 15:59:27 2005 +0000
@@ -1,29 +1,17 @@
-$NetBSD: patch-ae,v 1.1 2004/03/26 01:34:08 kristerw Exp $
+$NetBSD: patch-ae,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
 
---- physical.C.orig    Fri Mar 26 02:15:18 2004
-+++ physical.C Fri Mar 26 02:16:06 2004
-@@ -22,6 +22,7 @@
-     hardts%alum.mit.edu@localhost
-     http://graphics.lcs.mit.edu/~hardts/xevil.html
- */
-+using namespace std;
+--- cmn/role.cpp.orig  2000-01-19 12:54:34.000000000 -0800
++++ cmn/role.cpp       2003-11-22 10:55:47.000000000 -0800
+@@ -29,9 +29,10 @@
  
- #ifndef NO_PRAGMAS
- #pragma implementation "physical.h"
-@@ -29,13 +30,14 @@
+ #include "stdafx.h"
  
- 
- // Include Files
 -#include <iostream.h>
 +#include <iostream>
- 
- extern "C" {
- #include <string.h>
- }
- 
++using namespace std;
+ #if X11
 -#include <strstream.h>
 +#include <strstream>
-+using std::ostrstream;
- 
- #include "utils.h"
- #include "coord.h"
+ #include <time.h>
+ #endif
+ #if WIN32
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-af
--- a/games/xevil/patches/patch-af      Tue Jan 25 15:59:14 2005 +0000
+++ b/games/xevil/patches/patch-af      Tue Jan 25 15:59:27 2005 +0000
@@ -1,22 +1,14 @@
-$NetBSD: patch-af,v 1.1 2004/03/26 01:34:08 kristerw Exp $
+$NetBSD: patch-af,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
 
---- ui.C.orig  Fri Mar 26 02:21:44 2004
-+++ ui.C       Fri Mar 26 02:22:21 2004
-@@ -23,6 +23,7 @@
-     hardts%alum.mit.edu@localhost
-     http://graphics.lcs.mit.edu/~hardts/xevil.html
- */
-+using namespace std;
+--- cmn/game_style.h.orig      2003-11-22 10:56:44.000000000 -0800
++++ cmn/game_style.h   2003-11-22 10:56:59.000000000 -0800
+@@ -31,7 +31,8 @@
+ #endif 
  
- #ifndef NO_PRAGMAS
- #pragma implementation "ui.h"
-@@ -42,7 +43,8 @@
- }
- 
- #include <iostream.h>
+ #if X11
 -#include <strstream.h>
 +#include <strstream>
-+using std::ostrstream;
- 
- #include "coord.h"
- #include "ui.h"
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-ag      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,40 @@
+$NetBSD: patch-ag,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/utils.cpp.orig 2003-11-22 11:14:12.000000000 -0800
++++ cmn/utils.cpp      2003-11-22 11:15:38.000000000 -0800
+@@ -30,18 +30,20 @@
+ 
+ // Include Files
+ #include "stdafx.h"
+-#include <iostream.h>
+-#include <limits.h>
+-#include <string.h>
+-#include <ctype.h>
+-#include <fstream.h>
++#include <iostream>
++#include <climits>
++#include <cstring>
++#include <cctype>
++#include <fstream>
+ #if WIN32
+ #include <strstrea.h>
+ #endif
+ #if X11
+-#include <strstream.h>
++#include <strstream>
+ #endif
+ 
++using namespace std;
++
+ #ifdef WIN32
+ // For file manipulation routines.
+ #include <direct.h>
+@@ -475,7 +477,7 @@
+ #endif
+ 
+ 
+-#define UNAME_PATH "@UNAME@"
++#define UNAME_PATH "/usr/bin/uname"
+ 
+ #ifdef X11
+   FILE* fp = popen(UNAME_PATH " -a","r");
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-ah
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-ah      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-ah,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/actual.cpp.orig        2000-01-19 12:54:36.000000000 -0800
++++ cmn/actual.cpp     2003-11-22 11:18:19.000000000 -0800
+@@ -32,7 +32,8 @@
+ 
+ // Include Files
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-ai
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-ai      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-ai,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/xetp.cpp.orig  2000-01-19 12:54:30.000000000 -0800
++++ cmn/xetp.cpp       2003-11-22 11:24:52.000000000 -0800
+@@ -29,9 +29,10 @@
+ 
+ #include "stdafx.h"
+ 
+-#include <iostream.h>
++#include <iostream>
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-aj
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-aj      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-aj,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/game.cpp.orig  2003-11-22 11:25:45.000000000 -0800
++++ cmn/game.cpp       2003-11-22 11:26:04.000000000 -0800
+@@ -34,7 +34,8 @@
+ }
+ 
+ #if X11
+-#include <strstream.h>
++#include <strstream>
++using namespace std;
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-ak
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-ak      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-ak,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/physical.cpp.orig      2000-01-19 20:38:14.000000000 -0800
++++ cmn/physical.cpp   2003-11-22 11:29:34.000000000 -0800
+@@ -33,10 +33,11 @@
+ // Include Files
+ #include "xdata.h"
+ #include "physical.h"
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #if X11
+-#include <strstream.h>
++#include <strstream>
+ #endif
+ #if WIN32
+ #include <strstrea.h>
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-al
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-al      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-al,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/locator.h.orig 2003-11-22 11:30:48.000000000 -0800
++++ cmn/locator.h      2003-11-22 11:31:07.000000000 -0800
+@@ -47,7 +47,8 @@
+ 
+ 
+ // Include Files
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "utils.h"
+ #include "coord.h"
diff -r 4905c5122fe3 -r 9c4b5b414713 games/xevil/patches/patch-am
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/xevil/patches/patch-am      Tue Jan 25 15:59:27 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-am,v 1.1.1.1 2005/01/25 15:59:27 xtraeme Exp $
+
+--- cmn/physical.h.orig        2003-11-22 11:34:53.000000000 -0800
++++ cmn/physical.h     2003-11-22 11:35:29.000000000 -0800
+@@ -93,7 +93,7 @@
+    CLASSNAME::CLASSNAME(InStreamP in,const CLASSNAME ## Context &cx, \
+                          CLASSNAME ## Xdata &x_data, \
+                          WorldP w,LocatorP l) \
+-   : PARENT(in,cx. ## parent ## Context,x_data,w,l) 



Home | Main Index | Thread Index | Old Index