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 | ba4b6914e824641fbedcaf8920954f6caf834c50 (patch) | |
tree | 1d0b9d043f30ffef6eb78a005965c71eeb8f669e /games-util | |
parent | Removed helixplayer. (diff) | |
download | gentoo-2-ba4b6914e824641fbedcaf8920954f6caf834c50.tar.gz gentoo-2-ba4b6914e824641fbedcaf8920954f6caf834c50.tar.bz2 gentoo-2-ba4b6914e824641fbedcaf8920954f6caf834c50.zip |
Version bump #110126 by Mark <Line72> Dillavou.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/qstat/ChangeLog | 9 | ||||
-rw-r--r-- | games-util/qstat/files/digest-qstat-2.10 | 1 | ||||
-rw-r--r-- | games-util/qstat/qstat-2.10.ebuild | 27 |
3 files changed, 35 insertions, 2 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/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 +} |