b7802f76d7
Patch provided by Jason White in PR 32605 changes: QStat version 2.10 Fixes ----- fix Quake4 master only returning 231 servers fix busy loop when waiting for Quake3 and Quake4/Doom3 master packets fix win32 build QStat version 2.9 Summary of New Features ----------------------- new protocols: Pariah [-prs] Steam Master for A2S [-stma2s] Nexuiz [-nexuizm, -nexuizs] Gamespy V3 [-gs3] Quake 4 [-q4m, -q4s] add option -allowserverdups to be able to query ts2 servers support for LAN broadcasts with A2S add option -sendinterval for tuning send throttling add support for port ranges support HL1 protocol variant in A2S add 'S' player sort option to sort by score Fixes ----- fix eye protocol not showing the last player always use an offset of 123 with eye protocol fix infinite loop and memory expansion when port is 65535
29 lines
996 B
Makefile
29 lines
996 B
Makefile
# $NetBSD: Makefile,v 1.5 2006/01/23 22:44:58 recht Exp $
|
|
|
|
DISTNAME= qstat-2.10
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qstat/}
|
|
|
|
MAINTAINER= peter@pointless.nl
|
|
HOMEPAGE= http://www.qstat.org/
|
|
COMMENT= Program that gathers real-time statistics from game servers
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR:Q}\""
|
|
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
CONF_FILES= ${EGDIR}/qstat.cfg ${PKG_SYSCONFDIR}/qstat.cfg
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/${PKGBASE}
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${PKGBASE}
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/${PKGBASE}/template
|
|
${INSTALL_PROGRAM} ${WRKSRC}/qstat ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/qstatdoc.html ${PREFIX}/share/doc/${PKGBASE}
|
|
${INSTALL_DATA} ${WRKSRC}/template/*.html ${PREFIX}/share/doc/${PKGBASE}/template
|
|
${INSTALL_DATA} ${WRKSRC}/contrib.cfg ${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/qstat.cfg ${EGDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|