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-sports/ski/
Date: Wed, 28 Sep 2016 21:14:56
Message-Id: 1475097235.8b2048cf4e520f4557833804ee9ce7b544b8e7dc.wizardedit@gentoo
1 commit: 8b2048cf4e520f4557833804ee9ce7b544b8e7dc
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 20:50:07 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 21:13:55 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b2048cf
7
8 games-sports/ski: remove deprecated games eclass
9
10 Also update to EAPI 6
11
12 Gentoo-Bug: https://bugs.gentoo.org/574082
13
14 Package-Manager: portage-2.3.0
15
16 games-sports/ski/ski-6.9-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
17 1 file changed, 32 insertions(+)
18
19 diff --git a/games-sports/ski/ski-6.9-r1.ebuild b/games-sports/ski/ski-6.9-r1.ebuild
20 new file mode 100644
21 index 00000000..b779067
22 --- /dev/null
23 +++ b/games-sports/ski/ski-6.9-r1.ebuild
24 @@ -0,0 +1,32 @@
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 +PYTHON_COMPAT=( python2_7 )
31 +inherit eutils python-single-r1
32 +
33 +DESCRIPTION="A simple text-mode skiing game"
34 +HOMEPAGE="http://www.catb.org/~esr/ski/"
35 +SRC_URI="http://www.catb.org/~esr/ski/${P}.tar.gz"
36 +
37 +LICENSE="BSD"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~ppc ~x86"
40 +IUSE=""
41 +
42 +DEPEND=""
43 +RDEPEND=""
44 +
45 +pkg_setup() {
46 + python-single-r1_pkg_setup
47 +}
48 +
49 +src_install() {
50 + dobin ski
51 + dodoc NEWS README
52 + doman ski.6
53 + domenu ski.desktop
54 + doicon ski.png
55 + python_fix_shebang "${ED}/usr/bin"
56 +}