diff options
author | peter <peter> | 2005-01-18 17:51:19 +0000 |
---|---|---|
committer | peter <peter> | 2005-01-18 17:51:19 +0000 |
commit | d3b78bc9ff8da7060783d71db90d148ed7765f5b (patch) | |
tree | 2e6cf161782c5d4ae7a4b196d82b646c75ea5cd0 /games/qstat/Makefile | |
parent | 9283c493cb4e9d709faae3d262c67c489df13236 (diff) | |
download | pkgsrc-d3b78bc9ff8da7060783d71db90d148ed7765f5b.tar.gz |
Initial import of qstat-2.6 into the NetBSD Packages Collection.
QStat is a command-line program that gathers real-time statistics from
Internet game servers.
A summary of its features:
* Supports Windows 95, NT, Linux, and most Unixes.
* Comes with C source code and a binary for Windows.
* Supports old Quake (NetQuake), QuakeWorld, Hexen II, HexenWorld, Quake II,
Unreal/UT, Turok2, Sin, Half-Life, Shogo, Tribes, Tribes 2, Quake III,
BFRIS, Kingpin, Heretic II servers, Soldier of Fortune, and lots more.
* Can display all available statistics, including player info & server rules.
* Output templates for automatic HTML generation.
* Raw display mode for integration with custom server browsers.
* Built-in host name cache.
* Sort by ping time, game, or both.
* More options than you can wiggle a mouse at.
Diffstat (limited to 'games/qstat/Makefile')
-rw-r--r-- | games/qstat/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/games/qstat/Makefile b/games/qstat/Makefile new file mode 100644 index 00000000000..f5539008443 --- /dev/null +++ b/games/qstat/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/01/18 17:51:19 peter Exp $ + +DISTNAME= qstat-2.6 +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 + +NO_CONFIGURE= yes + +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/* ${PREFIX}/share/doc/${PKGBASE}/template + ${INSTALL_DATA} ${WRKSRC}/contrib.cfg ${PREFIX}/share/examples/${PKGBASE} + ${INSTALL_DATA} ${WRKSRC}/qstat.cfg ${PREFIX}/share/examples/${PKGBASE} + +.include "../../mk/bsd.pkg.mk" |