diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-18 06:15:11 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-18 06:15:11 +0000 |
commit | 514eb611724bca9c21b2b4ab7d33bc06d69f6b94 (patch) | |
tree | 350053a4c1116d915e16eba4c58930928dcea7cf /games-util | |
parent | Marking 20040218 stable for amd64. (Manifest recommit) (diff) | |
download | gentoo-2-514eb611724bca9c21b2b4ab7d33bc06d69f6b94.tar.gz gentoo-2-514eb611724bca9c21b2b4ab7d33bc06d69f6b94.tar.bz2 gentoo-2-514eb611724bca9c21b2b4ab7d33bc06d69f6b94.zip |
IUSE; error messages; tidy
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/qstat/qstat-25b-r1.ebuild | 16 | ||||
-rw-r--r-- | games-util/qstat/qstat-25c.ebuild | 14 |
2 files changed, 15 insertions, 15 deletions
diff --git a/games-util/qstat/qstat-25b-r1.ebuild b/games-util/qstat/qstat-25b-r1.ebuild index 25c9e2d9b622..6b820825b74c 100644 --- a/games-util/qstat/qstat-25b-r1.ebuild +++ b/games-util/qstat/qstat-25b-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-25b-r1.ebuild,v 1.1 2003/09/10 18:53:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-25b-r1.ebuild,v 1.2 2004/04/18 06:15:11 mr_bones_ Exp $ -S=${WORKDIR}/${PN}${PV} +S="${WORKDIR}/${PN}${PV}" DESCRIPTION="Server statics collector supporting many FPS games" SRC_URI="http://www.qstat.org/${PN}${PV}.tar.gz" HOMEPAGE="http://www.qstat.org" @@ -10,6 +10,7 @@ HOMEPAGE="http://www.qstat.org" KEYWORDS="x86" LICENSE="Artistic" SLOT="0" +IUSE="" DEPEND="virtual/glibc" @@ -20,15 +21,14 @@ src_unpack() { } src_compile() { - emake CFLAGS="${CFLAGS}" || die + emake CFLAGS="${CFLAGS}" || die "emake failed" } -src_install () { - dobin qstat +src_install() { + dobin qstat || die "dobin failed" dosym /usr/bin/qstat /usr/bin/quakestat dodoc CHANGES.txt COMPILE.txt - dohtml template/* - dohtml qstatdoc.html + dohtml template/* qstatdoc.html } diff --git a/games-util/qstat/qstat-25c.ebuild b/games-util/qstat/qstat-25c.ebuild index 5857bfbef859..745f7b1af3e6 100644 --- a/games-util/qstat/qstat-25c.ebuild +++ b/games-util/qstat/qstat-25c.ebuild @@ -1,28 +1,28 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-25c.ebuild,v 1.3 2004/01/25 11:17:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-25c.ebuild,v 1.4 2004/04/18 06:15:11 mr_bones_ Exp $ -S=${WORKDIR}/${PN}${PV} +S="${WORKDIR}/${PN}${PV}" DESCRIPTION="Server statics collector supporting many FPS games" -SRC_URI="http://www.qstat.org/${PN}${PV}.tar.gz" HOMEPAGE="http://www.qstat.org/" +SRC_URI="http://www.qstat.org/${PN}${PV}.tar.gz" LICENSE="Artistic" SLOT="0" KEYWORDS="x86 ppc hppa amd64" +IUSE="" DEPEND="virtual/glibc" src_compile() { - emake CFLAGS="${CFLAGS}" || die + emake CFLAGS="${CFLAGS}" || die "emake failed" } src_install () { - dobin qstat + dobin qstat || die "dobin failed" dosym /usr/bin/qstat /usr/bin/quakestat dodoc CHANGES.txt COMPILE.txt - dohtml template/* - dohtml qstatdoc.html + dohtml template/* qstatdoc.html } |