summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
Diffstat (limited to 'games')
-rw-r--r--games/44bsd-hunt/Makefile20
-rw-r--r--games/44bsd-hunt/distinfo2
-rw-r--r--games/44bsd-hunt/files/patch-Makefile69
-rw-r--r--games/44bsd-hunt/files/patch-driver.c21
-rw-r--r--games/44bsd-hunt/files/patch-faketalk.c11
-rw-r--r--games/44bsd-hunt/pkg-descr4
-rw-r--r--games/44bsd-hunt/pkg-plist2
-rw-r--r--games/Makefile4
-rw-r--r--games/six/Makefile31
-rw-r--r--games/six/distinfo2
-rw-r--r--games/six/pkg-descr8
-rw-r--r--games/six/pkg-plist26
-rw-r--r--games/xbloody/Makefile33
-rw-r--r--games/xbloody/distinfo2
-rw-r--r--games/xbloody/files/patch-aa11
-rw-r--r--games/xbloody/pkg-descr8
-rw-r--r--games/xbloody/pkg-plist3
-rw-r--r--games/xquarto/Makefile24
-rw-r--r--games/xquarto/distinfo2
-rw-r--r--games/xquarto/files/patch-aa11
-rw-r--r--games/xquarto/pkg-descr18
21 files changed, 0 insertions, 312 deletions
diff --git a/games/44bsd-hunt/Makefile b/games/44bsd-hunt/Makefile
deleted file mode 100644
index f8e3a67..0000000
--- a/games/44bsd-hunt/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# Created by: bdluevel@heitec.net
-#
-# $FreeBSD$
-
-PORTNAME= hunt
-PORTVERSION= 1.0
-CATEGORIES= games
-MASTER_SITES= ftp://ftp.heitec.net/pub/distfiles/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Rogue-like multiplayer game
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2012-11-26
-
-LICENSE= BSD
-
-MAN6= hunt.6 huntd.6
-
-.include <bsd.port.mk>
diff --git a/games/44bsd-hunt/distinfo b/games/44bsd-hunt/distinfo
deleted file mode 100644
index 3d4dda6..0000000
--- a/games/44bsd-hunt/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (hunt-1.0.tar.gz) = 83257aff5823ab8b97470f3e20238d697d72b962ff956a8a51ed2e5745d46f41
-SIZE (hunt-1.0.tar.gz) = 50073
diff --git a/games/44bsd-hunt/files/patch-Makefile b/games/44bsd-hunt/files/patch-Makefile
deleted file mode 100644
index e201c7a..0000000
--- a/games/44bsd-hunt/files/patch-Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
---- Makefile.orig Fri Jun 18 03:26:23 1993
-+++ Makefile Mon Jun 26 03:21:22 2000
-@@ -17,8 +17,9 @@
-
- #
- # Installation destinations
-+# (with FreeBSD patches, unused except LIBDIR for pathname.o)
- BINDIR= /usr/games
--LIBDIR= /usr/libexec
-+LIBDIR= $(PREFIX)/bin
- MANDIR= /usr/contrib/man/cat6
-
- #
-@@ -33,8 +34,8 @@
- # BOOTS Include boots (which makes you immune to slime)
- # OTTO Reserved for CGL automatic player
- #
--GAME_PARAM= -DRANDOM -DREFLECT -DMONITOR -DOOZE -DFLY -DVOLCANO -DBOOTS \
-- -DOTTO
-+# (FreeBSD patches deleted -DOTTO because otto.c doesn't compile)
-+GAME_PARAM= -DRANDOM -DREFLECT -DMONITOR -DOOZE -DFLY -DVOLCANO -DBOOTS
-
- #
- # System parameter flags are:
-@@ -66,6 +67,11 @@
- DEFS_SGI= -DINTERNET -DLOG -DBSD_RELEASE=43 -DTERMINFO -DSIGNAL_TYPE=void
- DEFS_NEXT= $(DEFS_43) -bsd -traditional -Dconst= -DSIGNAL_TYPE=int
- DEFS_OSF1= -DINTERNET -DLOG -DBSD_RELEASE=43 -DSIGNAL_TYPE=void -D_BSD
-+#
-+# FreeBSD patches add this target and use it for DEFS
-+# /etc/terminfo is there, and the faketalk feature is switched
-+# off (deprecated)
-+DEFS_FREEBSD= $(DEFS_BSD44) -DTERMINFO -DTALK_DISABLE
-
- #
- # The following flags are used for system specific compilation arguments.
-@@ -80,8 +86,10 @@
- #
- # Generic definitions
- #
--DEFS= $(GAME_PARAM) $(DEFS_BSD44)
--CFLAGS= -O2 $(SYSCFLAGS) $(DEFS)
-+DEFS= $(GAME_PARAM) $(DEFS_FREEBSD)
-+# FreeBSD patches change the CFLAGS definition to include the
-+# user's definition, instead of overwriting it
-+CFLAGS+= $(SYSCFLAGS) $(DEFS)
-
- #
- # Normal targets
-@@ -129,14 +137,13 @@
-
- #
- # System installation
-+# (modified by FreeBSD patches)
- #
- install:
-- install -s -o bin -g bin -m 555 huntd ${LIBDIR}/huntd
-- install -s -o bin -g bin -m 555 hunt ${BINDIR}/hunt
-- nroff -man hunt.6 > ${MANDIR}/hunt.0
-- nroff -man huntd.6 > ${MANDIR}/huntd.0
-- chown bin.bin ${MANDIR}/hunt.0 ${MANDIR}/huntd.0
-- chmod 444 ${MANDIR}/hunt.0 ${MANDIR}/huntd.0
-+ $(BSD_INSTALL_PROGRAM) hunt $(PREFIX)/bin/hunt
-+ $(BSD_INSTALL_MAN) hunt.6 $(PREFIX)/man/man6/hunt.6
-+ $(BSD_INSTALL_PROGRAM) huntd $(PREFIX)/bin/huntd
-+ $(BSD_INSTALL_MAN) huntd.6 $(PREFIX)/man/man6/huntd.6
-
- #
- # Object file dependencies
diff --git a/games/44bsd-hunt/files/patch-driver.c b/games/44bsd-hunt/files/patch-driver.c
deleted file mode 100644
index daf2ad6..0000000
--- a/games/44bsd-hunt/files/patch-driver.c
+++ /dev/null
@@ -1,21 +0,0 @@
-$FreeBSD$
-
---- driver.c.orig Sat Oct 25 23:20:56 2003
-+++ driver.c Sat Oct 25 23:21:54 2003
-@@ -9,6 +9,7 @@
- # include <errno.h>
- # include <sys/ioctl.h>
- # include <sys/time.h>
-+# include <err.h>
-
- # ifndef pdp11
- # define RN (((Seed = Seed * 11109 + 13849) >> 16) & 0xffff)
-@@ -653,7 +654,7 @@
- if (np->p_flying < 0)
- break;
- if (np >= &Boot[NBOOTS])
-- abort(1, "Too many boots");
-+ errx(1, "Too many boots");
- np->p_undershot = FALSE;
- np->p_x = pp->p_x;
- np->p_y = pp->p_y;
diff --git a/games/44bsd-hunt/files/patch-faketalk.c b/games/44bsd-hunt/files/patch-faketalk.c
deleted file mode 100644
index b0db3d0..0000000
--- a/games/44bsd-hunt/files/patch-faketalk.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- faketalk.c.orig Sat May 22 09:32:43 1993
-+++ faketalk.c Mon Jun 26 03:16:18 2000
-@@ -10,7 +10,7 @@
-
- #include "bsd.h"
-
--#if defined(TALK_43) || defined(TALK_42)
-+#if !defined(TALK_DISABLE) && (defined(TALK_43) || defined(TALK_42))
-
- # include <stdio.h>
- # include <string.h>
diff --git a/games/44bsd-hunt/pkg-descr b/games/44bsd-hunt/pkg-descr
deleted file mode 100644
index ed45624..0000000
--- a/games/44bsd-hunt/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Hunt is a mixture of 'rogue' and 'Doom': It is a multiplayer
-shoot-and-run game, but in a textbased console.
-Found at:
-ftp://ftp.pvv.ntnu.no/.disk4a/4.4BSD-Lite2/untarred/usr/src/contrib/hunt
diff --git a/games/44bsd-hunt/pkg-plist b/games/44bsd-hunt/pkg-plist
deleted file mode 100644
index 0983d1e..0000000
--- a/games/44bsd-hunt/pkg-plist
+++ /dev/null
@@ -1,2 +0,0 @@
-bin/hunt
-bin/huntd
diff --git a/games/Makefile b/games/Makefile
index 41b9914..794b3fb 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -7,7 +7,6 @@
SUBDIR += 0verkill
SUBDIR += 3dc
SUBDIR += 3dpong
- SUBDIR += 44bsd-hunt
SUBDIR += 4stattack
SUBDIR += 54321
SUBDIR += BillardGL
@@ -837,7 +836,6 @@
SUBDIR += simplevaders
SUBDIR += simsu
SUBDIR += simutrans
- SUBDIR += six
SUBDIR += sjeng
SUBDIR += sl
SUBDIR += slashem-tty
@@ -1006,7 +1004,6 @@
SUBDIR += xblackjack
SUBDIR += xblast
SUBDIR += xblood
- SUBDIR += xbloody
SUBDIR += xboard
SUBDIR += xboing
SUBDIR += xbomb
@@ -1082,7 +1079,6 @@
SUBDIR += xpuzzletama
SUBDIR += xpyraminx
SUBDIR += xqf
- SUBDIR += xquarto
SUBDIR += xrally
SUBDIR += xrick
SUBDIR += xrisk
diff --git a/games/six/Makefile b/games/six/Makefile
deleted file mode 100644
index f4c4e6f..0000000
--- a/games/six/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Created by: arved
-# $FreeBSD$
-
-PORTNAME= six
-PORTVERSION= 0.5.3
-PORTREVISION= 7
-CATEGORIES= games kde
-MASTER_SITES= http://six.retes.hu/download/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= KDE HEX clone
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2012-11-26
-
-USE_KDELIBS_VER=3
-USE_AUTOTOOLS= libtool
-USE_GETTEXT= yes
-INSTALLS_ICONS= yes
-
-post-patch:
- @${REINPLACE_CMD} -e 's,-O2,,g ; \
- s,-pedantic,,g ; \
- s,-lpthread,${PTHREAD_LIBS},g' ${WRKSRC}/configure
- @${REINPLACE_CMD} -e \
- 's,-lkdeprint$$,$$(LIB_KDEPRINT) $$(LIBPTHREAD),g' \
- ${WRKSRC}/six/Makefile.in
- @${REINPLACE_CMD} -e \
- 's,<machine/limits.h>,<limits.h>,g' ${WRKSRC}/six/batch.h
-
-.include <bsd.port.mk>
diff --git a/games/six/distinfo b/games/six/distinfo
deleted file mode 100644
index ac1ad18..0000000
--- a/games/six/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (six-0.5.3.tar.gz) = 447214df03a13931b46ba0216324c66a8bdbab845c14f2cbcd21e43e41a52a42
-SIZE (six-0.5.3.tar.gz) = 883013
diff --git a/games/six/pkg-descr b/games/six/pkg-descr
deleted file mode 100644
index 829c917..0000000
--- a/games/six/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-Six plays Hex, a game with very simple rules and deep tactical complexity.
-Two players, one with black and one with white pieces, alternate
-placing marks on a rhombic board of hexagonal cells. Black's goal is to
-connect the two opposite black sides of the board with black pieces.
-White's goal is to connect the white sides of the board with white pieces.
-
-Author: Gabor Melis
-WWW: http://six.retes.hu/
diff --git a/games/six/pkg-plist b/games/six/pkg-plist
deleted file mode 100644
index 492c328..0000000
--- a/games/six/pkg-plist
+++ /dev/null
@@ -1,26 +0,0 @@
-bin/six
-share/applnk/Games/Board/six.desktop
-share/apps/six/sixui.rc
-share/doc/HTML/en/six/common
-share/doc/HTML/en/six/filter.png
-share/doc/HTML/en/six/index.cache.bz2
-share/doc/HTML/en/six/index.docbook
-share/icons/hicolor/32x32/actions/blackplayer.png
-share/icons/hicolor/32x32/actions/swap.png
-share/icons/hicolor/32x32/actions/whiteplayer.png
-share/icons/hicolor/32x32/apps/six.png
-share/icons/hicolor/48x48/apps/six.png
-share/icons/locolor/16x16/actions/blackplayer.png
-share/icons/locolor/16x16/actions/swap.png
-share/icons/locolor/16x16/actions/whiteplayer.png
-share/icons/locolor/16x16/apps/six.png
-share/icons/locolor/22x22/actions/blackplayer.png
-share/icons/locolor/22x22/actions/swap.png
-share/icons/locolor/22x22/actions/whiteplayer.png
-share/icons/locolor/32x32/apps/six.png
-share/locale/it/LC_MESSAGES/six.mo
-share/mimelnk/application/vnd.kde.six.desktop
-@dirrm share/doc/HTML/en/six
-@dirrm share/apps/six
-@dirrmtry share/applnk/Games/Board
-@dirrmtry share/applnk/Games
diff --git a/games/xbloody/Makefile b/games/xbloody/Makefile
deleted file mode 100644
index 4217c8b..0000000
--- a/games/xbloody/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# Created by: FURUSAWA,Kazuhisa <kazu@jp.freebsd.org>
-# $FreeBSD$
-
-PORTNAME= xbloody
-PORTVERSION= 1.00
-PORTREVISION= 2
-CATEGORIES= games
-MASTER_SITES= http://www.kazu.kz/freebsd/
-DISTNAME= ${PORTNAME}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Knife on X
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2012-11-26
-
-NO_WRKSUBDIR= yes
-USE_IMAKE= yes
-USE_XORG= x11 xext xt sm ice
-
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} != "i386"
-BROKEN= Does not compile on !i386
-.endif
-
-post-install:
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${PREFIX}/share/doc/xbloody
- @${INSTALL_DATA} ${WRKSRC}/README.sjis ${PREFIX}/share/doc/xbloody
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/games/xbloody/distinfo b/games/xbloody/distinfo
deleted file mode 100644
index c58eb04..0000000
--- a/games/xbloody/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (xbloody.tar.gz) = 3709633276e1fb8784dbd7dd7cba9de44c11310bed1f8dcd892b805b4cde1b1f
-SIZE (xbloody.tar.gz) = 4833
diff --git a/games/xbloody/files/patch-aa b/games/xbloody/files/patch-aa
deleted file mode 100644
index b551501..0000000
--- a/games/xbloody/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- Imakefile.orig Mon Oct 31 20:34:58 1994
-+++ Imakefile Wed Nov 1 09:30:59 2000
-@@ -8,7 +8,7 @@
- SRCS = xbloody.c
- OBJS = xbloody.o
-
--ComplexProgramTarget(xbloody)
-+ComplexProgramTargetNoMan(xbloody)
-
- xbloody.tar.gz:
- gtar zcvf - Imakefile README.sjis *.[hc] *.xbm > xbloody.tar.gz
diff --git a/games/xbloody/pkg-descr b/games/xbloody/pkg-descr
deleted file mode 100644
index 091a671..0000000
--- a/games/xbloody/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-Xbloody is a toy program for X. If you cut X with the knife, blood drops.
-If you want recover, use xrefresh command.
-
-See README.sjis for details. The README are only in Japanese for now,
-but it is easy to use none the less..
-
-Orignal xbloody written by emoto@hyperware.co.jp .
-This port is done by kazu@jp.freebsd.org .
diff --git a/games/xbloody/pkg-plist b/games/xbloody/pkg-plist
deleted file mode 100644
index 68d5e28e..0000000
--- a/games/xbloody/pkg-plist
+++ /dev/null
@@ -1,3 +0,0 @@
-bin/xbloody
-share/doc/xbloody/README.sjis
-@dirrm share/doc/xbloody
diff --git a/games/xquarto/Makefile b/games/xquarto/Makefile
deleted file mode 100644
index 5f1c275..0000000
--- a/games/xquarto/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# Created by: Andrey Zakhvatov
-# $FreeBSD$
-
-PORTNAME= xquarto
-PORTVERSION= 1.0
-PORTREVISION= 2
-CATEGORIES= games
-MASTER_SITES= http://www.math.lsa.umich.edu/~mattiasj/games/xquarto/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= X version of simple but tricky board game
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2012-11-26
-
-USE_IMAKE= yes
-USE_XORG= xaw
-MAN6= xquarto.6
-PLIST_FILES= bin/xquarto
-
-pre-configure:
- @${ECHO_CMD} "MANSUFFIX=6" >>${WRKSRC}/src/Imakefile
-
-.include <bsd.port.mk>
diff --git a/games/xquarto/distinfo b/games/xquarto/distinfo
deleted file mode 100644
index 0c523a9..0000000
--- a/games/xquarto/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (xquarto-1.0.tar.gz) = d6973ebf0143da4fb14e7cb2fb1d346b28742390fddd108d4477d2cc8bfdd33d
-SIZE (xquarto-1.0.tar.gz) = 12741
diff --git a/games/xquarto/files/patch-aa b/games/xquarto/files/patch-aa
deleted file mode 100644
index 4e4e603..0000000
--- a/games/xquarto/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/Imakefile.orig Sun Jun 20 19:20:59 1999
-+++ src/Imakefile Sun Jun 20 19:21:18 1999
-@@ -9,7 +9,7 @@
-
- XPMLIB = XPMLIBRARY
-
--#ifdef AlphaArchitecture
-+#if defined(AlphaArchitecture) && !defined(FreeBSDArchitecture)
- LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) $(XTOOLLIB) $(XAWLIB) $(XMULIB) -ldnet_stub
- #else
- #ifdef HPArchitecture
diff --git a/games/xquarto/pkg-descr b/games/xquarto/pkg-descr
deleted file mode 100644
index 51307f6..0000000
--- a/games/xquarto/pkg-descr
+++ /dev/null
@@ -1,18 +0,0 @@
- Xquarto is a board game designed for the X windows environment.
-The game is a two-player game, although for the moment, it is only
-possible to play against the computer. The board is composed of
-4x4 squares and 16 pieces. Each piece has four properties: black
-or brown, horizontal or vertical, solid or hollow, round or
-square. This makes up 16 possible combinations and there is
-exactly one piece for each possibility.
-
- Initially the board is empty. Now the two players try to place
-out pieces in a way that the opponent has to complete a row,
-column or diagonal with a common property (e.g. all black). This
-makes the opponent lose. The players do not choose what piece to
-put but it is rather player 1 who gives a piece to player 2, who
-then has to place this piece somewhere and choose a piece for
-player 1 to put somewhere etc.
-
-
-WWW: http://www.math.lsa.umich.edu/~mattiasj/games/xquarto/
OpenPOWER on IntegriCloud