summaryrefslogtreecommitdiff
path: root/games/xpacman
diff options
context:
space:
mode:
Diffstat (limited to 'games/xpacman')
-rw-r--r--games/xpacman/Makefile32
-rw-r--r--games/xpacman/distinfo2
-rw-r--r--games/xpacman/files/patch-board.cc10
-rw-r--r--games/xpacman/files/patch-c7
-rw-r--r--games/xpacman/files/patch-d11
-rw-r--r--games/xpacman/files/patch-e11
-rw-r--r--games/xpacman/files/patch-f13
-rw-r--r--games/xpacman/files/patch-pac.cc11
-rw-r--r--games/xpacman/files/patch-pac.h15
-rw-r--r--games/xpacman/files/patch-sizes.h17
-rw-r--r--games/xpacman/pkg-descr8
11 files changed, 0 insertions, 137 deletions
diff --git a/games/xpacman/Makefile b/games/xpacman/Makefile
deleted file mode 100644
index b4b3fb9ae0a4..000000000000
--- a/games/xpacman/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Created by: joerg
-# $FreeBSD$
-
-PORTNAME= xpacman
-PORTVERSION= 1.002
-CATEGORIES= games
-MASTER_SITES= ftp://ftp.nvg.unit.no/pub/pacman/
-DISTNAME= pacman-1_002
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Old action game
-
-LICENSE= GPLv2
-
-BROKEN= unfetchable
-DEPRECATED= Unfetchable, unmaintained
-EXPIRATION_DATE= 2019-10-16
-
-RUN_DEPENDS+= ${LOCALBASE}/share/fonts/misc/9x18.pcf.gz:x11-fonts/font-misc-misc
-
-USES= compiler
-
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS+=--enable-doublesize
-# Build ignores CFLAGS, CXXFLAGS
-CPPFLAGS+= -I${LOCALBASE}/include ${CPPFLAGS_${CHOSEN_COMPILER_TYPE}}
-CPPFLAGS_clang= -Wno-c++11-narrowing
-LDFLAGS+= -L${LOCALBASE}/lib
-USE_XORG= x11 xext
-PLIST_FILES= bin/pacman
-
-.include <bsd.port.mk>
diff --git a/games/xpacman/distinfo b/games/xpacman/distinfo
deleted file mode 100644
index b82d0c16462c..000000000000
--- a/games/xpacman/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (pacman-1_002.tar.gz) = c033268ab520937c867a8ff6f989a4dbe5d4bd38c23191db29ec39d8e807d622
-SIZE (pacman-1_002.tar.gz) = 86822
diff --git a/games/xpacman/files/patch-board.cc b/games/xpacman/files/patch-board.cc
deleted file mode 100644
index 84096693f508..000000000000
--- a/games/xpacman/files/patch-board.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- board.cc.orig Tue Jul 18 11:03:22 1995
-+++ board.cc Mon Mar 10 20:52:04 2008
-@@ -527,6 +527,7 @@
- void Board::sprite(DynamicElement *g) { //let dynamicelement be a sprite
- liststruct *temp=0,*last=0; //resets to null
- liststruct *ny=new liststruct; //get a new liststruct
-+ ny->next = 0;
- ny->g=g; //get pointer to element
- ny->gid=g->getgid(); //get it's grafical id
- g->getxy(&ny->x,&ny->y); //and coordinates
diff --git a/games/xpacman/files/patch-c b/games/xpacman/files/patch-c
deleted file mode 100644
index 6470ce3e9c33..000000000000
--- a/games/xpacman/files/patch-c
+++ /dev/null
@@ -1,7 +0,0 @@
---- gamedata.cc.orig Sun Jan 9 01:47:52 2000
-+++ gamedata.cc Sun Jan 9 01:48:11 2000
-@@ -1,3 +1,4 @@
-+#include <stdlib.h>
- #include"gamedata.h"
- #include"board.h"
- #include"pac.h"
diff --git a/games/xpacman/files/patch-d b/games/xpacman/files/patch-d
deleted file mode 100644
index 0344538fbcd8..000000000000
--- a/games/xpacman/files/patch-d
+++ /dev/null
@@ -1,11 +0,0 @@
---- ghost.h.orig Sun Jan 9 01:49:42 2000
-+++ ghost.h Sun Jan 9 01:50:05 2000
-@@ -31,7 +31,7 @@
- Ghost(COLOURTYPE,int,int); //constructor with coordinates
- ~Ghost(); //destructor
- void draw(void); //draw the ghost
--go(Pacman*); //go for pacman: do ghost code
-+int go(Pacman*); //go for pacman: do ghost code
- typ is_a(void) {return classGhost;}
- void eat(void); //when pacman eats ghost
- void getxy(int*,int*);
diff --git a/games/xpacman/files/patch-e b/games/xpacman/files/patch-e
deleted file mode 100644
index 59ffd1f491d2..000000000000
--- a/games/xpacman/files/patch-e
+++ /dev/null
@@ -1,11 +0,0 @@
---- ghost.cc.orig Sun Jan 9 01:50:15 2000
-+++ ghost.cc Sun Jan 9 01:50:37 2000
-@@ -165,7 +165,7 @@
- }
- }
-
--Ghost::go(Pacman *pac) { //go for pacman: do ghost code
-+int Ghost::go(Pacman *pac) { //go for pacman: do ghost code
- typ w; //what type is at next coordinates
- int i=1; //moved or not?
- int xx,yy; //coordinates
diff --git a/games/xpacman/files/patch-f b/games/xpacman/files/patch-f
deleted file mode 100644
index c45f8e72ef1d..000000000000
--- a/games/xpacman/files/patch-f
+++ /dev/null
@@ -1,13 +0,0 @@
---- point.cc.orig Sun Jan 9 01:51:12 2000
-+++ point.cc Sun Jan 9 01:51:34 2000
-@@ -1,7 +1,7 @@
- #include"point.h"
--Point::Point(int xx=0,int yy=0) { x=xx; y=yy; };
--Point::val_x() { return x; };
--Point::val_y() { return y; };
-+Point::Point(int xx,int yy) { x=xx; y=yy; };
-+int Point::val_x() { return x; };
-+int Point::val_y() { return y; };
- void Point::set_x(int xx) { x=xx; };
- void Point::set_y(int yy) { y=yy; };
- void Point::set_xy(int xx,int yy) { x=xx; y=yy; };
diff --git a/games/xpacman/files/patch-pac.cc b/games/xpacman/files/patch-pac.cc
deleted file mode 100644
index cb80b334391c..000000000000
--- a/games/xpacman/files/patch-pac.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- pac.cc.orig 1995-07-20 16:59:35.000000000 +0400
-+++ pac.cc 2014-08-09 11:48:00.762643451 +0400
-@@ -82,7 +82,7 @@
- UserInterface::setlpCmdLine(lpCmdLine);
- UserInterface::setnCmdShow(nCmdShow);
- #else
--main(int argc,char **argv) {
-+int main(int argc,char **argv) {
- Argument(argc, argv); // storing the command line arguments
- #endif
-
diff --git a/games/xpacman/files/patch-pac.h b/games/xpacman/files/patch-pac.h
deleted file mode 100644
index 0904693afd79..000000000000
--- a/games/xpacman/files/patch-pac.h
+++ /dev/null
@@ -1,15 +0,0 @@
-./pac.h:36:30: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
-#define PACTITLE "Pacman v. "VERSION" \xa9 1995,1999,2000 by Roar Thron\xe6s"
- ^
-
---- pac.h.orig 2018-07-30 09:36:15 UTC
-+++ pac.h
-@@ -33,7 +33,7 @@ void writetext(); //just draw text
-
- //change my name and you will be sued!!!!!!!!!!!!!!!!!!!!!!!!!!
- #ifndef VMS
--#define PACTITLE "Pacman v. "VERSION" \xa9 1995,1999,2000 by Roar Thron\xe6s"
-+#define PACTITLE "Pacman v. " VERSION " \xa9 1995,1999,2000 by Roar Thron\xe6s"
- #else
- #define PACTITLE "Pacman v. 1_002 \xa9 1995,1999,2000 by Roar Thron\xe6s"
- #endif
diff --git a/games/xpacman/files/patch-sizes.h b/games/xpacman/files/patch-sizes.h
deleted file mode 100644
index 6b21252f3967..000000000000
--- a/games/xpacman/files/patch-sizes.h
+++ /dev/null
@@ -1,17 +0,0 @@
---- sizes.h.orig 1995-07-13 16:14:05.000000000 +0400
-+++ sizes.h 2014-08-09 11:16:01.638794330 +0400
-@@ -21,12 +21,12 @@
- #ifndef DOUBLE
- #define TEXTWIDTH 8
- #define TEXTHEIGHT 8
--#define FONT1 "5x8"
-+#define FONT1 "-misc-fixed-*-r-*-*-8-*-*-*-*-*-*-*"
- #define FONT2 "5x7"
- #else
- #define TEXTWIDTH 8
- #define TEXTHEIGHT 16
--#define FONT1 "8x16"
-+#define FONT1 "-misc-fixed-*-r-*-*-18-*-*-*-*-*-*-*"
- #define FONT2 "7x14"
- #endif
- //#define PFONT "clR6x8.fb"/*clR8x8" "6x10"*/
diff --git a/games/xpacman/pkg-descr b/games/xpacman/pkg-descr
deleted file mode 100644
index fda6649a04de..000000000000
--- a/games/xpacman/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-You are Pacman, and you are supposed to eat all the small
-dots to get to the next level. You are also supposed to
-keep away from the ghosts, if they take you, you lose one
-life, unless you have eaten a large dot, then you can, for
-a limited amount of time, chase and eat the ghosts. There
-is also bonus available, for a limited amount of time. An
-X gives just points, but a little pacman gives an extra
-life.