diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-04-06 00:13:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-04-06 00:13:07 +0000 |
commit | 4d83923ca37bbd6fb81e005720a4f3c208a6c878 (patch) | |
tree | cfa8f914461adb28576fb915801fed60f6b8d772 /games-util | |
parent | stabilize (diff) | |
download | gentoo-2-4d83923ca37bbd6fb81e005720a4f3c208a6c878.tar.gz gentoo-2-4d83923ca37bbd6fb81e005720a4f3c208a6c878.tar.bz2 gentoo-2-4d83923ca37bbd6fb81e005720a4f3c208a6c878.zip |
Version bump.
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/qstat/ChangeLog | 7 | ||||
-rw-r--r-- | games-util/qstat/files/digest-qstat-2.8 | 1 | ||||
-rw-r--r-- | games-util/qstat/qstat-2.8.ebuild | 27 |
3 files changed, 34 insertions, 1 deletions
diff --git a/games-util/qstat/ChangeLog b/games-util/qstat/ChangeLog index 51a1220a7dca..b19106eef285 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.11 2005/02/20 05:08:07 gongloo Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.12 2005/04/06 00:13:07 vapier Exp $ + +*qstat-2.8 (06 Apr 2005) + + 06 Apr 2005; Mike Frysinger <vapier@gentoo.org> +qstat-2.8.ebuild: + Version bump. 20 Feb 2005; <gongloo@gentoo.org> qstat-2.7.ebuild: Stable on ppc-macos. diff --git a/games-util/qstat/files/digest-qstat-2.8 b/games-util/qstat/files/digest-qstat-2.8 new file mode 100644 index 000000000000..37bfcb350378 --- /dev/null +++ b/games-util/qstat/files/digest-qstat-2.8 @@ -0,0 +1 @@ +MD5 893a5d650e1d1c262704837ae164207d qstat-2.8.tar.gz 217742 diff --git a/games-util/qstat/qstat-2.8.ebuild b/games-util/qstat/qstat-2.8.ebuild new file mode 100644 index 000000000000..9840ecbdda03 --- /dev/null +++ b/games-util/qstat/qstat-2.8.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.8.ebuild,v 1.1 2005/04/06 00:13:07 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="virtual/libc" + +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 +} |