diff options
author | linimon <linimon@FreeBSD.org> | 2008-09-01 09:57:40 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2008-09-01 09:57:40 +0800 |
commit | 81f05e906a47fbfcb6b7a857c89cae47658b9b04 (patch) | |
tree | 8d04ae211406ac0d0e0c908ece80fdb3fe3ad0f3 /games | |
parent | c92282ca2dc2c057f1f605008c85d8b64af164d2 (diff) | |
download | freebsd-ports-gnome-81f05e906a47fbfcb6b7a857c89cae47658b9b04.tar.gz freebsd-ports-gnome-81f05e906a47fbfcb6b7a857c89cae47658b9b04.tar.zst freebsd-ports-gnome-81f05e906a47fbfcb6b7a857c89cae47658b9b04.zip |
Remove games/q3base: project gone, website defaced.
Requested by: maintainer
Diffstat (limited to 'games')
-rw-r--r-- | games/q3base/Makefile | 49 | ||||
-rw-r--r-- | games/q3base/distinfo | 3 | ||||
-rw-r--r-- | games/q3base/files/patch-src__game__q_shared.h | 31 | ||||
-rw-r--r-- | games/q3base/files/patch-src__qcommon__common.c | 10 |
4 files changed, 0 insertions, 93 deletions
diff --git a/games/q3base/Makefile b/games/q3base/Makefile deleted file mode 100644 index 418c5a963541..000000000000 --- a/games/q3base/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: q3base -# Date created: 17 Nov 2005 -# Whom: Ed Schouten <ed@fxq.nl> -# -# $FreeBSD$ -# - -PORTNAME= q3base -PORTVERSION= 0.1 -PORTREVISION= 3 -CATEGORIES= games -MASTER_SITES= http://quake3.quakesrc.org/files/quake3/q3base/ - -MAINTAINER= ed@FreeBSD.org -COMMENT= Quake III Arena fork using SDL - -DEPRECATED= Project gone, website defaced -EXPIRATION_DATE= 2008-07-19 - -USE_BZIP2= yes -USE_SDL= sdl net - -GNU_CONFIGURE= yes - -OPTIONS= X11 "Build OpenGL client" on - -.include <bsd.port.pre.mk> - -.if ${ARCH} == "i386" -BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm -.endif - -.if defined(WITHOUT_X11) -CONFIGURE_ARGS= --disable-client -.else -USE_GL= yes -USE_SDL+= image -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|' \ - -e 's/echo aout/echo elf/' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|\($${exec_prefix}/lib\)/quake3|\1/q3base|' \ - ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e 's|botlib\.log|/dev/null|' \ - ${WRKSRC}/src/botlib/be_interface.c - -.include "${.CURDIR}/../quake3-data/Makefile.include" -.include <bsd.port.post.mk> diff --git a/games/q3base/distinfo b/games/q3base/distinfo deleted file mode 100644 index 5a505a8a2f90..000000000000 --- a/games/q3base/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (q3base-0.1.tar.bz2) = d68f1fd6d10ecf428e85f98d43d2abd8 -SHA256 (q3base-0.1.tar.bz2) = f4b78e9cf95df438c56976850dd5ba66716ac2ed0bb6ddf5e6e9f5d797244baf -SIZE (q3base-0.1.tar.bz2) = 1510780 diff --git a/games/q3base/files/patch-src__game__q_shared.h b/games/q3base/files/patch-src__game__q_shared.h deleted file mode 100644 index 00ec0067d064..000000000000 --- a/games/q3base/files/patch-src__game__q_shared.h +++ /dev/null @@ -1,31 +0,0 @@ ---- ./src/game/q_shared.h.orig Wed Oct 5 19:51:28 2005 -+++ ./src/game/q_shared.h Thu Jun 15 12:03:49 2006 -@@ -140,7 +140,9 @@ - int LongSwap (int l); - float FloatSwap (const float *f); - --#if defined (__i386__) || defined (__MIPSEL__) || defined (__amd64__) -+#include <machine/endian.h> -+ -+#if BYTE_ORDER == LITTLE_ENDIAN - /* Little Endian */ - #define BigShort ShortSwap - #define LittleShort -@@ -148,7 +150,7 @@ - #define LittleLong - #define BigFloat(l) FloatSwap(&l) - #define LittleFloat --#elif defined (__mips__) || defined (__ppc__) || defined (__sparc__) -+#elif BYTE_ORDER == BIG_ENDIAN - /* Big Endian */ - #define BigShort - #define LittleShort ShortSwap -@@ -199,7 +201,7 @@ - #elif defined (__axp__) - #define CPUSTRING "alpha" - #else --#error "Unknown processor family" -+#define CPUSTRING "unknown" - #endif - - /* diff --git a/games/q3base/files/patch-src__qcommon__common.c b/games/q3base/files/patch-src__qcommon__common.c deleted file mode 100644 index 7a9bd1bb170a..000000000000 --- a/games/q3base/files/patch-src__qcommon__common.c +++ /dev/null @@ -1,10 +0,0 @@ ---- ./src/qcommon/common.c.orig Wed Oct 5 19:51:26 2005 -+++ ./src/qcommon/common.c Thu Jun 15 12:03:49 2006 -@@ -27,6 +27,7 @@ - #ifdef _WIN32 - #include <winsock.h> - #else -+#include <sys/types.h> - #include <netinet/in.h> - #endif - |