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/gamepick/
Date: Wed, 29 Jun 2016 23:19:43
Message-Id: 1467241530.aab599ebe4c129829468303881ca71a29e93d223.wizardedit@gentoo
1 commit: aab599ebe4c129829468303881ca71a29e93d223
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 23:05:30 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 23:05:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab599eb
7
8 games-util/gamepick: 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/gamepick/gamepick-0.35-r1.ebuild | 32 +++++++++++++++++++++++++++++
17 1 file changed, 32 insertions(+)
18
19 diff --git a/games-util/gamepick/gamepick-0.35-r1.ebuild b/games-util/gamepick/gamepick-0.35-r1.ebuild
20 new file mode 100644
21 index 0000000..6271a2f
22 --- /dev/null
23 +++ b/games-util/gamepick/gamepick-0.35-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 +inherit eutils
31 +
32 +DESCRIPTION="Launch opengl games with custom graphic settings"
33 +HOMEPAGE="http://www.rillion.net/gamepick/index.html"
34 +SRC_URI="http://www.rillion.net/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="GPL-2"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE=""
40 +
41 +RDEPEND="x11-libs/gtk+:2"
42 +DEPEND="${RDEPEND}
43 + virtual/pkgconfig"
44 +
45 +src_prepare() {
46 + default
47 + sed -i \
48 + -e 's/-O2//' \
49 + src/Makefile.in || die
50 +}
51 +
52 +src_install() {
53 + default
54 + newicon ${PN}-48x48.xpm ${PN}.xpm
55 + make_desktop_entry ${PN} ${PN}
56 +}