cc5e7f06fb
new files installed by package. From ChangeLog: BZFlag 2.4.2 "Doomsday Edition" (2012-07-28) --------------------------------------------- * Added UPnP option to configure server networking - Alfredo Tupone * Added an option to have both leading and lagging radar shot lines - David Anderson * Prevent prohibited solo bots from joining, rather than kick afterward - Scott Wichser, Jeff Makey * Add thiefControl plugin which prevents stealing flags from teammates - Bernt Hansen, Scott Wichser * Preserve shot-limited flag behavior on final shot - David Anderson * Remove the -zoom command line option from bzflag - Jeff Makey * Provide observer team chat in OpenFFA mode - David Anderson * Add fairCTF plugin - Chris Wible * Allow plugins to specify a color when firing world weapons - Chris Wible * Add option for chat on the left and radar on the right - Kyle Mills * Add autoFlagReset plugin - Chris Wible * Allow joystick hats as input on Evdev and SDL platforms - Kyle Mills * Added Fastmap Plugin - Jeffery Myers BZFlag 2.4.0 "Wake the Dead" (2011-07-03) ------------------------------------------ * Shot messages are synchronized with position - Alfredo Tupone * Added /playerlist for everyone - Thomas Stauer * Added message type for properly handling /me actions - Scott Wichser * Added BZDB option to hide flags on radar server side - David Anderson * Removed /setpass /register /identify - David Anderson * Handicap is computed on the server - Alfredo Tupone, Bernt Hansen * Allow plugins to register custom flag types - Daniel Remenak * Forced *image.bzflag.org for image downloads until user sets otherwise - David Anderson * Accepted patch from McSpider, added OpenFFA - David Anderson * Removed -requireUDP, now it is always required - David Anderson * Accepted patch from McSpider, removed client option to turn off fog - David Anderson * Accepted patch from McSpider, added -noTeamKills option - David Anderson * Removed -3Dfx, -no3Dfx. Moved -geometry -> -window <geometry-spec> - David Anderson * Add ricochet on a per object basis for .bzw files - trepan, David Anderson * serverControl plugin- Add option to ignore observers for server shutdowns - Bernt Hansen * serverControl plugin- Only report ban file access errors once - Bernt Hansen * serverControl plugin- Limit filesystem checks to once every 3 seconds - Bernt Hansen * LogDetail plugin-Add SERVER-MAPNAME with the public server description - Bernt Hansen * The bzfs -time command line option allows end time - Scott Wichser, Ian Agar * screenshots now compressed asynchronously - Daniel Remenak, randomparticle * Add /serverdebug command and plugin API - Bernt Hansen * Add bzfs -utc command line option to log timestamps using universal time - Bernt Hansen * Fix buffer overrun when using -ts micros on Linux - trepan, Bernt Hansen * Only players with POLL permission are eligible to vote - Bernt Hansen * Only allow a single end shot credit for holding the shield flag - Bernt Hansen * Do not inform hunters of stealthy prey - Ian Agar * All scores are controlled completely by the server - Daniel Remenak * Relabel player "email" string as "motto" - Jeff Makey * Require TALK privilege for player motto to be broadcast - Jeff Makey * Always require valid authentication for registered names - Jeff Myers, Scott Wichser * Move flag identification server side - Alfredo Tupone, Jeff Myers, Frank Evers, Scott Wichser * GM sanity checks - Alfredo Tupone * Added the -publickey requirement for publicly listed servers (and renamed the bzfs -public option to -publictitle) - trepan, Jeff Myers
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.45 2013/07/14 15:48:14 rodent Exp $
|
|
|
|
DISTNAME= bzflag-2.4.2
|
|
CATEGORIES= games x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bzflag/}
|
|
|
|
MAINTAINER= blymn@NetBSD.org
|
|
HOMEPAGE= http://bzflag.org/
|
|
COMMENT= OpenGL tank game
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
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 "../../x11/libXext/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|