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 | e628661a6a32b9515a3dbc5c495a2ada2d59df0c (patch) | |
tree | 26f8a7727b017c04efe7f3a19e06bb3a8035cf5f /games-util | |
parent | stabilize (diff) | |
download | historical-e628661a6a32b9515a3dbc5c495a2ada2d59df0c.tar.gz historical-e628661a6a32b9515a3dbc5c495a2ada2d59df0c.tar.bz2 historical-e628661a6a32b9515a3dbc5c495a2ada2d59df0c.zip |
Version bump.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/qstat/ChangeLog | 7 | ||||
-rw-r--r-- | games-util/qstat/Manifest | 6 | ||||
-rw-r--r-- | games-util/qstat/files/digest-qstat-2.8 | 1 | ||||
-rw-r--r-- | games-util/qstat/qstat-2.8.ebuild | 27 |
4 files changed, 38 insertions, 3 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/Manifest b/games-util/qstat/Manifest index d51499aec75a..ca68e165366a 100644 --- a/games-util/qstat/Manifest +++ b/games-util/qstat/Manifest @@ -1,6 +1,8 @@ -MD5 f4f16af6b125e5cf0d25c9944b07b078 ChangeLog 2119 +MD5 e3e28a43419ceda23d9688f95d62f054 ChangeLog 2230 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 ee93c87ffde3d4b4ea878e581183904c qstat-2.7.ebuild 712 MD5 287da18857bb8dc64495f2f20f5b2ba5 qstat-2.6.ebuild 698 +MD5 29b7e8178f69d9625a8f4f54db306c58 qstat-2.8.ebuild 717 +MD5 ee93c87ffde3d4b4ea878e581183904c qstat-2.7.ebuild 712 MD5 565d1e1f9c6239d0f9b94aaf4a3ba703 files/digest-qstat-2.7 61 MD5 4c6bd6c9dcda3d5e4a889b4c5ed5f81f files/digest-qstat-2.6 61 +MD5 dac50c59f937c5744939c8d374e74e86 files/digest-qstat-2.8 61 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 +} |