aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-01-25 19:52:47 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-01-25 19:52:47 +0000
commit7857a121633085174d7f72665a4dd6294e797d3b (patch)
treef1ac19377c3f450dfb8fffb09954e6d518657bb5 /games
parent57e0bc2bfb37c8d541bb63c92da945c837a9850c (diff)
downloadports-7857a121633085174d7f72665a4dd6294e797d3b.tar.gz
ports-7857a121633085174d7f72665a4dd6294e797d3b.zip
Notes
Diffstat (limited to 'games')
-rw-r--r--games/bzflag/Makefile6
-rw-r--r--games/bzflag/distinfo2
-rw-r--r--games/bzflag/files/patch-XWindow.h11
-rw-r--r--games/bzflag/files/patch-configure24
-rw-r--r--games/bzflag/files/patch-src::bzadmin::CursesUI.cxx14
-rw-r--r--games/bzflag/files/patch-src::bzflag::Makefile.in28
-rw-r--r--games/bzflag/pkg-plist65
7 files changed, 62 insertions, 88 deletions
diff --git a/games/bzflag/Makefile b/games/bzflag/Makefile
index 968b2dda7f39..c3c59aa04c54 100644
--- a/games/bzflag/Makefile
+++ b/games/bzflag/Makefile
@@ -6,17 +6,15 @@
#
PORTNAME= bzflag
-PORTVERSION= 1.10.0
+PORTVERSION= 1.10.4
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
-DISTNAME= ${PORTNAME}-${PORTVERSION:R}.20031209
+DISTNAME= ${PORTNAME}-${PORTVERSION}.20040125
MAINTAINER= chuck@pkix.net
COMMENT= A multiplayer 3D tank battle game
-WRKSRC= ${WRKDIR}/${PORTNAME}-1.9.10.20031209
-
USE_GL= yes
USE_REINPLACE= yes
USE_GMAKE= yes
diff --git a/games/bzflag/distinfo b/games/bzflag/distinfo
index 8003b5dfc908..9d13896554e7 100644
--- a/games/bzflag/distinfo
+++ b/games/bzflag/distinfo
@@ -1 +1 @@
-MD5 (bzflag-1.10.20031209.tar.gz) = 2dd502bfdee96b9d5055ea3125a4b95a
+MD5 (bzflag-1.10.4.20040125.tar.gz) = 259074f786c907f95d1d52e3831d6bc5
diff --git a/games/bzflag/files/patch-XWindow.h b/games/bzflag/files/patch-XWindow.h
index c836f83664d4..3a76147f1223 100644
--- a/games/bzflag/files/patch-XWindow.h
+++ b/games/bzflag/files/patch-XWindow.h
@@ -1,6 +1,6 @@
---- src/platform/XWindow.h.bak Tue Jun 4 02:39:32 2002
-+++ src/platform/XWindow.h Sun May 4 14:23:23 2003
-@@ -35,9 +35,14 @@
+--- src/platform/XWindow.h_orig Sat Jan 24 23:22:56 2004
++++ src/platform/XWindow.h Sat Jan 24 23:23:25 2004
+@@ -35,7 +35,12 @@
extern "C" {
#endif
#ifdef __FreeBSD__
@@ -12,8 +12,5 @@
+# include <libusbhid.h>
+# endif
#else
--#include <usb.h>
-+# include <usb.h>
+ #include <usb.h>
#endif
- #include <dev/usb/usb.h>
- #include <dev/usb/usbhid.h>
diff --git a/games/bzflag/files/patch-configure b/games/bzflag/files/patch-configure
index 18ca2c3bd06a..a125349c2c65 100644
--- a/games/bzflag/files/patch-configure
+++ b/games/bzflag/files/patch-configure
@@ -1,15 +1,15 @@
---- configure.orig Tue Dec 9 17:08:21 2003
-+++ configure Thu Dec 11 00:55:53 2003
-@@ -2515,7 +2515,7 @@
- fi
-
-
--LDFLAGS=$X_LIBS
-+LDFLAGS="$X_LIBS $LDFLAGS"
- case $host_os in
- solaris*)
- GLIBS="-lresolv -laudio $GLIBS";
-@@ -2724,7 +2724,7 @@
+--- configure.orig Sat Jan 24 20:15:57 2004
++++ configure Sun Jan 25 00:24:23 2004
+@@ -323,7 +323,7 @@
+ prefix=NONE
+ program_prefix=NONE
+ program_suffix=NONE
+-program_transform_name=s,x,x,
++program_transform_name=
+ silent=
+ site=
+ srcdir=
+@@ -6065,7 +6065,7 @@
# avoid using X11 in BeOS
if test $host_os != beos; then
diff --git a/games/bzflag/files/patch-src::bzadmin::CursesUI.cxx b/games/bzflag/files/patch-src::bzadmin::CursesUI.cxx
deleted file mode 100644
index 5edae51283fb..000000000000
--- a/games/bzflag/files/patch-src::bzadmin::CursesUI.cxx
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/bzadmin/CursesUI.cxx.orig Tue Dec 9 16:31:33 2003
-+++ src/bzadmin/CursesUI.cxx Thu Dec 11 01:44:31 2003
-@@ -232,7 +232,11 @@
-
-
- void CursesUI::handleResize(int lines, int cols) {
-+#ifdef __FreeBSD__
-+ resizeterm(lines, cols);
-+#else
- resize_term(lines, cols);
-+#endif
- mvwin(targetWin, lines - 2, 0);
- wresize(targetWin, 1, cols);
- mvwin(cmdWin, lines - 1, 0);
diff --git a/games/bzflag/files/patch-src::bzflag::Makefile.in b/games/bzflag/files/patch-src::bzflag::Makefile.in
deleted file mode 100644
index 1e5a952981a9..000000000000
--- a/games/bzflag/files/patch-src::bzflag::Makefile.in
+++ /dev/null
@@ -1,28 +0,0 @@
---- src/bzflag/Makefile.in.orig Wed Dec 10 09:09:45 2003
-+++ src/bzflag/Makefile.in Thu Dec 11 02:09:15 2003
-@@ -168,7 +168,6 @@
- @MACOS_FALSE@ ../scene/libSceneDB.a \
- @MACOS_FALSE@ ../geometry/libGeometry.a \
- @MACOS_FALSE@ ../mediafile/libMediaFile.a \
--@MACOS_FALSE@ ../zlib/libz.a \
- @MACOS_FALSE@ $(RESOURCE) \
- @MACOS_FALSE@ $(GLIBS)
- # This is required to hook in ogg/vorbis libraries
-@@ -176,7 +175,7 @@
-
- AM_CPPFLAGS = $(X_CFLAGS)
-
--bzflag_LDFLAGS = ../date/buildDate.o
-+bzflag_LDFLAGS = ../date/buildDate.o -lz
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = ../../include/config.h
- CONFIG_CLEAN_FILES =
-@@ -207,7 +206,7 @@
- @MACOS_FALSE@../common/libCommon.a ../obstacle/libObstacle.a \
- @MACOS_FALSE@../platform/libPlatform.a ../ogl/libGLKit.a \
- @MACOS_FALSE@../scene/libSceneDB.a ../geometry/libGeometry.a \
--@MACOS_FALSE@../mediafile/libMediaFile.a ../zlib/libz.a
-+@MACOS_FALSE@../mediafile/libMediaFile.a
- CXXFLAGS = @CXXFLAGS@
- CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
- CXXLD = $(CXX)
diff --git a/games/bzflag/pkg-plist b/games/bzflag/pkg-plist
index 9d8d591dae58..f7ddae7356a8 100644
--- a/games/bzflag/pkg-plist
+++ b/games/bzflag/pkg-plist
@@ -2,11 +2,15 @@ bin/bzadmin
bin/bzflag
bin/bzfrelay
bin/bzfs
-share/bzflag/bbolt.png
-share/bzflag/blaser.png
+share/bzflag/blue_basetop.png
+share/bzflag/blue_basewall.png
+share/bzflag/blue_bolt.png
+share/bzflag/blue_laser.png
+share/bzflag/blue_super_bolt.png
+share/bzflag/blue_tank.png
share/bzflag/boom.wav
share/bzflag/boxwall.png
-share/bzflag/btbolt.png
+share/bzflag/burrow.wav
share/bzflag/caution.png
share/bzflag/clouds.png
share/bzflag/explode1.png
@@ -20,15 +24,17 @@ share/bzflag/flag_drop.wav
share/bzflag/flag_grab.wav
share/bzflag/flag_lost.wav
share/bzflag/flag_won.wav
-share/bzflag/flage.png
-share/bzflag/gbolt.png
-share/bzflag/glaser.png
-share/bzflag/ground.png
-share/bzflag/gtbolt.png
+share/bzflag/green_basetop.png
+share/bzflag/green_basewall.png
+share/bzflag/green_bolt.png
+share/bzflag/green_laser.png
+share/bzflag/green_super_bolt.png
+share/bzflag/green_tank.png
share/bzflag/helvbi.png
share/bzflag/helvbr.png
share/bzflag/hunt.wav
share/bzflag/hunt_select.wav
+share/bzflag/hunter_tank.png
share/bzflag/jump.wav
share/bzflag/killteam.wav
share/bzflag/l10n/bzflag_cs_CZ.po
@@ -47,35 +53,50 @@ share/bzflag/l10n/bzflag_xx.po
share/bzflag/land.wav
share/bzflag/laser.wav
share/bzflag/lock.wav
+share/bzflag/menu_arrow.png
+share/bzflag/message_private.wav
+share/bzflag/message_team.wav
share/bzflag/missile.png
share/bzflag/missile.wav
-share/bzflag/mountain.png
-share/bzflag/panel.png
-share/bzflag/pbolt.png
+share/bzflag/mountain1.png
+share/bzflag/mountain2.png
+share/bzflag/mountain3.png
share/bzflag/phantom.wav
-share/bzflag/plaser.png
share/bzflag/pop.wav
-share/bzflag/ptbolt.png
+share/bzflag/purple_basetop.png
+share/bzflag/purple_basewall.png
+share/bzflag/purple_bolt.png
+share/bzflag/purple_laser.png
+share/bzflag/purple_super_bolt.png
+share/bzflag/purple_tank.png
share/bzflag/pyrwall.png
-share/bzflag/rbolt.png
+share/bzflag/rabbit_bolt.png
+share/bzflag/rabbit_laser.png
+share/bzflag/rabbit_super_bolt.png
+share/bzflag/rabbit_tank.png
+share/bzflag/red_basetop.png
+share/bzflag/red_basewall.png
+share/bzflag/red_bolt.png
+share/bzflag/red_laser.png
+share/bzflag/red_super_bolt.png
+share/bzflag/red_tank.png
share/bzflag/ricochet.wav
-share/bzflag/rlaser.png
+share/bzflag/rogue_bolt.png
+share/bzflag/rogue_laser.png
+share/bzflag/rogue_super_bolt.png
+share/bzflag/rogue_tank.png
share/bzflag/roof.png
-share/bzflag/rtbolt.png
share/bzflag/shock.wav
+share/bzflag/std_ground.png
share/bzflag/steamroller.wav
share/bzflag/teamgrab.wav
share/bzflag/teleport.wav
share/bzflag/thief.png
+share/bzflag/thief.wav
share/bzflag/timesbi.png
share/bzflag/timesbr.png
share/bzflag/title.png
share/bzflag/wall.png
-share/bzflag/wbolt.png
-share/bzflag/wlaser.png
-share/bzflag/wtbolt.png
-share/bzflag/ybolt.png
-share/bzflag/ylaser.png
-share/bzflag/ytbolt.png
+share/bzflag/zone_ground.png
@dirrm share/bzflag/l10n
@dirrm share/bzflag