forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-util/qstat: Bump to version 2.14
Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Lars Wendler
committed
May 18, 2017
1 parent
c00daba
commit 69e63ee
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST qstat-2.11.tar.gz 258335 SHA256 16f0c0f55567597d7f2db5136a0858c56effb4481a2c821a48cd0432ea572150 SHA512 e3ff732c6fc45300eb2f32b3f3e8e1e5f8ee32234535e8d2ca19cf95cf6d4a6de5b6f1e48a5c64315d60a8b388521106b2de9d307f718f6150ad2cf40ba75a22 WHIRLPOOL 51650c2ee07c4e8b8604973babc8854073b13e4afb6502df585d97a4aa0a795e7e5d789d39d1a6a891a252975945ceb98fca713456578c3522a95815872c38a9 | ||
DIST qstat-2.14.tar.gz 210440 SHA256 ae906b74d4cce8057b5a265b76859101da8104c2a07c05f11a51f7c9f033ef8b SHA512 f2054d74399fe1773a19ca43629e10364fdd87e551459719685c11f38245a05906631b456848b1a3764b4e6843baf654af6a9b174c7b16908b6bcb97ac64c6d6 WHIRLPOOL a9dbed6d570b8ca7750773d11c9cca289f418fabf8d68b4a046aff3a754c91345fa6ae3bdc49456832bd41f2812feed757a57cc64ee6c5fd632c6155dc510136 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit autotools | ||
|
||
DESCRIPTION="Server statics collector supporting many FPS games" | ||
HOMEPAGE="https://github.com/multiplay/qstat" | ||
SRC_URI="https://github.com/multiplay/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Artistic" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" | ||
IUSE="debug" | ||
|
||
DEPEND="!sys-cluster/torque" | ||
|
||
DOCS=( CHANGES.txt COMPILE.txt template/README.txt ) | ||
|
||
src_prepare() { | ||
default | ||
eautoreconf | ||
|
||
# bug #530952 | ||
sed -i -e 's/strndup/l_strndup/g' qstat.c || die | ||
} | ||
|
||
src_configure() { | ||
econf $(use_enable debug) | ||
} | ||
|
||
src_install() { | ||
default | ||
dosym qstat /usr/bin/quakestat | ||
dohtml template/*.html qstatdoc.html | ||
} |