Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/gslist/
Date: Wed, 29 Jun 2016 22:54:31
Message-Id: 1467240857.4149932ec6fff6292f0431277d4b0273dd51ebd7.wizardedit@gentoo
1 commit: 4149932ec6fff6292f0431277d4b0273dd51ebd7
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 22:54:02 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 22:54:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4149932e
7
8 games-util/gslist: remove depreacted games eclass
9
10 Also update to EAPI 6
11
12 Gentoo-Bug: https://bugs.gentoo.org/574082
13
14 Package-Manager: portage-2.2.28
15
16 games-util/gslist/gslist-0.8.11a-r1.ebuild | 38 ++++++++++++++++++++++++++++++
17 1 file changed, 38 insertions(+)
18
19 diff --git a/games-util/gslist/gslist-0.8.11a-r1.ebuild b/games-util/gslist/gslist-0.8.11a-r1.ebuild
20 new file mode 100644
21 index 0000000..b497ce2
22 --- /dev/null
23 +++ b/games-util/gslist/gslist-0.8.11a-r1.ebuild
24 @@ -0,0 +1,38 @@
25 +# Copyright 1999-2016 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Id$
28 +
29 +EAPI=6
30 +
31 +DESCRIPTION="A GameSpy server browser"
32 +HOMEPAGE="http://aluigi.altervista.org/papers.htm#gslist"
33 +SRC_URI="mirror://gentoo/${P}.zip"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~hppa ~x86"
38 +IUSE="web"
39 +
40 +RDEPEND="dev-libs/geoip"
41 +DEPEND="${RDEPEND}
42 + app-arch/unzip"
43 +
44 +S="${WORKDIR}"
45 +
46 +PATCHES=(
47 + "${FILESDIR}"/${P}-build.patch
48 +)
49 +
50 +src_prepare() {
51 + default
52 + rm -f gslist gslistsql *.exe *.dll || die
53 +}
54 +
55 +src_compile() {
56 + emake SQL=0 $(use web || echo GSWEB=0)
57 +}
58 +
59 +src_install() {
60 + dobin ${PN}
61 + dodoc ${PN}.txt
62 +}