blob: 3e101a7911d20eee2de1c916edc54717e3e21090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2012 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.10 2012/09/06 01:40:05 blueness Exp $
EAPI=2
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 ~arm hppa ppc ppc64 x86"
IUSE="debug"
DEPEND="!sys-cluster/torque"
src_configure() {
econf $(use_enable debug)
}
src_install() {
emake DESTDIR="${D}" install || die
dosym qstat /usr/bin/quakestat
dodoc CHANGES.txt COMPILE.txt template/README.txt
dohtml template/*.html qstatdoc.html
}
|