summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authoralepulver <alepulver@FreeBSD.org>2006-06-15 15:32:10 +0000
committeralepulver <alepulver@FreeBSD.org>2006-06-15 15:32:10 +0000
commit2ff4d0546afb08b2ca059f3a4bfcc62155e0a6e6 (patch)
treecf7988257dadd4d21b75d5ae8725abf2211d59a7 /games
parentd6557f3ebd6c4287dbf5cac4dd79bb3a981404f4 (diff)
downloadFreeBSD-ports-2ff4d0546afb08b2ca059f3a4bfcc62155e0a6e6.zip
FreeBSD-ports-2ff4d0546afb08b2ca059f3a4bfcc62155e0a6e6.tar.gz
- Add OPTIONS.
- Remove pkg-message and NO_PACKAGE for !i386. - Fix building on ia64 (take endianess from mahcine/endian.h and don't complain about an unknown arch), and probably other archs. - Make portlint happy (append to BUILD_DEPENDS after bsd.port.pre.mk). Approved by: Ed Schouten <ed@fxq.nl> (maintainer)
Diffstat (limited to 'games')
-rw-r--r--games/q3base/Makefile24
-rw-r--r--games/q3base/files/patch-src__game__q_shared.h31
-rw-r--r--games/q3base/files/patch-src__qcommon__common.c (renamed from games/q3base/files/patch-netinet.diff)6
-rw-r--r--games/q3base/files/pkg-message.in8
-rw-r--r--games/quake3-q3base/Makefile24
-rw-r--r--games/quake3-q3base/files/patch-src__game__q_shared.h31
-rw-r--r--games/quake3-q3base/files/patch-src__qcommon__common.c (renamed from games/quake3-q3base/files/patch-netinet.diff)6
-rw-r--r--games/quake3-q3base/files/pkg-message.in8
8 files changed, 82 insertions, 56 deletions
diff --git a/games/q3base/Makefile b/games/q3base/Makefile
index e16c2bb..21e5f4a 100644
--- a/games/q3base/Makefile
+++ b/games/q3base/Makefile
@@ -19,22 +19,19 @@ USE_SDL= sdl net
GNU_CONFIGURE= yes
CONFIGURE_TARGET=
-.if defined(WITHOUT_X11)
-CONFIGURE_ARGS= --disable-client
-.else
-USE_GL= yes
-USE_SDL+= image
-.endif
+OPTIONS= X11 "Build OpenGL client" on
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
-BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
+BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
.endif
-.if ${ARCH} != "i386"
-NO_PACkAGE= we don't know if this port works on ${ARCH}
-SUB_FILES+= pkg-message
+.if defined(WITHOUT_X11)
+CONFIGURE_ARGS= --disable-client
+.else
+USE_GL= yes
+USE_SDL+= image
.endif
post-patch:
@@ -43,12 +40,5 @@ post-patch:
@${REINPLACE_CMD} -e 's|botlib\.log|/dev/null|' \
${WRKSRC}/src/botlib/be_interface.c
-.if ${ARCH} != "i386"
-post-install:
- @${ECHO_CMD}
- @${CAT} ${PKGMESSAGE}
- @${ECHO_CMD}
-.endif
-
.include "${.CURDIR}/../quake3-data/Makefile.include"
.include <bsd.port.post.mk>
diff --git a/games/q3base/files/patch-src__game__q_shared.h b/games/q3base/files/patch-src__game__q_shared.h
new file mode 100644
index 0000000..00ec006
--- /dev/null
+++ b/games/q3base/files/patch-src__game__q_shared.h
@@ -0,0 +1,31 @@
+--- ./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-netinet.diff b/games/q3base/files/patch-src__qcommon__common.c
index ce72a52..7a9bd1b 100644
--- a/games/q3base/files/patch-netinet.diff
+++ b/games/q3base/files/patch-src__qcommon__common.c
@@ -1,5 +1,5 @@
---- src/qcommon/common.c Thu Oct 6 00:51:26 2005
-+++ src/qcommon/common.c Sun Jan 1 22:13:57 2006
+--- ./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>
@@ -7,4 +7,4 @@
+#include <sys/types.h>
#include <netinet/in.h>
#endif
-
+
diff --git a/games/q3base/files/pkg-message.in b/games/q3base/files/pkg-message.in
deleted file mode 100644
index 9f4d8f4..0000000
--- a/games/q3base/files/pkg-message.in
+++ /dev/null
@@ -1,8 +0,0 @@
-==============================================================================
-
-This port has not been tested on this architecture.
-
-Please give feedback to the maintainer about whether it works or not, so it
-can be marked as it should.
-
-==============================================================================
diff --git a/games/quake3-q3base/Makefile b/games/quake3-q3base/Makefile
index e16c2bb..21e5f4a 100644
--- a/games/quake3-q3base/Makefile
+++ b/games/quake3-q3base/Makefile
@@ -19,22 +19,19 @@ USE_SDL= sdl net
GNU_CONFIGURE= yes
CONFIGURE_TARGET=
-.if defined(WITHOUT_X11)
-CONFIGURE_ARGS= --disable-client
-.else
-USE_GL= yes
-USE_SDL+= image
-.endif
+OPTIONS= X11 "Build OpenGL client" on
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
-BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
+BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
.endif
-.if ${ARCH} != "i386"
-NO_PACkAGE= we don't know if this port works on ${ARCH}
-SUB_FILES+= pkg-message
+.if defined(WITHOUT_X11)
+CONFIGURE_ARGS= --disable-client
+.else
+USE_GL= yes
+USE_SDL+= image
.endif
post-patch:
@@ -43,12 +40,5 @@ post-patch:
@${REINPLACE_CMD} -e 's|botlib\.log|/dev/null|' \
${WRKSRC}/src/botlib/be_interface.c
-.if ${ARCH} != "i386"
-post-install:
- @${ECHO_CMD}
- @${CAT} ${PKGMESSAGE}
- @${ECHO_CMD}
-.endif
-
.include "${.CURDIR}/../quake3-data/Makefile.include"
.include <bsd.port.post.mk>
diff --git a/games/quake3-q3base/files/patch-src__game__q_shared.h b/games/quake3-q3base/files/patch-src__game__q_shared.h
new file mode 100644
index 0000000..00ec006
--- /dev/null
+++ b/games/quake3-q3base/files/patch-src__game__q_shared.h
@@ -0,0 +1,31 @@
+--- ./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/quake3-q3base/files/patch-netinet.diff b/games/quake3-q3base/files/patch-src__qcommon__common.c
index ce72a52..7a9bd1b 100644
--- a/games/quake3-q3base/files/patch-netinet.diff
+++ b/games/quake3-q3base/files/patch-src__qcommon__common.c
@@ -1,5 +1,5 @@
---- src/qcommon/common.c Thu Oct 6 00:51:26 2005
-+++ src/qcommon/common.c Sun Jan 1 22:13:57 2006
+--- ./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>
@@ -7,4 +7,4 @@
+#include <sys/types.h>
#include <netinet/in.h>
#endif
-
+
diff --git a/games/quake3-q3base/files/pkg-message.in b/games/quake3-q3base/files/pkg-message.in
deleted file mode 100644
index 9f4d8f4..0000000
--- a/games/quake3-q3base/files/pkg-message.in
+++ /dev/null
@@ -1,8 +0,0 @@
-==============================================================================
-
-This port has not been tested on this architecture.
-
-Please give feedback to the maintainer about whether it works or not, so it
-can be marked as it should.
-
-==============================================================================
OpenPOWER on IntegriCloud