diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-23 12:31:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-23 12:31:33 +0000 |
commit | b5499751e1ab772d5eabb2ec72459cc62f57f437 (patch) | |
tree | 4ac729b6ba5da8ed84d2e82e371e03b45ecaa214 /games-util/qstat | |
parent | Removed helixplayer. (diff) | |
download | historical-b5499751e1ab772d5eabb2ec72459cc62f57f437.tar.gz historical-b5499751e1ab772d5eabb2ec72459cc62f57f437.tar.bz2 historical-b5499751e1ab772d5eabb2ec72459cc62f57f437.zip |
Version bump #110126 by Mark <Line72> Dillavou.
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'games-util/qstat')
-rw-r--r-- | games-util/qstat/ChangeLog | 9 | ||||
-rw-r--r-- | games-util/qstat/Manifest | 10 | ||||
-rw-r--r-- | games-util/qstat/files/digest-qstat-2.10 | 1 | ||||
-rw-r--r-- | games-util/qstat/qstat-2.10.ebuild | 27 |
4 files changed, 41 insertions, 6 deletions
diff --git a/games-util/qstat/ChangeLog b/games-util/qstat/ChangeLog index 147fafbf16cf..a821ce6be7a1 100644 --- a/games-util/qstat/ChangeLog +++ b/games-util/qstat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-util/qstat -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.14 2005/08/18 18:54:50 hansmi Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.15 2005/11/23 12:31:33 vapier Exp $ + +*qstat-2.10 (23 Nov 2005) + + 23 Nov 2005; Mike Frysinger <vapier@gentoo.org> +qstat-2.10.ebuild: + Version bump #110126 by Mark <Line72> Dillavou. 18 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> qstat-2.8.ebuild: Stable on ppc. diff --git a/games-util/qstat/Manifest b/games-util/qstat/Manifest index a93e86c3cebd..7d2ea21d60da 100644 --- a/games-util/qstat/Manifest +++ b/games-util/qstat/Manifest @@ -1,14 +1,16 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 e28253a9c49e1ede65bdd6442723745d ChangeLog 2411 +MD5 6dc9a0c113c116def89caea246a7c8df ChangeLog 2559 +MD5 f23602b35558e4a8f1e1bf390e932e0a files/digest-qstat-2.10 62 MD5 dac50c59f937c5744939c8d374e74e86 files/digest-qstat-2.8 61 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 d49d01d84fdf562baf6da8bab42fec25 qstat-2.10.ebuild 701 MD5 e2ec844a658e8b4de76d21bfaed15e2c qstat-2.8.ebuild 712 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFDWHYOgIKl8Uu19MoRAkBHAJsGoO+SXHZEklKXkgTh4HsNOux3twCfTwRE -/K2kbN/1Gn4kXaVYTB6bpZw= -=grqN +iD8DBQFDhGG8gIKl8Uu19MoRArVnAJ9kw2C4pX2AMP8JnDYpBY5nPKM3/wCeMMzr +4qCNgDMgMzqzwfmuN3TewfE= +=PYeZ -----END PGP SIGNATURE----- diff --git a/games-util/qstat/files/digest-qstat-2.10 b/games-util/qstat/files/digest-qstat-2.10 new file mode 100644 index 000000000000..ecd94bb565ac --- /dev/null +++ b/games-util/qstat/files/digest-qstat-2.10 @@ -0,0 +1 @@ +MD5 ac3ce3dbed5248bd5738a4968460880e qstat-2.10.tar.gz 228886 diff --git a/games-util/qstat/qstat-2.10.ebuild b/games-util/qstat/qstat-2.10.ebuild new file mode 100644 index 000000000000..e8dcec0d92c9 --- /dev/null +++ b/games-util/qstat/qstat-2.10.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-2.10.ebuild,v 1.1 2005/11/23 12:31:33 vapier Exp $ + +DESCRIPTION="Server statics collector supporting many FPS games" +HOMEPAGE="http://www.qstat.org/" +SRC_URI="mirror://sourceforge/qstat/${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="amd64 hppa ppc ppc-macos x86" +IUSE="debug" + +DEPEND="" + +src_compile() { + econf $(use_enable debug) || die + emake || die +} + +src_install() { + make install DESTDIR="${D}" || die + dosym qstat /usr/bin/quakestat + + dodoc CHANGES.txt COMPILE.txt template/README.txt + dohtml template/*.html qstatdoc.html +} |