BZFlag 2.0.16 "No Foolin'" (2010-04-01) ---------------------------------------- * Fix command line options in Windows launcher - Scott Wichser * Fix regression in protocol handling by server - Jeff Makey, Scott Wichser * Add bullet tails as seen out the viewport - trepan * Add observer mouse controls for roaming and tracking modes - trepan * Add the /forceradar client-side command for observers - trepan * Minor cleanup of source and build system - Jeff Makey * Explicitly link to the dl library when needed - Jeff Makey * Remove unused dependency on Xi library - Jeff Makey * Clarify copyright assignment terms for developers - Jeff Myers * Allow only one Enter message per player instance - Jeff Makey * Add TimeLimit plugin - Steven Mertens * Remove broken vocaliser and obsolete torBlock plugins - Jeff Myers BZFlag 2.0.14 "This isn't the release you are looking for." (2010-02-15) ------------------------------------------------------------------------- * Add Options -> Display -> AntiFlicker option - trepan * Add Options -> Input -> Confine Mouse (MotionBox) - trepan * Adjust advanced ground rendering for texture flicker - trepan * Change the default stencil bitplanes to 1 to fix stencil shadows and various other stencil features - trepan * Backport fix for /idbanlist and /hostbanlist crashes - trepan * Add support for gcc-4.4 and libtool-2.2 - Jeff Makey * Update to Microsoft Visual C++ 9 from 8.0 - Jeff Myers * Update to directInput 8 from 7 - Jeff Myers * Fix player ghosting failure - Steven Mertens * Provide API support for using bz_moveFlag on team flags - Scott Wichser * Add pushstats plugin for future statistics gathering system - Jeff Myers * Increase restrictions on incompletely joined players - Jeff Myers, Scott W. * Announce saved file name in recordmatch plugin - Jeff Makey * Fix buffer overflow in menu subsystem - Jeff Myers * Fully support glob-style wildcards in hostbans and make name comparisons case insensitive - Bryan Jennings * Properly limit maximum message size in /showgroup command - Jeff Makey * Reset team scores in case of a capture during a countdown - Jeff Makey * Block spoofed /me messages - Scott Wichser * Keep flags within the world boundary - Jeff Makey * Add the "roamView" BZDB variable - trepan * Change fonts to DejaVu - Jeff Myers, Tim Riker * Source cleanup - Tim Riker
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2010/07/25 13:13:25 obache Exp $
|
|
|
|
DISTNAME= bzflag-2.0.16
|
|
CATEGORIES= games x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bzflag/}
|
|
|
|
MAINTAINER= blymn@NetBSD.org
|
|
HOMEPAGE= http://www.bzflag.org/
|
|
COMMENT= OpenGL tank game
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake perl
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_NCURSES= # resize_term()
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} != "Linux"
|
|
SUBST_CLASSES+= fixme
|
|
SUBST_STAGE.fixme= post-patch
|
|
SUBST_FILES.fixme= src/platform/Makefile.in
|
|
SUBST_SED.fixme= -e "s|@LINUX_TRUE@||g"
|
|
SUBST_SED.fixme+= -e "s|@LINUX_FALSE@|\#|g"
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --with-ncurses
|
|
|
|
CHECK_PORTABILITY_SKIP+= debian/*
|
|
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
.include "../../graphics/glew/buildlink3.mk"
|
|
.include "../../graphics/glu/buildlink3.mk"
|
|
.include "../../net/libcares/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../x11/libXxf86vm/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|