diff options
-rw-r--r-- | games-util/qstat/ChangeLog | 7 | ||||
-rw-r--r-- | games-util/qstat/files/digest-qstat-2.10 | 2 | ||||
-rw-r--r-- | games-util/qstat/files/digest-qstat-2.11 | 3 | ||||
-rw-r--r-- | games-util/qstat/qstat-2.11.ebuild | 25 |
4 files changed, 36 insertions, 1 deletions
diff --git a/games-util/qstat/ChangeLog b/games-util/qstat/ChangeLog index abb7de1ac88d..cb849e2586f5 100644 --- a/games-util/qstat/ChangeLog +++ b/games-util/qstat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-util/qstat # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.18 2006/10/21 22:10:00 tcort Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.19 2006/11/04 23:03:47 nyhm Exp $ + +*qstat-2.11 (04 Nov 2006) + + 04 Nov 2006; Tristan Heaven <nyhm@gentoo.org> +qstat-2.11.ebuild: + Version bump 21 Oct 2006; Thomas Cort <tcort@gentoo.org> qstat-2.10.ebuild: Added ~alpha keyword. diff --git a/games-util/qstat/files/digest-qstat-2.10 b/games-util/qstat/files/digest-qstat-2.10 index ecd94bb565ac..ed26aebe43d8 100644 --- a/games-util/qstat/files/digest-qstat-2.10 +++ b/games-util/qstat/files/digest-qstat-2.10 @@ -1 +1,3 @@ MD5 ac3ce3dbed5248bd5738a4968460880e qstat-2.10.tar.gz 228886 +RMD160 d5f7c481ac37844f36a0791ef052c924301f0083 qstat-2.10.tar.gz 228886 +SHA256 c86c12465dac1efbab7e0d2f84a5fc5388f7057e9cf09a2253cc88730ca1476c qstat-2.10.tar.gz 228886 diff --git a/games-util/qstat/files/digest-qstat-2.11 b/games-util/qstat/files/digest-qstat-2.11 new file mode 100644 index 000000000000..3859bba1b550 --- /dev/null +++ b/games-util/qstat/files/digest-qstat-2.11 @@ -0,0 +1,3 @@ +MD5 26c09831660ef9049fe74b786b80d091 qstat-2.11.tar.gz 258335 +RMD160 576f1b81449366cd3586798e08ddad72cdfa3ffa qstat-2.11.tar.gz 258335 +SHA256 16f0c0f55567597d7f2db5136a0858c56effb4481a2c821a48cd0432ea572150 qstat-2.11.tar.gz 258335 diff --git a/games-util/qstat/qstat-2.11.ebuild b/games-util/qstat/qstat-2.11.ebuild new file mode 100644 index 000000000000..53c3dac7d0b2 --- /dev/null +++ b/games-util/qstat/qstat-2.11.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-2.11.ebuild,v 1.1 2006/11/04 23:03:47 nyhm 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="~alpha ~amd64 ~hppa ~ppc ~ppc-macos ~ppc64 ~x86" +IUSE="debug" + +src_compile() { + econf $(use_enable debug) || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dosym qstat /usr/bin/quakestat + + dodoc CHANGES.txt COMPILE.txt template/README.txt + dohtml template/*.html qstatdoc.html +} |