pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/qstat Update to qstat-2.8.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a70a801d85a6
branches:  trunk
changeset: 504068:a70a801d85a6
user:      peter <peter%pkgsrc.org@localhost>
date:      Sat Dec 03 23:19:43 2005 +0000

description:
Update to qstat-2.8.

Changes 2.8:

Summary of New Features
-----------------------

add support for new steam protocol (-a2s)
add derived type STMHL2 for steam master returning a2s instead of hls
change timing for sending packets to improve ping times of low-ping servers

Fixes
-----
fix ut2004 master server support


Changes 2.7:

Summary of New Features
-----------------------
new protocols:
   UT2004 master [-ut2004m]

update steam master protocol to new version
add additional output to the player xml of -gps
add option -progress,n to print out progress every n packets
add doom3 protocol and osmask as server rule
use autoconf+automake, a simple Makefile is provided as fallback
add "flags" to qstat.cfg

Fixes
-----
fix hanging qstat when receiving UDP packets with incorrect checksum
fix colored names in America's Army (use -ams instead of -gps)

diffstat:

 games/qstat/Makefile         |  19 ++++++++++++-------
 games/qstat/PLIST            |   4 +---
 games/qstat/distinfo         |   9 ++++-----
 games/qstat/patches/patch-aa |  11 -----------
 4 files changed, 17 insertions(+), 26 deletions(-)

diffs (87 lines):

diff -r 8e9883f854e9 -r a70a801d85a6 games/qstat/Makefile
--- a/games/qstat/Makefile      Sat Dec 03 23:00:06 2005 +0000
+++ b/games/qstat/Makefile      Sat Dec 03 23:19:43 2005 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2005/06/16 06:57:55 jlam Exp $
+# $NetBSD: Makefile,v 1.3 2005/12/03 23:19:43 peter Exp $
 
-DISTNAME=      qstat-2.6
+DISTNAME=      qstat-2.8
 CATEGORIES=    games
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=qstat/}
 
@@ -8,9 +8,14 @@
 HOMEPAGE=      http://www.qstat.org/
 COMMENT=       Program that gathers real-time statistics from game servers
 
-NO_CONFIGURE=  yes
+INSTALLATION_DIRS=     bin
 
-INSTALLATION_DIRS=     bin
+USE_PKGINSTALL=        yes
+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}
@@ -18,8 +23,8 @@
        ${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/* ${PREFIX}/share/doc/${PKGBASE}/template
-       ${INSTALL_DATA} ${WRKSRC}/contrib.cfg ${PREFIX}/share/examples/${PKGBASE}
-       ${INSTALL_DATA} ${WRKSRC}/qstat.cfg ${PREFIX}/share/examples/${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"
diff -r 8e9883f854e9 -r a70a801d85a6 games/qstat/PLIST
--- a/games/qstat/PLIST Sat Dec 03 23:00:06 2005 +0000
+++ b/games/qstat/PLIST Sat Dec 03 23:19:43 2005 +0000
@@ -1,12 +1,10 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2005/01/18 17:51:19 peter Exp $
+@comment $NetBSD: PLIST,v 1.2 2005/12/03 23:19:43 peter Exp $
 bin/qstat
 share/doc/${PKGBASE}/qstatdoc.html
-share/doc/${PKGBASE}/template/README.txt
 share/doc/${PKGBASE}/template/brocTh.html
 share/doc/${PKGBASE}/template/brocTp.html
 share/doc/${PKGBASE}/template/brocTs.html
 share/doc/${PKGBASE}/template/brocTt.html
-share/doc/${PKGBASE}/template/ghostrecon.lst
 share/doc/${PKGBASE}/template/ghostreconTh.html
 share/doc/${PKGBASE}/template/ghostreconTp.html
 share/doc/${PKGBASE}/template/ghostreconTs.html
diff -r 8e9883f854e9 -r a70a801d85a6 games/qstat/distinfo
--- a/games/qstat/distinfo      Sat Dec 03 23:00:06 2005 +0000
+++ b/games/qstat/distinfo      Sat Dec 03 23:19:43 2005 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2005/02/23 23:12:01 agc Exp $
+$NetBSD: distinfo,v 1.3 2005/12/03 23:19:43 peter Exp $
 
-SHA1 (qstat-2.6.tar.gz) = 5ecd1533f22cc47d6f9d66928534707d9f413800
-RMD160 (qstat-2.6.tar.gz) = d80411b85d680a79697737e9aad1702e25688181
-Size (qstat-2.6.tar.gz) = 133834 bytes
-SHA1 (patch-aa) = 94fb56068f48941448287610269a463433ae477b
+SHA1 (qstat-2.8.tar.gz) = 3925858fd867da1dde63bfc2ebaf4f42631c7840
+RMD160 (qstat-2.8.tar.gz) = c5d8eaef1d097f618cef946f3950eb30f9ba3484
+Size (qstat-2.8.tar.gz) = 217742 bytes
diff -r 8e9883f854e9 -r a70a801d85a6 games/qstat/patches/patch-aa
--- a/games/qstat/patches/patch-aa      Sat Dec 03 23:00:06 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/01/18 17:51:19 peter Exp $
-
---- Makefile.orig      2002-10-11 05:55:07.000000000 +0200
-+++ Makefile   2004-06-11 13:45:56.000000000 +0200
-@@ -1,6 +1,4 @@
- 
--CFLAGS =
--
- # Uncomment if you have gcc
- # CC = gcc
- 



Home | Main Index | Thread Index | Old Index